richardschattner commited on
Commit
3569cf1
·
verified ·
1 Parent(s): c62c87b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -1,3 +1,19 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ metrics:
4
+ - accuracy
5
+ ---
6
+
7
+ # Image Scenery Classification
8
+ This model is built on the efficientnet_b2 architecture.
9
+ The model uses pretrained weights of the model found in the torchvision.models library.
10
+ The classification head was changed, to be a dropout layer, followed by a linear layer with 6 target classes.
11
+ Using transfer learning, the model was then trained on the [intel image dataset.](https://www.kaggle.com/datasets/puneet6060/intel-image-classification)
12
+
13
+ #### Performance
14
+ The model achieved a test accuracy of 89,67%.
15
+ Misclassified images are often times ambiguous, such as a snowy mountain, being classified as 'glacier'.
16
+ The model architecture is quite simple, when compared to SOTA architectures and produces fast predictions.
17
+ A prediction on the hugging face space, hosted on the free cpu, takes about 0.2 seconds.
18
+
19
+ The code is original and written by me.