vadymkalin commited on
Commit
89608b9
·
verified ·
1 Parent(s): c7e2ab5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -13,16 +13,17 @@ tags:
13
  - detection
14
  pipeline_tag: image-classification
15
  ---
16
- MozieFinder (lightweight CNN-based model)
17
 
18
- MozieFinder is a lightweight convolutional neural network (CNN) model built from scratch using TensorFlow, designed for binary image classification: detecting whether an image contains a cat or a dog. The model is trained from the ground up on a curated dataset of ~20,000 labeled images (cats and dogs), resized to a resolution of 224x224 with data augmentation applied for improved generalization.
19
 
20
- The model architecture is loosely inspired by ResNet, incorporating residual connections and batch normalization. MozieFinder reaches around 92% accuracy on validation data and includes approximately 1.2 million trainable parameters. It outputs a binary classification score (0 = Cat, 1 = Dog).
 
 
 
 
 
21
 
22
- This model was created and trained from scratch by the author to demonstrate hands-on model development without pre-trained weights.
23
 
24
- Disclaimer: This model card has been written by the model creator. It has not been reviewed or endorsed by TensorFlow or any affiliated team.
25
-
26
-
27
-
28
- Let me know if you’d like the Hugging Face model card version (README.md format) or include additional sections like intended use, limitations, or training details.
 
13
  - detection
14
  pipeline_tag: image-classification
15
  ---
16
+ # 🐾 MozieFinder
17
 
18
+ **MozieFinder** is a lightweight convolutional neural network (CNN) model built from scratch using **TensorFlow**, designed to classify images as either **cats or dogs**.
19
 
20
+ - 📦 **Model Type**: Custom CNN (ResNet-inspired)
21
+ - 🐶🐱 **Task**: Binary Image Classification (Cat vs. Dog)
22
+ - 🧠 **Trainable Parameters**: ~1.2 million
23
+ - 🖼️ **Input Resolution**: 224x224
24
+ - 🏋️ **Training Data**: ~20,000 labeled cat and dog images
25
+ - 🎯 **Validation Accuracy**: ~92%
26
 
27
+ MozieFinder was trained from scratch no pre-trained weights were used — as a demonstration of how to build a robust image classification model end-to-end.
28
 
29
+ > ⚠️ **Disclaimer**: This model card was written by the model creator. It has not been officially reviewed by TensorFlow or affiliated teams.