synergyai-jaeung commited on
Commit
df34992
1 Parent(s): d6d4c97

Model save

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: microsoft/swin-tiny-patch4-window7-224
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - imagefolder
8
+ metrics:
9
+ - accuracy
10
+ - f1
11
+ model-index:
12
+ - name: swin-tiny-patch4-window7-224-finetuned-eurosat
13
+ results:
14
+ - task:
15
+ name: Image Classification
16
+ type: image-classification
17
+ dataset:
18
+ name: imagefolder
19
+ type: imagefolder
20
+ config: default
21
+ split: train
22
+ args: default
23
+ metrics:
24
+ - name: Accuracy
25
+ type: accuracy
26
+ value: 0.9803703703703703
27
+ - name: F1
28
+ type: f1
29
+ value: 0.9801864359704018
30
+ ---
31
+
32
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
33
+ should probably proofread and complete it, then remove this comment. -->
34
+
35
+ # swin-tiny-patch4-window7-224-finetuned-eurosat
36
+
37
+ This model is a fine-tuned version of [microsoft/swin-tiny-patch4-window7-224](https://huggingface.co/microsoft/swin-tiny-patch4-window7-224) on the imagefolder dataset.
38
+ It achieves the following results on the evaluation set:
39
+ - Loss: 0.0601
40
+ - Accuracy: 0.9804
41
+ - F1: 0.9802
42
+
43
+ ## Model description
44
+
45
+ More information needed
46
+
47
+ ## Intended uses & limitations
48
+
49
+ More information needed
50
+
51
+ ## Training and evaluation data
52
+
53
+ More information needed
54
+
55
+ ## Training procedure
56
+
57
+ ### Training hyperparameters
58
+
59
+ The following hyperparameters were used during training:
60
+ - learning_rate: 5e-05
61
+ - train_batch_size: 64
62
+ - eval_batch_size: 64
63
+ - seed: 42
64
+ - gradient_accumulation_steps: 4
65
+ - total_train_batch_size: 256
66
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
67
+ - lr_scheduler_type: linear
68
+ - lr_scheduler_warmup_ratio: 0.1
69
+ - num_epochs: 5
70
+
71
+ ### Training results
72
+
73
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
74
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
75
+ | 0.3306 | 1.0 | 95 | 0.1438 | 0.9563 | 0.9557 |
76
+ | 0.1922 | 2.0 | 190 | 0.0962 | 0.9704 | 0.9700 |
77
+ | 0.1749 | 3.0 | 285 | 0.0770 | 0.9752 | 0.9746 |
78
+ | 0.124 | 4.0 | 380 | 0.0646 | 0.9785 | 0.9782 |
79
+ | 0.1147 | 5.0 | 475 | 0.0601 | 0.9804 | 0.9802 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.41.1
85
+ - Pytorch 2.0.0+cu117
86
+ - Datasets 2.19.1
87
+ - Tokenizers 0.19.1