草庐IT

METHOD_NAME

全部标签

python - TensorFlow freeze_graph.py : The name 'save/Const:0' refers to a Tensor which does not exist

我目前正在尝试将经过训练的TensorFlow模型导出为ProtoBuf文件,以便在Android上将其与TensorFlowC++API一起使用。因此,我正在使用freeze_graph.py脚本。我使用tf.train.write_graph导出了我的模型:tf.train.write_graph(graph_def,FLAGS.save_path,out_name,as_text=True)我正在使用通过tf.train.Saver保存的检查点。我按照脚本顶部的描述调用freeze_graph.py。编译后运行bazel-bin/tensorflow/python/tools/f

python - 从加密导入随机 -> ImportError : cannot import name Random

我已经将pycrypto(版本2.3)安装到/usr/local/lib/python2.6/dist-packages/Crypto/并且我能够在那里看到随机包。但是当我尝试导入Crypto.Random时,它让我很兴奋fromCrypto.Randomimport*ImportError:NomodulenamedRandom有谁知道为什么会发生这种情况?谢谢。importCryptoimportosprint(Crypto.__file__);print(dir(Crypto));print(os.listdir(os.path.dirname(Crypto.__file__))

Python: 'super' 对象没有属性 'attribute_name'

我正在尝试从基类访问一个变量。这是父类:classParent(object):def__init__(self,value):self.some_var=value这是子类:classChild(Parent):def__init__(self,value):super(Child,self).__init__(value)defdoSomething(self):parent_var=super(Child,self).some_var现在,如果我尝试运行这段代码:obj=Child(123)obj.doSomething()我得到以下异常:Traceback(mostrecent

python - 从 matplotlib.backends 导入 _tkagg ImportError : cannot import name _tkagg

尝试运行this测试matplotlib如何与Tkinter一起工作的示例,我收到错误:(env)fieldsofgold@fieldsofgold-VirtualBox:~/new$pythontest.pyTraceback(mostrecentcalllast):File"test.py",line7,infrommatplotlib.backends.backend_tkaggimportFigureCanvasTkAgg,NavigationToolbar2TkAggFile"/home/fieldsofgold/new/env/local/lib/python2.7/sit

python - INFO menuinst_win32 :__init__(182): Menu: name: 'Anaconda${PY_VER} ${PLATFORM}'

目前我在更新包时收到很多这样的INFO消息:$condaupdate--all--yesFetchingpackagemetadata.................Solvingpackagespecifications:.PackageplanforinstallationinenvironmentC:\anacondadir:ThefollowingpackageswillbeUPDATED:ipython:6.0.0-py35_1-->6.1.0-py35_0nbconvert:5.1.1-py35_0-->5.2.1-py35_0testpath:0.3-py35_0-->

python - 单元测试 : How to assert multiple calls of same method?

我有一个方法,它使用不同的参数调用另一个方法两次。classA(object):defhelper(self,arg_one,arg_two):"""Returnsomethingwhichdependsonarguments."""defcaller(self):value_1=self.helper(foo,bar)#Firstcall.value_2=self.helper(foo_bar,bar_foo)#Secondcall!使用assert_called_with帮助我只断言第一个调用,而不是第二个调用。甚至assert_called_once_with似乎也没有帮助。我在

python - 单元测试 : How to assert multiple calls of same method?

我有一个方法,它使用不同的参数调用另一个方法两次。classA(object):defhelper(self,arg_one,arg_two):"""Returnsomethingwhichdependsonarguments."""defcaller(self):value_1=self.helper(foo,bar)#Firstcall.value_2=self.helper(foo_bar,bar_foo)#Secondcall!使用assert_called_with帮助我只断言第一个调用,而不是第二个调用。甚至assert_called_once_with似乎也没有帮助。我在

python - Django 1.7 - App 'your_app_name' 没有迁移

我正在尝试从Django1.6.7升级到Django1.7.1,所以我一直在尝试迁移我的应用程序。我已经关注了djangodocshere.我从已安装的应用程序中删除了南方。在迁移目录中,我删除了编号的迁移文件和.pyc文件,但我保留了目录和__init__.py文件。然后我运行:pythonmanage.pymakemigrationsyour_app_name我收到以下确认消息:Migrationsfor'your_app_name':0001_initial.py:-CreatemodelUserProfile接下来我运行:pythonmanage.pymigrateyour_a

python - Django 1.7 - App 'your_app_name' 没有迁移

我正在尝试从Django1.6.7升级到Django1.7.1,所以我一直在尝试迁移我的应用程序。我已经关注了djangodocshere.我从已安装的应用程序中删除了南方。在迁移目录中,我删除了编号的迁移文件和.pyc文件,但我保留了目录和__init__.py文件。然后我运行:pythonmanage.pymakemigrationsyour_app_name我收到以下确认消息:Migrationsfor'your_app_name':0001_initial.py:-CreatemodelUserProfile接下来我运行:pythonmanage.pymigrateyour_a

python - main 函数和/或 __name__ == "__main__"在 Python 中检查有什么意义?

这个问题在这里已经有了答案:Whatdoesif__name__=="__main__":do?(43个回答)关闭3个月前。我偶尔会在Python脚本中注意到类似以下内容:if__name__=="__main__":#dostufflikecallmain()这是什么意思?