Venkat6871

Results 132 comments of Venkat6871

Hi @jonas-eschle , I tried to run your code on Colab using TF v2.16.1, nightly faced same issue. Please find the [gist](https://colab.sandbox.google.com/gist/Venkat6871/49b254b03e3fa872fd70b442c510d55f/64548_2-16-1-nightly.ipynb) here for reference. Thank you!

Hi **@Shuo-Sun20** , I tried to run your code on Colab using TF v2.16.1 and i am not facing any issue. Please find the [gist](https://colab.sandbox.google.com/gist/Venkat6871/b9af30cf64d9451c5100271495d67fca/64396_2-16-1.ipynb) here for reference. Thank you!

Hi **@summa-code** , - Ensure that your input data has a static batch size. When using stateful=True, the batch size should not change between batches. You can achieve this by...

Hi **@zoux1a** , I was able to reproduce the issue on colab using TF v2.15, and TF-nightly. Please find the [gist](https://colab.sandbox.google.com/gist/Venkat6871/30f067f2c0c10cbc396fb8032b6e0b07/62869_2-15-nightly-v.ipynb) here for reference. Thank you!

Hi **@zoux1a** , - Ensure that the input tensors tensor_x and tensor_y have the correct shapes and data types. The LeftShift operation requires that the first tensor (x) be an...

Hi **@wudisheng** , Could you try this once ``` Set XLA_FLAGS=--xla_disabled_backends=cpu,gpu to disable XLA for both CPU and GPU. ``` Note: Disabling XLA and JIT might impact performance, so consider...

Hi @niemiaszek , I have replicated the reported behaviour with colab using TF v2.14, 2.15 and tf-nightly. Please find the [gist ](https://colab.research.google.com/gist/Venkat6871/534a54b6bfe499c8bd7b41fb148a02c6/62526_2-14_2-15-nightly.ipynb)here for reference. Thank you!

Hi **@niemiaszek** , Sorry for the delay, I will share another approach with you now is to use tf.signal.frame, which is designed for creating frames of a signal (which can...

Hi **@akote123** To get operation-level timings or execution time of specific operations within a graph, you can use the TensorFlow Profiler tool. I attached a [gist](https://colab.research.google.com/gist/Venkat6871/0a522038d4ff7e056d7cdb57cd33d884/62329.ipynb) for your reference. Thank...

**@akote123** Thanks for your response! Could you check the gist now. I hope it will run. Thank you!