代码之家  ›  专栏  ›  技术社区  ›  Sweta Shaw

运行tensorflow test\u streaming\u准确性时出错。复写的副本

  •  0
  • Sweta Shaw  · 技术社区  · 7 年前

    要运行 test_streaming_accuracy.cc ,我运行了以下命令:

    bazel run tensorflow/examples/speech_commands:test_streaming_accuracy --graph=/home/sweta/AudioRecognition/speech_commands_train/my_frozen_graph.pb --labels=/home/sweta/AudioRecognition/speech_commands_train/conv_labels.txt --wav=/home/sweta/AudioRecognition/speech_dataset/streaming_test_labels.wav --ground_truth=/home/sweta/AudioRecognition/speech_dataset/streaming_test_labels.txt --verbose
    

    执行此操作后,出现以下错误:

    ERROR: Unrecognized option: --graph=/home/sweta/AudioRecognition/speech_commands_train/my_frozen_graph.pb
    

    有人知道怎么做吗?

    1 回复  |  直到 7 年前
        1
  •  1
  •   Jin    7 年前

    为了将参数传递给 bazel run ,您需要包括一个额外的 -- 在您的参数之前,否则Bazel将把它们作为自身的参数进行解析。

    例如 bazel run //my/binary:target --verbose_failures -- --arg_for_binary_target=42