Training in progress, epoch 0
Browse files
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "ak3ra/videomae-base-finetuned-kinetics-finetuned-ntu-model",
|
3 |
+
"architectures": [
|
4 |
+
"VideoMAEForVideoClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"decoder_hidden_size": 384,
|
8 |
+
"decoder_intermediate_size": 1536,
|
9 |
+
"decoder_num_attention_heads": 6,
|
10 |
+
"decoder_num_hidden_layers": 4,
|
11 |
+
"hidden_act": "gelu",
|
12 |
+
"hidden_dropout_prob": 0.0,
|
13 |
+
"hidden_size": 768,
|
14 |
+
"id2label": {
|
15 |
+
"0": "back_pain",
|
16 |
+
"1": "chest_pain",
|
17 |
+
"2": "drink_water",
|
18 |
+
"3": "eat_meal",
|
19 |
+
"4": "falling_down",
|
20 |
+
"5": "hand_waving",
|
21 |
+
"6": "headache",
|
22 |
+
"7": "nausea_vomiting",
|
23 |
+
"8": "neck_pain",
|
24 |
+
"9": "play_with_phone_tablet",
|
25 |
+
"10": "put_on_jacket",
|
26 |
+
"11": "reading",
|
27 |
+
"12": "sit_down",
|
28 |
+
"13": "sneeze_cough",
|
29 |
+
"14": "staggering",
|
30 |
+
"15": "stand_up",
|
31 |
+
"16": "take_off_jacket"
|
32 |
+
},
|
33 |
+
"image_size": 224,
|
34 |
+
"initializer_range": 0.02,
|
35 |
+
"intermediate_size": 3072,
|
36 |
+
"label2id": {
|
37 |
+
"back_pain": 0,
|
38 |
+
"chest_pain": 1,
|
39 |
+
"drink_water": 2,
|
40 |
+
"eat_meal": 3,
|
41 |
+
"falling_down": 4,
|
42 |
+
"hand_waving": 5,
|
43 |
+
"headache": 6,
|
44 |
+
"nausea_vomiting": 7,
|
45 |
+
"neck_pain": 8,
|
46 |
+
"play_with_phone_tablet": 9,
|
47 |
+
"put_on_jacket": 10,
|
48 |
+
"reading": 11,
|
49 |
+
"sit_down": 12,
|
50 |
+
"sneeze_cough": 13,
|
51 |
+
"staggering": 14,
|
52 |
+
"stand_up": 15,
|
53 |
+
"take_off_jacket": 16
|
54 |
+
},
|
55 |
+
"layer_norm_eps": 1e-12,
|
56 |
+
"model_type": "videomae",
|
57 |
+
"norm_pix_loss": false,
|
58 |
+
"num_attention_heads": 12,
|
59 |
+
"num_channels": 3,
|
60 |
+
"num_frames": 16,
|
61 |
+
"num_hidden_layers": 12,
|
62 |
+
"patch_size": 16,
|
63 |
+
"problem_type": "single_label_classification",
|
64 |
+
"qkv_bias": true,
|
65 |
+
"torch_dtype": "float32",
|
66 |
+
"transformers_version": "4.27.0.dev0",
|
67 |
+
"tubelet_size": 2,
|
68 |
+
"use_mean_pooling": true
|
69 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 224,
|
4 |
+
"width": 224
|
5 |
+
},
|
6 |
+
"do_center_crop": true,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_rescale": true,
|
9 |
+
"do_resize": true,
|
10 |
+
"feature_extractor_type": "VideoMAEFeatureExtractor",
|
11 |
+
"image_mean": [
|
12 |
+
0.485,
|
13 |
+
0.456,
|
14 |
+
0.406
|
15 |
+
],
|
16 |
+
"image_processor_type": "VideoMAEImageProcessor",
|
17 |
+
"image_std": [
|
18 |
+
0.229,
|
19 |
+
0.224,
|
20 |
+
0.225
|
21 |
+
],
|
22 |
+
"resample": 2,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"shortest_edge": 224
|
26 |
+
}
|
27 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35db97db325ed69838013c626e209c69d12b60d02741d8bb4d43aa84326b1b94
|
3 |
+
size 345022453
|
runs/Jun21_11-28-26_cn-c016/1687361319.8229642/events.out.tfevents.1687361319.cn-c016
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:43b5aa05648b5c7559f6b362d555a3ba46808d286f3bf0b657ecba84c7eb9dbd
|
3 |
+
size 5635
|
runs/Jun21_11-28-26_cn-c016/events.out.tfevents.1687361319.cn-c016
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b8a7677e3a2f3feadea4907a7e8c1e4420df82483b638694dc49ba04cf04fe1
|
3 |
+
size 15584
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1fa558efbb35925fa67c4d34dc5d424b480262d0b69479be7b87c4feeaec7ba6
|
3 |
+
size 3643
|