583 questions
-6 votes
1 answer
45 views
How deploy trained model on react native mobile application? [closed]
I have a project of leaf classification, I already have trained model so i want to integrate the model to through mobile application using react native does anyone know how to make it possible?
0 votes
0 answers
20 views
Validation Accuracy stuck between 0.5-0.6
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. ...
0 votes
0 answers
20 views
Finetuning MobilenetV3S on Google Colab
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....
0 votes
0 answers
112 views
tflite-runtime ValueError: Didn't find op for builtin opcode 'FULLY_CONNECTED' version '12'. An older version of this builtin might be supported
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 ...
1 vote
1 answer
161 views
DeepFace Analyze - Test scripts for batched image processing
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 ...
3 votes
0 answers
56 views
How to calculate FPS in image classification?
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 ...
0 votes
1 answer
26 views
Input 0 of layer "conv2d" is incompatible with the layer: expected min_ndim=4, found ndim=2. Full shape received: (None, 4)
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 ...
0 votes
0 answers
53 views
How to Integrate an Image Classifier with OpenDLP for Sensitive and Non-Sensitive Classification via APIs or any method?
I'm working on an open-source Data Loss Prevention (DLP) solution trying to integrate image scanning capabilities using machine learning (ML) for image classification. I’ve set up a reverse proxy with ...
0 votes
0 answers
25 views
Black regions in train_batch0.jpg
When training the YOLO11m-cls.pt with cusomize data, I found some black square region in train_batch*.jpg. How can I adjust the hyper parameters to avoid generating it. I tried some hyper parameters, ...
-1 votes
1 answer
49 views
Convolutional Neural Network is getting unexpectedly high validation accuracy, what could be causing this?
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 ...
0 votes
0 answers
51 views
Core ML prediction for Image Classification Create ml model predict same result for different images
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....
0 votes
1 answer
43 views
Why does the PDF of the feature vector follow a Gaussian mixture?
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 ...
0 votes
0 answers
22 views
Can I use K-means clustering to compare change across two satellite images
I want to quanity the change in two satellite images that have the same spatial extent - can I define the clusters by calculating k-means clusters for both images stacked together and then apply the ...
1 vote
0 answers
64 views
How to Load a Custom-Trained ResNet50 Model with ImageAI in Python?
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 ...
0 votes
0 answers
42 views
"ValueError: Shapes are incompatible", but where?
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",...