Skip to main content
Best practices
0 votes
3 replies
48 views

What is the best way to find mislabeled images in a dataset where labels are based on folders? Each class is already separated into its own directory, but some images inside are clearly in the wrong ...
Yazid Hilmi's user avatar
1 vote
0 answers
139 views

data = tf.keras.utils.image_dataset_from_directory('snails', image_size=(256,256), shuffle=True) class_names = data.class_names num_classes = len(class_names) print("Classes:", class_names) ...
Stanley Markson Verian's user avatar
Tooling
0 votes
1 replies
296 views

I specifically need: -A real .tflite file (not .onnx, not .pb, not .pth, not .mlmodel) -Image classifier model (NOT segmenter or detector) -Preferably with 5 classes or at least 2: drawings, hentai, ...
WadiaAbushanab's user avatar
-1 votes
1 answer
65 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
23 views

I am currently working on a custom VGG model for Breast Cancer Classification using mammography images. It has excellent accuracy for training images but the validation accuracy is stuck at 0.5-0.6. ...
Garima Sethi's user avatar
0 votes
0 answers
32 views

Last year I finetuned MobileNetV3S on google colab [tensorflow version 2.15.0] gave me 95% (test) accuracy and loss below 0.25. However, running the same notebook now (2025-05) [tensorflow verion 2.18....
GrayAtom's user avatar
0 votes
1 answer
164 views

I have trained and quantised my models on tensorflow==2.19.0 instead of a previous version and now am facing troubles in using the quantised models for inference on my Raspberry Pi (Raspbian GNU/Linux ...
peacer's user avatar
  • 45
1 vote
1 answer
193 views

I am having trouble getting image analysis batch processing to work. I would like to send a list of images to DeepFace to get a list of race, gender, and age predictions. I am calling test functions ...
matth3wV's user avatar
3 votes
0 answers
70 views

Please, I would appreciate some help and will be grateful for any help. I have some doubts about how to calculate the frame rate (FPS) in image classification for training an testing routines. I've ...
rafa's user avatar
  • 31
0 votes
1 answer
30 views

I'm making a CNN and I don't know the full ins and outs of coding. When i try to add the layers, it constantly gives me a "NotImplmentedError" and a "ValueError" that says ...
Eve's user avatar
  • 9
-1 votes
1 answer
53 views

I am building/optimizing a CNN for classifcation of cars from this dataset. My baseline model is getting suprisingly high accuracy from a very simple model architecture, I am concerned there is some ...
GandarfTheWhite's user avatar
0 votes
0 answers
57 views

I am exploring the Apple Core ML framework. I created a training model using Create ML app. Image Classification to identify the image is cat or a dog. The data set I used is referred from https://www....
Gypsa's user avatar
  • 11.3k
0 votes
1 answer
48 views

I am attempting to perform an image classification task on a dataset with 𝐿 classes. The network I am using is divided into a feature extractor and a classifier. When an image is passed through the ...
kkyub's user avatar
  • 5
1 vote
0 answers
80 views

I'm working on an image classification project using a custom-trained ResNet50 model with ImageAI, but I'm encountering a persistent loading error that prevents me from using my trained model for ...
KaleBats123's user avatar
0 votes
0 answers
44 views

I load my datasets with keras.utils.image_dataset_from_directory(). Here's the code: train_ds = image_dataset_from_directory( "train", validation_split=0.2, subset="training",...
Mare Maneski's user avatar

15 30 50 per page
1
2 3 4 5
39