Commit ·
38d695c
1
Parent(s): 71bc3f6
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
metrics:
|
| 4 |
+
- accuracy
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# image_classification
|
| 8 |
+
(this model was not trained using Trainer API)
|
| 9 |
+
This model is a fine-tuned version of [EfficientNetB7](https://github.com/lukemelas/EfficientNet-PyTorch) on the [Tyre-Quality-Classification](https://www.kaggle.com/datasets/warcoder/tyre-quality-classification/code) dataset.
|
| 10 |
+
It achieves the following results on the evaluation set:
|
| 11 |
+
- Loss: 0.2341
|
| 12 |
+
- Accuracy: 91.9355%
|
| 13 |
+
|
| 14 |
+
## Intended uses & limitations
|
| 15 |
+
|
| 16 |
+
Can be used for quality control to identify the condition of tyres
|
| 17 |
+
|
| 18 |
+
## Training and evaluation data
|
| 19 |
+
|
| 20 |
+
Data can be seen at [Weights and Biases](https://wandb.ai/faldeus0092/efficientnetb7_tyrequality_classifier/runs/1z5mnxps/overview?workspace=user-faldeus0092)
|
| 21 |
+
|
| 22 |
+
## Training procedure
|
| 23 |
+
|
| 24 |
+
### Training hyperparameters
|
| 25 |
+
|
| 26 |
+
The following hyperparameters were used during training:
|
| 27 |
+
- learning_rate: 0.001
|
| 28 |
+
- train_batch_size: 16
|
| 29 |
+
- eval_batch_size: 16
|
| 30 |
+
- train_set: 1434
|
| 31 |
+
- test_set: 372
|
| 32 |
+
- optimizer: SGD with momentum = 0.9
|
| 33 |
+
- num_epochs: 5
|
| 34 |
+
|
| 35 |
+
### Training results
|
| 36 |
+
|
| 37 |
+
See at [Weights and Biases](https://wandb.ai/faldeus0092/efficientnetb7_tyrequality_classifier/runs/1z5mnxps/overview?workspace=user-faldeus0092)
|