Onnx 'helper' 和 'checker' 属性未定义
Onnx 'helper' and 'checker' attribute are not defined
我在我的 conda 虚拟环境中安装了 onnx 0.2.1
conda list | grep onnx
packages in environment at /Users/aanirud/anaconda2/envs/onnx:
onnx 0.2.1 py27_1 ezyang
onnx-caffe2 0.2.1 py27hbe716ef_1 ezyang
onnx-mxnet 0.4.1
但我无法使用 onnx.checker 或 onnx.helper 属性。当我尝试使用它们时,出现以下错误 -
import onnx
onnx.checker.check_model("toy_model.onnx")
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'checker'
当我尝试使用 onnx.helper 时出现同样的错误。我在这里做错了什么?
onnx版本的问题,旧版本有bug。使用 onnx >= 1.0.0 有效
运行 以下作品 -
git 克隆 --recursive https://github.com/onnx/onnx.git
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py 安装
我在我的 conda 虚拟环境中安装了 onnx 0.2.1
conda list | grep onnx
packages in environment at /Users/aanirud/anaconda2/envs/onnx:
onnx 0.2.1 py27_1 ezyang
onnx-caffe2 0.2.1 py27hbe716ef_1 ezyang
onnx-mxnet 0.4.1
但我无法使用 onnx.checker 或 onnx.helper 属性。当我尝试使用它们时,出现以下错误 -
import onnx
onnx.checker.check_model("toy_model.onnx")
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'checker'
当我尝试使用 onnx.helper 时出现同样的错误。我在这里做错了什么?
onnx版本的问题,旧版本有bug。使用 onnx >= 1.0.0 有效
运行 以下作品 - git 克隆 --recursive https://github.com/onnx/onnx.git MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py 安装