Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +80 -0
- preprocessor_config.json +26 -0
- pytorch_model.bin +3 -0
- runs/Oct11_22-14-35_continualai-vps/events.out.tfevents.1697062485.continualai-vps.2236660.1 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/timesformer-base-finetuned-k400",
|
3 |
+
"architectures": [
|
4 |
+
"TimesformerForVideoClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"attention_type": "divided_space_time",
|
8 |
+
"drop_path_rate": 0,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.0,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "Swing",
|
14 |
+
"1": "SumoWrestling",
|
15 |
+
"2": "PullUps",
|
16 |
+
"3": "PlayingGuitar",
|
17 |
+
"4": "BodyWeightSquats",
|
18 |
+
"5": "PushUps",
|
19 |
+
"6": "IceDancing",
|
20 |
+
"7": "BabyCrawling",
|
21 |
+
"8": "GolfSwing",
|
22 |
+
"9": "BreastStroke",
|
23 |
+
"10": "HighJump",
|
24 |
+
"11": "TennisSwing",
|
25 |
+
"12": "SkyDiving",
|
26 |
+
"13": "Bowling",
|
27 |
+
"14": "HulaHoop",
|
28 |
+
"15": "Skiing",
|
29 |
+
"16": "WritingOnBoard",
|
30 |
+
"17": "Archery",
|
31 |
+
"18": "Shotput",
|
32 |
+
"19": "UnevenBars",
|
33 |
+
"20": "FieldHockeyPenalty",
|
34 |
+
"21": "HorseRace",
|
35 |
+
"22": "SoccerJuggling",
|
36 |
+
"23": "PlayingDhol",
|
37 |
+
"24": "VolleyballSpiking"
|
38 |
+
},
|
39 |
+
"image_size": 224,
|
40 |
+
"initializer_range": 0.02,
|
41 |
+
"intermediate_size": 3072,
|
42 |
+
"label2id": {
|
43 |
+
"Archery": 17,
|
44 |
+
"BabyCrawling": 7,
|
45 |
+
"BodyWeightSquats": 4,
|
46 |
+
"Bowling": 13,
|
47 |
+
"BreastStroke": 9,
|
48 |
+
"FieldHockeyPenalty": 20,
|
49 |
+
"GolfSwing": 8,
|
50 |
+
"HighJump": 10,
|
51 |
+
"HorseRace": 21,
|
52 |
+
"HulaHoop": 14,
|
53 |
+
"IceDancing": 6,
|
54 |
+
"PlayingDhol": 23,
|
55 |
+
"PlayingGuitar": 3,
|
56 |
+
"PullUps": 2,
|
57 |
+
"PushUps": 5,
|
58 |
+
"Shotput": 18,
|
59 |
+
"Skiing": 15,
|
60 |
+
"SkyDiving": 12,
|
61 |
+
"SoccerJuggling": 22,
|
62 |
+
"SumoWrestling": 1,
|
63 |
+
"Swing": 0,
|
64 |
+
"TennisSwing": 11,
|
65 |
+
"UnevenBars": 19,
|
66 |
+
"VolleyballSpiking": 24,
|
67 |
+
"WritingOnBoard": 16
|
68 |
+
},
|
69 |
+
"layer_norm_eps": 1e-06,
|
70 |
+
"model_type": "timesformer",
|
71 |
+
"num_attention_heads": 12,
|
72 |
+
"num_channels": 3,
|
73 |
+
"num_frames": 8,
|
74 |
+
"num_hidden_layers": 12,
|
75 |
+
"patch_size": 16,
|
76 |
+
"problem_type": "single_label_classification",
|
77 |
+
"qkv_bias": true,
|
78 |
+
"torch_dtype": "float32",
|
79 |
+
"transformers_version": "4.31.0"
|
80 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"image_mean": [
|
11 |
+
0.45,
|
12 |
+
0.45,
|
13 |
+
0.45
|
14 |
+
],
|
15 |
+
"image_processor_type": "VideoMAEImageProcessor",
|
16 |
+
"image_std": [
|
17 |
+
0.225,
|
18 |
+
0.225,
|
19 |
+
0.225
|
20 |
+
],
|
21 |
+
"resample": 2,
|
22 |
+
"rescale_factor": 0.00392156862745098,
|
23 |
+
"size": {
|
24 |
+
"shortest_edge": 224
|
25 |
+
}
|
26 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4aa149788f7a14c25d64811231d2a35f8f14dd688d8540fe07a91a5f1535413
|
3 |
+
size 490012921
|
runs/Oct11_22-14-35_continualai-vps/events.out.tfevents.1697062485.continualai-vps.2236660.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a12f356d76b5901be457977157370266151c3d6360fbcc4477d182db5ccc0fdf
|
3 |
+
size 23480
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9822a621b0323dc45e7b77b902b71bb52cdec067e404b00a66f9f8687374ae40
|
3 |
+
size 4091
|