Rohit Saini

Results 7 comments of Rohit Saini

can you please elaborate how to do it sir

i did this with tf.io.gfile.GFile(self.config['deepspeech_graph_fname'], "rb") as f: graph_def = tf.compat.v1.GraphDef() graph_def.ParseFromString(f.read()) graph = tf.compat.v1.get_default_graph() tf.import_graph_def(graph_def, name="deepspeech") for op in tf.compat.v1.get_default_graph().get_operations(): if op.type=='Placeholder': for placeholder in op.values(): print(placeholder) input_tensor =...

also i printed graph and this was the result

> > can you please elaborate how to do it sir > > Please run `print([placeholder for op in tf.get_default_graph().get_operations() if op.type=='Placeholder' for placeholder in op.values()])` [after this line](https://github.com/TimoBolkart/voca/blob/7bfd21ccdefcf284ba784f55eea57f9d5ab11d00/utils/audio_handler.py#L101) the...

> Running your code it seems that the namespace "deepspeech" is missing. This might be due to some changes in your code, not sure. Does removing the deepspeech work for...

> > > Running your code it seems that the namespace "deepspeech" is missing. This might be due to some changes in your code, not sure. Does removing the deepspeech...

Hi thanks for your response. I want to use voice builder for my project and I don't have a google cloud account neither i can have one because i don't...