Johnson Sun
Johnson Sun
Fixed in [the v0.4 release](https://github.com/j3soon/whisper-to-input/releases/tag/v0.4).
Hi, I didn't encounter this issue before. Are you using the Azure API key for other services? or are you only using it for this program? In addition, I believe...
Thanks for the info. I haven't thoroughly tested this config set up. In particular, I think this issue may be caused by the following: ``` "ContinuousRecognition": true, "TotalTimeoutMS": 60000, ```...
Hi, unfortunately I cannot reproduce this issue on my end. I suspect it may be due to your Azure API key being somehow leaked. Consider regenerating new API keys and...
Please feel free to share it with others. 😊 Thank you!
Hi @arcra, I haven't encountered any issues with tensorboard, but I noticed that the stubs have significantly diverged from the main TensorFlow repository. Do you think we should update them...
`tensor` events are parsed with TensorFlow with the following code: https://github.com/j3soon/tbparse/blob/74e89db0e9a088382babef3df0eab3f44120bb82/tbparse/summary_reader.py#L684-L687 The main usage of TensorFlow is for converting `TensorProto` to a numpy array. We require TensorFlow here since we...
Thanks! Seems like TensorFlow does something similar (but dealing with more cases): https://github.com/tensorflow/tensorflow/blob/39f68b781b04014252b01cfb65aabc25448a1ae1/tensorflow/python/framework/tensor_util.py#L630 However, I think we still need to follow the TensorFlow implementation, since the `histogram` event will log...
Fixed in v0.0.9 on PyPI. Sidenote: Related to #10
@symonk, I agree with you that implementing a unified API (`Augmenter`) for all languages (Python, C#, etc.) is a much better approach in the long term. However, the `Augmenter` in...