我想了解NumPy的行为。
当我尝试获取NumPy数组的内部数组的引用,然后将其与对象本身进行比较时,将获得返回值False。
这是示例:
In [198]: x = np.array([[1,2,3], [4,5,6]])
In [201]: x0 = x[0]
In [202]: x0 is x[0]
Out[202]: False
Run Code Online (Sandbox Code Playgroud)
另一方面,对于Python本机对象,返回的是True。
In [205]: c = [[1,2,3],[1]]
In [206]: c0 = c[0]
In [207]: c0 is c[0]
Out[207]: True
Run Code Online (Sandbox Code Playgroud)
我的问题是NumPy的预期行为吗?如果是这样,如果要创建NumPy数组的内部对象的引用,该怎么办。
我是heroku的新手。所以,抱歉这个愚蠢的问题。我的问题是,我不知道错误是什么,但是可以肯定的是,我无法通过 ssh 连接到我的 heroku 服务器。如果可能的话,我想知道如何获得更详细的错误日志或类似的东西。我试过添加-v或--verbose切换到heroku命令,但没有运气。
波纹管是我所做的完整动作,嗯,基本上我遵循了heroku网站上写的内容。
以下是根据 heroku 的教程站点通过 ssh 连接的方法。
Run Code Online (Sandbox Code Playgroud)xxx@yyy:~/xwprog/heroku-sample-gradle1 $ heroku ps:exec Establishing credentials... done Connecting to web.1 on ? guarded-fjord-42322... ? There was an error connecting to the dyno!
当前正在运行的进程
Run Code Online (Sandbox Code Playgroud)xxx@yyy:~/xwprog/heroku-sample-gradle1 $ heroku ps Free dyno hours quota remaining this month: 550h 0m (100%) For more information on dyno sleeping and how to upgrade, see: https://devcenter.heroku.com/articles/dyno-sleeping === web (Free): build/install/gradle-getting-started/bin/gradle-getting-started (1) web.1: up 2018/03/10 16:56:04 +0700 (~ 16m ago)
试图运行 …