assert 'SpatialNarrowAs' в рабочей области .RegisteredOperators () [Detectron test AssertionError] - PullRequest
0 голосов
/ 23 сентября 2019

Сегодня я установил Caffe2 и Detectron на мой компьютер с Windows 10, но во время выполнения теста \Detectron\detectron\tests\test_spatial_narrow_as_op.py я получил эту ошибку:

C:\Users\ilink\source\Detectron\detectron\tests>python test_spatial_narrow_as_op.py
[E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature avx is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU.
[E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature avx2 is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU.
[E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature fma is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU.
In Windows, Detectron ops are built-in. No need to load dynamically. Ignore the following warning.
Ignoring  as it is not a valid file.
Traceback (most recent call last):
  File "test_spatial_narrow_as_op.py", line 89, in <module>
    assert 'SpatialNarrowAs' in workspace.RegisteredOperators()
AssertionError

Если это поможет, я использовал http://gianni.rosagallina.com/en/posts/2018/10/09/caffe2-gpu-windows-2.html, чтобы помочь установитьDetectron.Я сделал pip install pytorch для установки Caffe2.

Я довольно новичок в программировании, связанном с искусственным интеллектом, а также в стеке в целом, поэтому, если я что-то упустил, пожалуйста, сообщите мне.Заранее спасибо:)

...