DejanX13 commited on
Commit
12aa02c
·
verified ·
1 Parent(s): 781eb59

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +14 -14
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- language: sr
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
- - **dobre** (good condition)
23
- - **nepoznato** (unknown condition)
24
- - **oronule** (dilapidated condition)
25
- - **srednje** (medium condition)
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
- | dobre | 0.83 | 0.50 | 0.62 | 10 |
51
- | nepoznato | 1.00 | 0.83 | 0.91 | 24 |
52
- | oronule | 0.71 | 0.80 | 0.75 | 15 |
53
- | srednje | 0.73 | 0.87 | 0.79 | 31 |
54
 
55
  ### Confusion Matrix (Validation)
56
  ```
57
- [[ 5 0 0 5] # dobre
58
- [ 1 20 1 2] # nepoznato
59
- [ 0 0 12 3] # oronule
60
- [ 0 0 4 27]] # srednje
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 "dobre" (good condition) class
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