|
这是我转模型时打印的信息,请问大神,最后一个警告会影响结果吗?
WARNING: The TensorFlow contrib module will not be included in TensorFlow 2.0.
For more information, please see:
* https://github.com/tensorflow/co ... 7-contrib-sunset.md
* https://github.com/tensorflow/addons
If you depend on functionality not listed there, please file an issue.
/home/derron/.local/lib/python3.6/site-packages/onnx_tf/common/__init__.py:87: UserWarning: FrontendHandler.get_outputs_names is deprecated. It will be removed in future release.. Use node.
outputs instead. warnings.warn(message)
--> config model
done
--> Loading model
done
--> Building model
W:tensorflow:From /home/derron/.local/lib/python3.6/site-packages/tensorflow/python/ops/control_flow_ops.py:3632: colocate_with (from tensorflow.python.framework.ops) is deprecated and will
be removed in a future version.Instructions for updating:
Colocations handled automatically by placer.
W:tensorflow:From /home/derron/.local/lib/python3.6/site-packages/tensorflow/python/ops/control_flow_ops.py:1941: py_func (from tensorflow.python.ops.script_ops) is deprecated and will be r
emoved in a future version.Instructions for updating:
tf.py_func is deprecated in TF V2. Instead, use
tf.py_function, which takes a python function which manipulates tf eager
tensors instead of numpy arrays. It's easy to convert a tf eager tensor to
an ndarray (just call tensor.numpy()) but having access to eager tensors
means `tf.py_function`s can use accelerators such as GPUs as well as
being differentiable using a gradient tape.
W Warning: Axis may need to be adjusted according to original model shape.
done
--> Export RKNN model
done
我的代码换了其他模型测试是有结果的,只有这个模型的结果有问题。
|
|