No op named DecodeWav in defined operations
See original GitHub issueWhile trying the “Simple Speech Recognition” frozen graph given in this link: https://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip
The TF model fails to load in tensorflow. Here’s the output:
ValueError: No op named DecodeWav in defined operations.
I’m using TensorFlow 1.3.
Issue Analytics
- State:
- Created 6 years ago
- Comments:10
Top Results From Across the Web
No op named NonMaxSuppressionV2 in defined operations.
Hi,. While converting the tensorflow model (.pb) to snpe (.dlc) , I'm facing issue with the "NonMaxSuppressionV2" operation.
Read more >How to use object detection API with an old version of tensorflow
' % node.op) ValueError: No op named NonMaxSuppressionV3 in defined operations. Just wondering if it's possible to use object detection API with ...
Read more >tf.Operation | TensorFlow v2.11.0
Objects of type Operation are created by calling a Python op constructor (such as ... ValueError, if the node_def name is not valid....
Read more >How to convert Tensorflow Simple Audio Recognition frozen ...
So i created the text summary of the frozen graph as mentioned in the tutorial and ... node.op) ValueError: No op named DecodeWav...
Read more >op - Go Packages
Package op defines functions for adding TensorFlow operations to a Graph. ... as a name prefix) for all operations being added to the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@slin07 Have you tried
from tensorflow.contrib.framework.python.ops import audio_ops as contrib_audio
before importing? Could you post the error message? Thanks!Hi,
I’m new to this (so apologies!) but am I now able to convert the TF speech_data example whilst keeping the DecodeWav op? Some of the comments above seem to suggest it is now a supported op?