Neeravpawar commited on
Commit
40d5f7e
1 Parent(s): f90956a

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-base-patch16-224-in21k",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "arms_akimbo",
13
+ "1": "biting_nails",
14
+ "10": "illustrative_body_language",
15
+ "11": "minaret_gesture",
16
+ "12": "moving_torso",
17
+ "13": "playing_with_or_adjusting_hair",
18
+ "14": "playing_with_or_manipulating_objects",
19
+ "15": "pressing_lips",
20
+ "16": "putting_arms_behind_body",
21
+ "17": "rubbing_eyes",
22
+ "18": "rubbing_or_holding_hands",
23
+ "19": "scratching_back",
24
+ "2": "buckle_button,_pulling_shirt_collar,_adjusting_tie",
25
+ "20": "scratching_or_touching_arms",
26
+ "21": "shaking_shoulders",
27
+ "22": "sitting_upright",
28
+ "23": "touching_ears",
29
+ "24": "touching_hat",
30
+ "25": "touching_jaw",
31
+ "26": "touching_or_covering_suprasternal_notch",
32
+ "27": "touching_or_scratching_facial_parts",
33
+ "28": "touching_or_scratching_forehead",
34
+ "29": "touching_or_scratching_head",
35
+ "3": "bulging_face,_deep_breath",
36
+ "30": "touching_or_scratching_neck",
37
+ "31": "turtle_neck",
38
+ "4": "covering_face",
39
+ "5": "crossing_fingers",
40
+ "6": "dustoffing_clothes",
41
+ "7": "folding_arms",
42
+ "8": "head_up",
43
+ "9": "hold_back_arms"
44
+ },
45
+ "image_size": 224,
46
+ "initializer_range": 0.02,
47
+ "intermediate_size": 3072,
48
+ "label2id": {
49
+ "arms_akimbo": "0",
50
+ "biting_nails": "1",
51
+ "buckle_button,_pulling_shirt_collar,_adjusting_tie": "2",
52
+ "bulging_face,_deep_breath": "3",
53
+ "covering_face": "4",
54
+ "crossing_fingers": "5",
55
+ "dustoffing_clothes": "6",
56
+ "folding_arms": "7",
57
+ "head_up": "8",
58
+ "hold_back_arms": "9",
59
+ "illustrative_body_language": "10",
60
+ "minaret_gesture": "11",
61
+ "moving_torso": "12",
62
+ "playing_with_or_adjusting_hair": "13",
63
+ "playing_with_or_manipulating_objects": "14",
64
+ "pressing_lips": "15",
65
+ "putting_arms_behind_body": "16",
66
+ "rubbing_eyes": "17",
67
+ "rubbing_or_holding_hands": "18",
68
+ "scratching_back": "19",
69
+ "scratching_or_touching_arms": "20",
70
+ "shaking_shoulders": "21",
71
+ "sitting_upright": "22",
72
+ "touching_ears": "23",
73
+ "touching_hat": "24",
74
+ "touching_jaw": "25",
75
+ "touching_or_covering_suprasternal_notch": "26",
76
+ "touching_or_scratching_facial_parts": "27",
77
+ "touching_or_scratching_forehead": "28",
78
+ "touching_or_scratching_head": "29",
79
+ "touching_or_scratching_neck": "30",
80
+ "turtle_neck": "31"
81
+ },
82
+ "layer_norm_eps": 1e-12,
83
+ "model_type": "vit",
84
+ "num_attention_heads": 12,
85
+ "num_channels": 3,
86
+ "num_hidden_layers": 12,
87
+ "patch_size": 16,
88
+ "problem_type": "single_label_classification",
89
+ "qkv_bias": true,
90
+ "torch_dtype": "float32",
91
+ "transformers_version": "4.39.3"
92
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c90d1dab4edb373f449d54da947e11cf118cad02340e24da89d6a4903a99954a
3
+ size 343316264
preprocessor_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_rescale",
8
+ "rescale_factor",
9
+ "do_normalize",
10
+ "image_mean",
11
+ "image_std",
12
+ "return_tensors",
13
+ "data_format",
14
+ "input_data_format"
15
+ ],
16
+ "do_normalize": true,
17
+ "do_rescale": true,
18
+ "do_resize": true,
19
+ "image_mean": [
20
+ 0.5,
21
+ 0.5,
22
+ 0.5
23
+ ],
24
+ "image_processor_type": "ViTImageProcessor",
25
+ "image_std": [
26
+ 0.5,
27
+ 0.5,
28
+ 0.5
29
+ ],
30
+ "resample": 2,
31
+ "rescale_factor": 0.00392156862745098,
32
+ "size": {
33
+ "height": 224,
34
+ "width": 224
35
+ }
36
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30e63e21550f5956a323e28fc3a05748d52878f98e90f225db24697de80c629d
3
+ size 4920