Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
| 5 |
- image-classification
|
|
@@ -19,10 +19,10 @@ This model is a fine-tuned version of [google/vit-base-patch16-224-in21k](https:
|
|
| 19 |
## Model Description
|
| 20 |
|
| 21 |
This Vision Transformer (ViT) model has been fine-tuned to classify house images into four condition categories:
|
| 22 |
-
- **
|
| 23 |
-
- **
|
| 24 |
-
- **
|
| 25 |
-
- **
|
| 26 |
|
| 27 |
## Training Details
|
| 28 |
|
|
@@ -47,17 +47,17 @@ This Vision Transformer (ViT) model has been fine-tuned to classify house images
|
|
| 47 |
### Per-Class Metrics (Validation)
|
| 48 |
| Class | Precision | Recall | F1-Score | Support |
|
| 49 |
|------------|-----------|--------|----------|----------|
|
| 50 |
-
|
|
| 51 |
-
|
|
| 52 |
-
|
|
| 53 |
-
|
|
| 54 |
|
| 55 |
### Confusion Matrix (Validation)
|
| 56 |
```
|
| 57 |
-
[[ 5 0 0 5] #
|
| 58 |
-
[ 1 20 1 2] #
|
| 59 |
-
[ 0 0 12 3] #
|
| 60 |
-
[ 0 0 4 27]] #
|
| 61 |
```
|
| 62 |
|
| 63 |
## Usage
|
|
@@ -94,7 +94,7 @@ for idx, prob in enumerate(probs):
|
|
| 94 |
## Limitations and Bias
|
| 95 |
|
| 96 |
- The model was trained on a specific dataset of house images and may not generalize well to different architectural styles or regions
|
| 97 |
-
- Performance varies by class, with lower recall for the "
|
| 98 |
- The model may have difficulty distinguishing between similar condition categories
|
| 99 |
- Training set is relatively small (757 images)
|
| 100 |
|
|
|
|
| 1 |
---
|
| 2 |
+
language: eng
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
| 5 |
- image-classification
|
|
|
|
| 19 |
## Model Description
|
| 20 |
|
| 21 |
This Vision Transformer (ViT) model has been fine-tuned to classify house images into four condition categories:
|
| 22 |
+
- **good**
|
| 23 |
+
- **unknown**
|
| 24 |
+
- **ruined**
|
| 25 |
+
- **medium**
|
| 26 |
|
| 27 |
## Training Details
|
| 28 |
|
|
|
|
| 47 |
### Per-Class Metrics (Validation)
|
| 48 |
| Class | Precision | Recall | F1-Score | Support |
|
| 49 |
|------------|-----------|--------|----------|----------|
|
| 50 |
+
| good | 0.83 | 0.50 | 0.62 | 10 |
|
| 51 |
+
| unknown | 1.00 | 0.83 | 0.91 | 24 |
|
| 52 |
+
| ruined | 0.71 | 0.80 | 0.75 | 15 |
|
| 53 |
+
| medium | 0.73 | 0.87 | 0.79 | 31 |
|
| 54 |
|
| 55 |
### Confusion Matrix (Validation)
|
| 56 |
```
|
| 57 |
+
[[ 5 0 0 5] # good
|
| 58 |
+
[ 1 20 1 2] # unknown
|
| 59 |
+
[ 0 0 12 3] # ruined
|
| 60 |
+
[ 0 0 4 27]] # medium
|
| 61 |
```
|
| 62 |
|
| 63 |
## Usage
|
|
|
|
| 94 |
## Limitations and Bias
|
| 95 |
|
| 96 |
- The model was trained on a specific dataset of house images and may not generalize well to different architectural styles or regions
|
| 97 |
+
- Performance varies by class, with lower recall for the "good" (good condition) class
|
| 98 |
- The model may have difficulty distinguishing between similar condition categories
|
| 99 |
- Training set is relatively small (757 images)
|
| 100 |
|