Instructions to use karim155/convnext-tiny-224-finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use karim155/convnext-tiny-224-finetuned with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="karim155/convnext-tiny-224-finetuned") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("karim155/convnext-tiny-224-finetuned") model = AutoModelForImageClassification.from_pretrained("karim155/convnext-tiny-224-finetuned", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Model save
Browse files
README.md
CHANGED
|
@@ -17,9 +17,9 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
|
| 18 |
This model is a fine-tuned version of [facebook/convnext-tiny-224](https://huggingface.co/facebook/convnext-tiny-224) on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
-
- Loss: 1.
|
| 21 |
-
- Logloss: 1.
|
| 22 |
-
- Accuracy: {'accuracy': 0.
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
@@ -51,11 +51,11 @@ The following hyperparameters were used during training:
|
|
| 51 |
|
| 52 |
### Training results
|
| 53 |
|
| 54 |
-
| Training Loss | Epoch | Step | Validation Loss | Logloss | Accuracy
|
| 55 |
-
|:-------------:|:-----:|:----:|:---------------:|:-------:|:-------------------:|
|
| 56 |
-
|
|
| 57 |
-
| 1.
|
| 58 |
-
| 1.
|
| 59 |
|
| 60 |
|
| 61 |
### Framework versions
|
|
|
|
| 17 |
|
| 18 |
This model is a fine-tuned version of [facebook/convnext-tiny-224](https://huggingface.co/facebook/convnext-tiny-224) on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
+
- Loss: 1.1361
|
| 21 |
+
- Logloss: 1.1361
|
| 22 |
+
- Accuracy: {'accuracy': 0.52}
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
|
|
| 51 |
|
| 52 |
### Training results
|
| 53 |
|
| 54 |
+
| Training Loss | Epoch | Step | Validation Loss | Logloss | Accuracy |
|
| 55 |
+
|:-------------:|:-----:|:----:|:---------------:|:-------:|:--------------------:|
|
| 56 |
+
| 1.5112 | 0.96 | 12 | 1.3027 | 1.3027 | {'accuracy': 0.4525} |
|
| 57 |
+
| 1.278 | 2.0 | 25 | 1.1611 | 1.1611 | {'accuracy': 0.51} |
|
| 58 |
+
| 1.18 | 2.88 | 36 | 1.1361 | 1.1361 | {'accuracy': 0.52} |
|
| 59 |
|
| 60 |
|
| 61 |
### Framework versions
|