
tensorflow - Meaning of buffer_size in Dataset.map , …
The buffer_size argument in tf.data.Dataset.prefetch() and the output_buffer_size argument in tf.contrib.data.Dataset.map() provide a way to tune the performance of your input pipeline: …
Unable to install Tensorflow on Anaconda Environment
Dec 23, 2023 · I had the exact same issue and solved it using: !pip install tensorflow==2.12.0 This version supports Python 3.11. Check if it's installed properly using: !pip3 show tensorflow
Using Keras & Tensorflow with AMD GPU - Stack Overflow
The development of tensorflow-opencl is in it's beginning stages, and a lot of optimizations in SYCL etc. have not been done yet. If you are using an AMD GPU with more VRAM and more …
tensorflow - tensorboard: command not found - Stack Overflow
2 What version of Tensorflow are you running? Older versions don't include Tensorboard. If you do have a newer version, I see you are using OSX, which apparently caused some problems …
Is there another method to install tensorflow 2.18.0 with python …
Jan 29, 2025 · I want to install tensorflow in my machine but I have a problem during the installation. I tried all method but no result C:\\Users\\Ultra Tech>pip --default-timeout=1000 …
Installing TensorFlow on Windows (Python 3.6.x)
Nov 30, 2016 · 17 If you are using anaconda distribution, you can do the following to use python 3.5 on the new environnement "tensorflow": conda create --name tensorflow python=3.5 …
tensorflow - How to convert .pb to TFLite format? - Stack Overflow
Oct 22, 2018 · I downloaded a retrained_graph.pb and retrained_labels.txt file of a model I trained in Azure cognitive service. Now I want to make an Android app using that model and to do so I …
Tensorflow support for Python3.11 - Stack Overflow
Nov 24, 2022 · Tensorflow 2.12 has been released with python 3.11 support, so you can now consolidate your python installations and package setups
tensorflow - How to stack multiple lstm in keras ... - Stack Overflow
Oct 31, 2016 · For prediction models this may indeed just be a scalar, but for classification you obviously look to output a one-hot vector which equals the size of the one-hot vector that the …
TensorFlow, "'module' object has no attribute 'placeholder'"
May 23, 2016 · Related: I had an issue (tensorflow 0.9), in that scripts stopped working: " AttributeError: 'module' object has no attribute 'constant' ". Thanks to this answer, I looked and …