Flow tensor construction quantization tool - Basel construction error

I am trying to compile a quantization script as described in the Pete Warden blog . However, after completing the following bazel build, the following error message appears:

bazel build tensorflow/contrib/quantization/tools:quantize_graph
ERROR: no such package 'tensorflow/contrib/quantization/tools': BUILD       file not found on package path.
INFO: Elapsed time: 0.277s
+4
source share
1 answer

I think it happened that this quantization tool was moved from contrib to the core of TensorFlow. You should use this instead:

bazel build tensorflow/tools/quantization:quantize_graph
+6
source

Source: https://habr.com/ru/post/1659875/


All Articles