I am trying to project 3d bounding boxes on vehicles and pedestrians using a detector model. I ran the inference with 6 images and got output in the below format. Now i want to project the boxes on ...
num_items function throwsin user code:File "/Users/anu/PycharmProjects/Siglip/KVCache.py", line 12, in num_items *tf.cond( self.key_cache.size() > 0,OutOfRangeError: Tried to read ...
I am building a text classification system which requires a large preprocessing and training script. The script reads variable-length token sequences and attempts to build a tf.data.Dataset using ...
working on project of image classification using efficientnet-B7 what is wrong in this code? why is the error showing when i run this line of code? the error stateShape mismatch in layer #1 (named ...
I am learning TensorFlow and transfer learning, and I am trying to add a TensorFlow Hub feature extractor to a Keras Sequential model. But I get this error:ValueError: Only instances of keras.Layer ...
In my custom operator(runs on cpu), I use butil::Timer to measure the time taken as shown below:void Compute(OpKernelContext* ctx) override { butil::Timer total_timer; total_timer.start(); ...
I am facing a persistent issue when trying to initialize the TPU in my notebook. I have already confirmed that:My account is Verified.The Notebook Accelerator is set to TPU.My TPU quota is ...
I am unable to use the print(tf.version.VERSION) to check the tensorflow version. Reason being tensorflow looks for runtime_version in protobuf (from what I have learnt) and that is only supported in ...
I am trying to reproduce the exact layer-wise output of a quantized EfficientNet model (TFLite model, TensorFlow 2.17) by re-implementing Conv2D, DepthwiseConv2D, FullyConnected, Add, Mul, Sub and ...
Im trying to use tensorflow with gpu on my windows device, i have python 3.13 venv. Is newer version of tensorflow support gou acceleration on windows. Ive read that it stopped in tensorflow version 2....
I am working on a Kaggle notebook where I am trying to import TensorFlow/Keras to build a simple neural network for tabular data.However, even with Accelerator = None (CPU only), TensorFlow fails ...
I’m debugging a model conversion using onnx2tf and post-training quantization issue involving Einsum, BatchMatMul, and FullyConnected layers across different model formats.Pipeline:ONNX → TF ...
So, I am having a transfer learning project using VGG16, however as we all know its model size is over 500MB. I somply don't have enough disk space to save more than 200 instance of said model, ...
I've got a very small python script using a Model.h5 which should be loaded in order to classify some pictures.Here's my python script :import tensorflow as tffrom os import walkfrom keras.models ...