nhanv commited on
Commit
e34e0a8
1 Parent(s): 23f5fbc
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - image-classification
5
+ - vision
6
+ - generated_from_trainer
7
+ datasets:
8
+ - imagefolder
9
+ metrics:
10
+ - accuracy
11
+ model-index:
12
+ - name: outputs
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.9107332624867163
27
+ ---
28
+
29
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
30
+ should probably proofread and complete it, then remove this comment. -->
31
+
32
+ # outputs
33
+
34
+ This model is a fine-tuned version of [microsoft/beit-base-patch16-224-pt22k-ft22k](https://huggingface.co/microsoft/beit-base-patch16-224-pt22k-ft22k) on the imagefolder dataset.
35
+ It achieves the following results on the evaluation set:
36
+ - Loss: 0.2170
37
+ - Accuracy: 0.9107
38
+
39
+ ## Model description
40
+
41
+ More information needed
42
+
43
+ ## Intended uses & limitations
44
+
45
+ More information needed
46
+
47
+ ## Training and evaluation data
48
+
49
+ More information needed
50
+
51
+ ## Training procedure
52
+
53
+ ### Training hyperparameters
54
+
55
+ The following hyperparameters were used during training:
56
+ - learning_rate: 2e-05
57
+ - train_batch_size: 8
58
+ - eval_batch_size: 8
59
+ - seed: 1337
60
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
61
+ - lr_scheduler_type: linear
62
+ - num_epochs: 5.0
63
+
64
+ ### Training results
65
+
66
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
67
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|
68
+ | 0.5193 | 1.0 | 2000 | 0.3346 | 0.8533 |
69
+ | 0.337 | 2.0 | 4000 | 0.2892 | 0.8778 |
70
+ | 0.3771 | 3.0 | 6000 | 0.2493 | 0.8969 |
71
+ | 0.3819 | 4.0 | 8000 | 0.2275 | 0.9100 |
72
+ | 0.3581 | 5.0 | 10000 | 0.2170 | 0.9107 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.24.0.dev0
78
+ - Pytorch 1.12.1+cu113
79
+ - Datasets 2.6.1
80
+ - Tokenizers 0.13.1
all_results.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 5.0,
3
+ "eval_accuracy": 0.9107332624867163,
4
+ "eval_loss": 0.21704278886318207,
5
+ "eval_runtime": 12.0095,
6
+ "eval_samples_per_second": 235.064,
7
+ "eval_steps_per_second": 29.393,
8
+ "train_loss": 0.4213516190290451,
9
+ "train_runtime": 1040.551,
10
+ "train_samples_per_second": 76.858,
11
+ "train_steps_per_second": 9.61
12
+ }
config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/beit-base-patch16-224-pt22k-ft22k",
3
+ "architectures": [
4
+ "BeitForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "auxiliary_channels": 256,
8
+ "auxiliary_concat_input": false,
9
+ "auxiliary_loss_weight": 0.4,
10
+ "auxiliary_num_convs": 1,
11
+ "drop_path_rate": 0.1,
12
+ "finetuning_task": "image-classification",
13
+ "hidden_act": "gelu",
14
+ "hidden_dropout_prob": 0.0,
15
+ "hidden_size": 768,
16
+ "id2label": {
17
+ "0": "Female",
18
+ "1": "Male"
19
+ },
20
+ "image_size": 224,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 3072,
23
+ "label2id": {
24
+ "Female": "0",
25
+ "Male": "1"
26
+ },
27
+ "layer_norm_eps": 1e-12,
28
+ "layer_scale_init_value": 0.1,
29
+ "model_type": "beit",
30
+ "num_attention_heads": 12,
31
+ "num_channels": 3,
32
+ "num_hidden_layers": 12,
33
+ "out_indices": [
34
+ 3,
35
+ 5,
36
+ 7,
37
+ 11
38
+ ],
39
+ "patch_size": 16,
40
+ "pool_scales": [
41
+ 1,
42
+ 2,
43
+ 3,
44
+ 6
45
+ ],
46
+ "problem_type": "single_label_classification",
47
+ "semantic_loss_ignore_index": 255,
48
+ "torch_dtype": "float32",
49
+ "transformers_version": "4.24.0.dev0",
50
+ "use_absolute_position_embeddings": false,
51
+ "use_auxiliary_head": true,
52
+ "use_mask_token": false,
53
+ "use_mean_pooling": true,
54
+ "use_relative_position_bias": true,
55
+ "use_shared_relative_position_bias": false,
56
+ "vocab_size": 8192
57
+ }
emissions.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ timestamp,experiment_id,project_name,duration,emissions,energy_consumed,country_name,country_iso_code,region,on_cloud,cloud_provider,cloud_region
2
+ 2023-01-06T04:21:59,6f267fc3-7da5-4884-830d-71f0c8057ca4,codecarbon,1043.5702650547028,0.07675515188614081,0.10504157083518204,Vietnam,VNM,hanoi,N,,
eval_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 5.0,
3
+ "eval_accuracy": 0.9107332624867163,
4
+ "eval_loss": 0.21704278886318207,
5
+ "eval_runtime": 12.0095,
6
+ "eval_samples_per_second": 235.064,
7
+ "eval_steps_per_second": 29.393
8
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": 224,
3
+ "do_center_crop": false,
4
+ "do_normalize": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "BeitFeatureExtractor",
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_std": [
13
+ 0.5,
14
+ 0.5,
15
+ 0.5
16
+ ],
17
+ "reduce_labels": false,
18
+ "resample": 2,
19
+ "size": 224
20
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27019770f69fc40299f50bd2bd6ed78a143e68851e836fab4e465417617d6dd3
3
+ size 346858475
train_results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 5.0,
3
+ "train_loss": 0.4213516190290451,
4
+ "train_runtime": 1040.551,
5
+ "train_samples_per_second": 76.858,
6
+ "train_steps_per_second": 9.61
7
+ }
trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfde58b2726b2f742b3a9e7d84dd685bb25d7c69dc8031471078d82fedf0797a
3
+ size 3375