- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究openface 。 Openface有unknown classification python cod e.
我正在测试lfw-classification-unknown.py的
训练部分。它使用
nolearn-DBN classifier
我安装了nolearn 0.5 版
。DBN 分类器
有一个对 /usr/local/lib/python2.7/dist-packages/gnumpy.py
的函数调用,并且我的错误为
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 738, in as_numpy_array
if self.size==0: return numpy.zeros(self.shape, dtype)
AttributeError: 'garray' object has no attribute 'size'
如何修复该错误?
全部错误是
Traceback (most recent call last):
File "/usr/lib/python2.7/pdb.py", line 1314, in main
pdb._runscript(mainpyfile)
File "/usr/lib/python2.7/pdb.py", line 1233, in _runscript
self.run(statement)
File "/usr/lib/python2.7/bdb.py", line 400, in run
exec cmd in globals, locals
File "<string>", line 1, in <module>
File "evaluation/lfw-classification-unknown.py", line 519, in <module>
train(args)
File "evaluation/lfw-classification-unknown.py", line 130, in train
clf.fit(embeddings, labelsNum)
File "/usr/local/lib/python2.7/dist-packages/nolearn/dbn.py", line 409, in fit
self.use_dropout,
File "/usr/local/lib/python2.7/dist-packages/gdbn/dbn.py", line 202, in fineTune
err, outMB = step(inpMB, targMB, self.learnRates, self.momentum, self.L2Costs, useDropout)
File "/usr/local/lib/python2.7/dist-packages/gdbn/dbn.py", line 296, in stepNesterov
targetBatch = targetBatch if isinstance(targetBatch, gnp.garray) else gnp.garray(targetBatch)
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 735, in __new__
def __new__(cls, *args, **kwarg): return object.__new__(cls)
File "/usr/lib/python2.7/bdb.py", line 53, in trace_dispatch
return self.dispatch_return(frame, arg)
File "/usr/lib/python2.7/bdb.py", line 88, in dispatch_return
self.user_return(frame, arg)
File "/usr/lib/python2.7/pdb.py", line 190, in user_return
self.interaction(frame, None)
File "/usr/lib/python2.7/pdb.py", line 209, in interaction
self.print_stack_entry(self.stack[self.curindex])
File "/usr/lib/python2.7/pdb.py", line 900, in print_stack_entry
prompt_prefix)
File "/usr/lib/python2.7/bdb.py", line 381, in format_stack_entry
s = s + repr.repr(rv)
File "/usr/lib/python2.7/repr.py", line 24, in repr
return self.repr1(x, self.maxlevel)
File "/usr/lib/python2.7/repr.py", line 34, in repr1
s = __builtin__.repr(x)
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 1133, in __repr__
def __repr__(self): return self.as_numpy_array().__repr__().replace('array(', 'garray(').replace('\n', '\n ').replace(', dtype=float32', '').replace(', dtype=float64', '') # 64 happens for empty arrays
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 738, in as_numpy_array
if self.size==0: return numpy.zeros(self.shape, dtype)
AttributeError: 'garray' object has no attribute 'size'
> Uncaught exception. Entering post mortem debugging
Running 'cont' or 'step' will restart the program
> /usr/local/lib/python2.7/dist-packages/gnumpy.py(738)as_numpy_array()
-> if self.size==0: return numpy.zeros(self.shape, dtype)
编辑:如果不是Debug模式,错误如下。
Traceback (most recent call last):
File "evaluation/lfw-classification-unknown.py", line 519, in <module>
train(args)
File "evaluation/lfw-classification-unknown.py", line 130, in train
clf.fit(embeddings, labelsNum)
File "/usr/local/lib/python2.7/dist-packages/nolearn/dbn.py", line 407, in fit
self.use_dropout,
File "/usr/local/lib/python2.7/dist-packages/gdbn/dbn.py", line 202, in fineTune
err, outMB = step(inpMB, targMB, self.learnRates, self.momentum, self.L2Costs, useDropout)
File "/usr/local/lib/python2.7/dist-packages/gdbn/dbn.py", line 303, in stepNesterov
errSignals, outputActs, error = self.fpropBprop(inputBatch, targetBatch, useDropout)
File "/usr/local/lib/python2.7/dist-packages/gdbn/dbn.py", line 262, in fpropBprop
outputErrSignal = -self.outputActFunct.dErrordNetInput(targetBatch, self.state[-1], outputActs)
File "/usr/local/lib/python2.7/dist-packages/gdbn/activationFunctions.py", line 138, in dErrordNetInput
return acts - targets
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 965, in __sub__
else: return self + -as_garray(other) # if i need to broadcast, making use of the row add and col add methods is probably faster
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 926, in __add__
def __add__(self, other): return _check_number_types(self._broadcastable_op(as_garray_or_scalar(other), 'add'))
File "/usr/local/lib/python2.7/dist-packages/gnumpy.py", line 614, in _broadcastable_op
if reduce(operator.or_, ( other.shape[i] not in (1, self.shape[i]) for i in range(self.ndim)), False): raise ValueError('shape mismatch: objects cannot be broadcast to a single shape')
ValueError: shape mismatch: objects cannot be broadcast to a single shape
最佳答案
您尚未发布任何实际代码,因此实际上不可能确切知道您的问题是什么。
从堆栈跟踪中,很明显您遇到的问题是由于 pdb
尝试在 之后立即获取并打印
被调用。这是在调用 garray
的值garray.__new____init__
之前,因此 .size
属性还不存在。
在gnumpy.garray
代码中似乎没有必要重新定义__new__
,因此您只需打开即可解决您的问题/usr/local/lib/python2.7/dist-packages/gnumpy.py
然后注释掉第 735 行(即定义 __new__
的行)。
更简单的是,当您仅运行脚本而不使用pdb
(例如python lfw-classification-unknown.py
)时会发生什么?看来这个特定的错误会消失。另一方面,您可能首先出于实际原因使用调试器。您最初是否遇到了不同的错误?在这种情况下,这是 XY problem ,您可能应该发布一个新问题来询问原始错误。
不幸的是,gnumpy.garray
需要一个实际的 NVidia GPU 才能运行,而我没有,因此我无法直接测试这些解决方案。
话虽如此,似乎在没有设置 .size
属性的情况下创建了一个 garray
对象。这可能是由于您自己的代码或 4 个不同包(openface
加上 3 个依赖项)中的任何一个中的错误所致。以下是对这种情况可能如何发生的非常笼统的概述。
openface
依赖于 nolearn
,它依赖于 gbdn
,它依赖于 gnumpy
。详细:
您链接到的 openface
代码有 a dependency上the nolearn.dbn.DBN
class .
nolearn.dbn.DBN
has a dependency上the gdbn.dbn.buldDBN
function ,并通过它 gdbn.dbn.DBN
class .
gdbn.dbn.buldDBN
和 gdbn.dbn.DBN
都有创建 class gnumpy.garray
数组的代码
因此,大概是在 buildDBN
或 DBN
中创建 garrays
之一时出现了问题。 .size
属性仅在 the gnumpy.garray._set_shape_info
method 时设置叫做。粗略地查看一下 garray
的实现并没有发现任何明显的方式导致初始化期间无法调用 _set_shape_info
。然而,确实值得注意的一件事是,至少有十几个不同的代码路径可以用来初始化 garray
。如果有一个边缘情况在没有调用 _set_shape_info
的情况下溜过去,这并不奇怪。
关于python - 使用 nolearn-DBN 分类器时,“garray”对象没有属性 'size',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54158005/
我想在 GArray 中添加一些字符串对象。但是当我阅读 API 手册时 g_array_new(),它在创建数组时寻找要添加的元素的大小,但是 不同的字符串对象有不同的长度,所以我该如何处理这个问题
当 g_array_append_val() 时会发生什么或 GLib 中的其他附加/前置函数之一,使 GArray 的长度大于 guint (unsigned int) 所能容纳的长度? 文档对此没
我有一些奇怪的 Glib 行为,在互联网上搜索了一下,发现 this Glib tutorial ,第二个代码块要具体: //ex-garray-2.c #include #include //
我创建 drvm *drv我的功能中的结构。此结构本身包含包含 malloc()-ed 的字段字段(uint32_t *buffer)。执行此操作的代码类似于: ... size_t elm_size
我有一个 GValue 的 GArray(全非零),它是在运行时用 g_array_append_val 分配的。我想知道如何找出最后一个元素的索引是什么,或者更准确地说,数组包含多少个元素。代码如下
我正在尝试将字符串映射到 GArrays使用GHashTable 。到目前为止,我还没有成功。 我像这样声明哈希表: hash_table = g_hash_table_new_full(g_str_
编译器说 GHashTable 未定义,但如果我在从数组检索 GHashTable 的代码上方使用它,则显然它已定义。到底是怎么回事?我很困惑。 gcc -Wall -o tht `pkg-confi
这是一个对 GArray 进行排序的练习程序,我使用 sizeof() 来了解数组的大小。 从逻辑上思考,sizeof(x) 应该是 24,即 6 个整数 * 每个整数的大小,即 4 - 6*4。 但
我想使用 glib 库的 GArray 将位置 x 的值设置为给定值。就像我使用 c-array 和 array[x]=5; 为什么我找不到执行此操作的函数?这不就是一个数组的意思吗?文档:https
我正在研究openface 。 Openface有unknown classification python cod e. 我正在测试lfw-classification-unknown.py的训练部
我正在尝试使用 GLib 作为替代方法来编写我自己的数据结构。我的目标是仅使用 glib 编写一个基于邻接表的简单图形数据结构。 现在的代码如下 #include #include struct
我是一名优秀的程序员,十分优秀!