eugenecamus commited on
Commit
09aa4aa
1 Parent(s): f0dc59b

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - beans
6
+ metrics:
7
+ - accuracy
8
+ model-index:
9
+ - name: resnet-50-base-beans-demo
10
+ results:
11
+ - task:
12
+ name: Image Classification
13
+ type: image-classification
14
+ dataset:
15
+ name: beans
16
+ type: beans
17
+ args: default
18
+ metrics:
19
+ - name: Accuracy
20
+ type: accuracy
21
+ value: 0.9924812030075187
22
+ ---
23
+
24
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
25
+ should probably proofread and complete it, then remove this comment. -->
26
+
27
+ # resnet-50-base-beans-demo
28
+
29
+ This model is a fine-tuned version of [microsoft/resnet-50](https://huggingface.co/microsoft/resnet-50) on the beans dataset.
30
+ It achieves the following results on the evaluation set:
31
+ - Loss: 0.0429
32
+ - Accuracy: 0.9925
33
+
34
+ ## Model description
35
+
36
+ More information needed
37
+
38
+ ## Intended uses & limitations
39
+
40
+ More information needed
41
+
42
+ ## Training and evaluation data
43
+
44
+ More information needed
45
+
46
+ ## Training procedure
47
+
48
+ ### Training hyperparameters
49
+
50
+ The following hyperparameters were used during training:
51
+ - learning_rate: 0.002
52
+ - train_batch_size: 8
53
+ - eval_batch_size: 8
54
+ - seed: 1337
55
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
56
+ - lr_scheduler_type: cosine
57
+ - lr_scheduler_warmup_ratio: 0.1
58
+ - num_epochs: 5.0
59
+
60
+ ### Training results
61
+
62
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
63
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|
64
+ | 0.7703 | 1.0 | 130 | 1.2238 | 0.5263 |
65
+ | 0.4905 | 2.0 | 260 | 0.5193 | 0.8271 |
66
+ | 0.4793 | 3.0 | 390 | 0.1421 | 0.9699 |
67
+ | 0.2986 | 4.0 | 520 | 0.0760 | 0.9624 |
68
+ | 0.1927 | 5.0 | 650 | 0.0429 | 0.9925 |
69
+
70
+
71
+ ### Framework versions
72
+
73
+ - Transformers 4.19.2
74
+ - Pytorch 1.11.0+cu102
75
+ - Datasets 2.2.1
76
+ - Tokenizers 0.12.1