Downloads · 30 days
0
CernovaAI/CANetv1.2
CANetv1.2 is a image classification model from CernovaAI. Use it when you need a label for an image. The card lists the license as mit.
This project demonstrates a Convolutional Neural Network (CNN) built with TensorFlow and Keras for image classification. The model is designed to learn from labeled datasets and classify unseen images with high accuracy.
Downloads · 30 days
0
Access
Public
Updated Sep 1, 2025
Repo size
—
Likes
0
Public
Click a slice to open those files.
.md2.1 KB · 38%
From the Hugging Face model README
This project demonstrates a Convolutional Neural Network (CNN) built with TensorFlow and Keras for image classification. The model is designed to learn from labeled datasets and classify unseen images with high accuracy.
ImageDataGenerator with automatic train/validation split (90% training / 10% validation)..h5 format for reuse.project/
│── dataset/ # Training & validation images
│── image_classifier.h5 # Saved trained model
│── main.py # Model training & prediction script
│── README.md # Project documentation
python main.py
guess("test_image.jpg", model, train_generator.class_indices)
The predicted class will be displayed on the image itself.
This project provides a versatile CNN-based image classifier that can be applied to a wide range of domains—from medical imaging to natural scene recognition. By integrating your own dataset, you can easily adapt this model to your specific use case.