Views
No views yet
1from huggingface_hub import hf_hub_download
2from tensorflow.keras.models import load_model
3
4# Download model
5model_path = hf_hub_download(repo_id="GustavoGomes7/VisionNet-CIFAR10", filename="best_model.keras")
6
7# Load model
8model = load_model(model_path)
9
10print("Model downloaded and loaded successfully!")
11| Metric | Value |
|---|---|
| Dataset | CIFAR-10 (10 classes, 60,000 images) |
| Test Accuracy | 89.90% |
| Test Loss | 0.5551 |
| Best-performing classes | Automobile (F1-score 0.95), Ship (F1-score 0.94), Truck(F1-score 0.94) |
| Most challenging class | Cat (F1-score 0.80) |