Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +66 -0
- preprocessor_config.json +20 -0
- pytorch_model.bin +3 -0
- runs/Jan27_16-01-39_7536e74eae36/1674835310.4939938/events.out.tfevents.1674835310.7536e74eae36.23.1 +3 -0
- runs/Jan27_16-01-39_7536e74eae36/events.out.tfevents.1674835310.7536e74eae36.23.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "lixiqi/beit-base-patch16-224-pt22k-ft22k-finetuned-FER2013-7e-05",
|
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 |
+
"hidden_act": "gelu",
|
13 |
+
"hidden_dropout_prob": 0.0,
|
14 |
+
"hidden_size": 768,
|
15 |
+
"id2label": {
|
16 |
+
"0": "Angry",
|
17 |
+
"1": "Disgust",
|
18 |
+
"2": "Fear",
|
19 |
+
"3": "Happy",
|
20 |
+
"4": "Neutral",
|
21 |
+
"5": "Sad",
|
22 |
+
"6": "Surprise"
|
23 |
+
},
|
24 |
+
"image_size": 224,
|
25 |
+
"initializer_range": 0.02,
|
26 |
+
"intermediate_size": 3072,
|
27 |
+
"label2id": {
|
28 |
+
"Angry": 0,
|
29 |
+
"Disgust": 1,
|
30 |
+
"Fear": 2,
|
31 |
+
"Happy": 3,
|
32 |
+
"Neutral": 4,
|
33 |
+
"Sad": 5,
|
34 |
+
"Surprise": 6
|
35 |
+
},
|
36 |
+
"layer_norm_eps": 1e-12,
|
37 |
+
"layer_scale_init_value": 0.1,
|
38 |
+
"model_type": "beit",
|
39 |
+
"num_attention_heads": 12,
|
40 |
+
"num_channels": 3,
|
41 |
+
"num_hidden_layers": 12,
|
42 |
+
"out_indices": [
|
43 |
+
3,
|
44 |
+
5,
|
45 |
+
7,
|
46 |
+
11
|
47 |
+
],
|
48 |
+
"patch_size": 16,
|
49 |
+
"pool_scales": [
|
50 |
+
1,
|
51 |
+
2,
|
52 |
+
3,
|
53 |
+
6
|
54 |
+
],
|
55 |
+
"problem_type": "single_label_classification",
|
56 |
+
"semantic_loss_ignore_index": 255,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.20.1",
|
59 |
+
"use_absolute_position_embeddings": false,
|
60 |
+
"use_auxiliary_head": true,
|
61 |
+
"use_mask_token": false,
|
62 |
+
"use_mean_pooling": true,
|
63 |
+
"use_relative_position_bias": true,
|
64 |
+
"use_shared_relative_position_bias": false,
|
65 |
+
"vocab_size": 8192
|
66 |
+
}
|
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:f044d42ccadb280377dae3e3e3d8fba9c4a70f97e2e7c03a7129d5fc0ce7b98b
|
3 |
+
size 346873835
|
runs/Jan27_16-01-39_7536e74eae36/1674835310.4939938/events.out.tfevents.1674835310.7536e74eae36.23.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc197899fef116a66fa33e587e518de402daf999d6361f318a564a56c631f8a0
|
3 |
+
size 5529
|
runs/Jan27_16-01-39_7536e74eae36/events.out.tfevents.1674835310.7536e74eae36.23.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48e27ba897c71b184d1bdd450101f6962cc37e6fe27113c7d0ca14f1588ce167
|
3 |
+
size 5092
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8617744136e28b53dc0195efcc0d3e86cefc2869c9fd6040733fe1344b887b7b
|
3 |
+
size 3439
|