Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

I’m trying to run TensorFlow with GPU on Windows 11 + WSL2 using an NVIDIA RTX 5090. The issue TensorFlow currently supports: CUDA 12.3 cuDNN 9.x Requires NVIDIA driver ≥ 560.94 But RTX 50-series GPUs ...
Mansoor's user avatar
  • 27
-1 votes
0 answers
27 views

I’m working on a sleep stage classification model using deep learning, but I’m getting much lower accuracy than expected. I would appreciate help reviewing my code and suggestions for improving the ...
malih's user avatar
  • 1
0 votes
0 answers
17 views

I’m building a Flutter Android app that performs real-time people counting from an RTSP camera stream (IP camera) using a YOLOv8n model exported to TensorFlow Lite. Model details - YOLOv8n trained in ...
Siddhant Adhikari's user avatar
-1 votes
1 answer
34 views

I'm working on food101 tensorflow dataset and want to know the most wrong predictions of my efficientnet model, for that purpose I'd need to get image paths of test data, but I don't know how I can ...
Namal Rizwan's user avatar
0 votes
0 answers
32 views

I'm trying to use Google's ai-edge-torch library to work with the Gemma 3 model in a Google Colab environment. However, I encounter the following error during import: import torch from ai_edge_torch....
Parivalavan Manikandan's user avatar
-1 votes
0 answers
45 views

I using a python 3.10 virtual environment, and try to import tensorflow as tf and import albumentations as A. And i faced a error on cannot allocate memory in static TLS block. Anyone know what is the ...
Andrew Tan Xue Yee's user avatar
0 votes
0 answers
17 views

Let's take a minimal 1d cnn autoencoder model as an example: def cnn_session_encoder(inputs): x = layers.Conv1D(32, 3, activation="relu", padding="same")(x) x = layers....
Natan's user avatar
  • 1,141
-5 votes
0 answers
78 views

I’m working on a binary classification problem using a neural network in TensorFlow/Keras. The dataset has around 9,500 training samples and 2,500 testing samples. My model architecture: model = ...
DIWAKAR SUMBRIA's user avatar
1 vote
1 answer
56 views

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 ...
coderx's user avatar
  • 3
0 votes
1 answer
63 views

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 state Shape mismatch in layer #1 (named ...
Trinity's user avatar
3 votes
1 answer
50 views

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 ...
Sanjay Jithesh's user avatar
0 votes
0 answers
44 views

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(); ...
Mingyue Zhang's user avatar
1 vote
1 answer
77 views

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 ...
rezvan gh's user avatar
1 vote
0 answers
46 views

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 ...
sunny's user avatar
  • 683
2 votes
0 answers
75 views

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 ...
Jolverine's user avatar

15 30 50 per page
1
2 3 4 5
5481