IsraelSonseca
commited on
Commit
•
a616f2f
1
Parent(s):
f933c8e
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +62 -0
- preprocessor_config.json +26 -0
- pytorch_model.bin +3 -0
- runs/May25_22-54-24_008ab837cbeb/1685055359.78372/events.out.tfevents.1685055359.008ab837cbeb.5982.1 +3 -0
- runs/May25_22-54-24_008ab837cbeb/events.out.tfevents.1685055359.008ab837cbeb.5982.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "basketball_layup",
|
14 |
+
"1": "bowling",
|
15 |
+
"2": "clean_and_jerk",
|
16 |
+
"3": "discus_throw",
|
17 |
+
"4": "diving_platfrom_10m",
|
18 |
+
"5": "diving_springboard_3m",
|
19 |
+
"6": "hammer_throw",
|
20 |
+
"7": "high_jump",
|
21 |
+
"8": "javelin_throw",
|
22 |
+
"9": "long_jump",
|
23 |
+
"10": "pole_vault",
|
24 |
+
"11": "shot_put",
|
25 |
+
"12": "snatch",
|
26 |
+
"13": "tennis_serve",
|
27 |
+
"14": "triple_jump",
|
28 |
+
"15": "vault"
|
29 |
+
},
|
30 |
+
"image_size": 224,
|
31 |
+
"initializer_range": 0.02,
|
32 |
+
"intermediate_size": 3072,
|
33 |
+
"label2id": {
|
34 |
+
"basketball_layup": 0,
|
35 |
+
"bowling": 1,
|
36 |
+
"clean_and_jerk": 2,
|
37 |
+
"discus_throw": 3,
|
38 |
+
"diving_platfrom_10m": 4,
|
39 |
+
"diving_springboard_3m": 5,
|
40 |
+
"hammer_throw": 6,
|
41 |
+
"high_jump": 7,
|
42 |
+
"javelin_throw": 8,
|
43 |
+
"long_jump": 9,
|
44 |
+
"pole_vault": 10,
|
45 |
+
"shot_put": 11,
|
46 |
+
"snatch": 12,
|
47 |
+
"tennis_serve": 13,
|
48 |
+
"triple_jump": 14,
|
49 |
+
"vault": 15
|
50 |
+
},
|
51 |
+
"layer_norm_eps": 1e-06,
|
52 |
+
"model_type": "timesformer",
|
53 |
+
"num_attention_heads": 12,
|
54 |
+
"num_channels": 3,
|
55 |
+
"num_frames": 8,
|
56 |
+
"num_hidden_layers": 12,
|
57 |
+
"patch_size": 16,
|
58 |
+
"problem_type": "single_label_classification",
|
59 |
+
"qkv_bias": true,
|
60 |
+
"torch_dtype": "float32",
|
61 |
+
"transformers_version": "4.29.2"
|
62 |
+
}
|
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.485,
|
12 |
+
0.456,
|
13 |
+
0.406
|
14 |
+
],
|
15 |
+
"image_processor_type": "VideoMAEImageProcessor",
|
16 |
+
"image_std": [
|
17 |
+
0.229,
|
18 |
+
0.224,
|
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:b11daf2350ed6e1ba329f9de7ff7e1e2458629e79222817438c1dce181f3165a
|
3 |
+
size 485167537
|
runs/May25_22-54-24_008ab837cbeb/1685055359.78372/events.out.tfevents.1685055359.008ab837cbeb.5982.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bffadad154bd61e5a986caa94d64f0504f4739ccbdac4a153ff20bdb8352dae
|
3 |
+
size 6055
|
runs/May25_22-54-24_008ab837cbeb/events.out.tfevents.1685055359.008ab837cbeb.5982.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2a7f0d0af4e61355ffa52c3d6882d6827d04d488cdd43f55a18d45410dfa43c
|
3 |
+
size 8238
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d95b27dc67db636f99846b7a2d7376041fbcada48a5fef1caa3c3f73cebca11
|
3 |
+
size 4027
|