AttributeError: у объекта 'module' нет атрибута 'ceil' - PullRequest
1 голос
/ 08 апреля 2019

Я установил модуль onnx_tf по этой ссылке .

После этого, когда я проверяю установку как python -c "import onnx_tf", я сталкиваюсь со следующей ошибкой. Как мне решить это? Спасибо

testuser@testuser:~$ python -c "import onnx_tf"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/home/testuser/.local/lib/python2.7/site-packages/onnx_tf/__init__.py", line 1, in <module>
    from . import frontend
  File "/home/testuser/.local/lib/python2.7/site-packages/onnx_tf/frontend.py", line 18, in <module>
    from onnx_tf.common.handler_helper import get_all_frontend_handlers
  File "/home/testuser/.local/lib/python2.7/site-packages/onnx_tf/common/handler_helper.py", line 5, in <module>
    from onnx_tf.handlers.backend import *  # noqa
  File "/home/testuser/.local/lib/python2.7/site-packages/onnx_tf/handlers/backend/ceil.py", line 10, in <module>
    @tf_func(tf.ceil)
AttributeError: 'module' object has no attribute 'ceil'

...