Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +55 -0
- preprocessor_config.json +27 -0
- pytorch_model.bin +3 -0
- runs/Jan17_15-33-22_4820e4e1385b/1673969881.1947658/events.out.tfevents.1673969881.4820e4e1385b.349.1 +3 -0
- runs/Jan17_15-33-22_4820e4e1385b/events.out.tfevents.1673969881.4820e4e1385b.349.0 +3 -0
- runs/Jan17_15-38-27_4820e4e1385b/1673969917.7994971/events.out.tfevents.1673969917.4820e4e1385b.349.3 +3 -0
- runs/Jan17_15-38-27_4820e4e1385b/events.out.tfevents.1673969917.4820e4e1385b.349.2 +3 -0
- runs/Jan17_15-38-47_4820e4e1385b/1673969936.6592581/events.out.tfevents.1673969936.4820e4e1385b.349.5 +3 -0
- runs/Jan17_15-38-47_4820e4e1385b/1673969981.0298927/events.out.tfevents.1673969981.4820e4e1385b.349.6 +3 -0
- runs/Jan17_15-38-47_4820e4e1385b/events.out.tfevents.1673969936.4820e4e1385b.349.4 +3 -0
- runs/Jan17_15-42-21_4820e4e1385b/1673970150.4882467/events.out.tfevents.1673970150.4820e4e1385b.349.8 +3 -0
- runs/Jan17_15-42-21_4820e4e1385b/events.out.tfevents.1673970150.4820e4e1385b.349.7 +3 -0
- runs/Jan17_15-42-44_4820e4e1385b/1673970176.9028435/events.out.tfevents.1673970176.4820e4e1385b.349.10 +3 -0
- runs/Jan17_15-42-44_4820e4e1385b/1673970348.98907/events.out.tfevents.1673970348.4820e4e1385b.349.11 +3 -0
- runs/Jan17_15-42-44_4820e4e1385b/1673970510.7734654/events.out.tfevents.1673970510.4820e4e1385b.349.12 +3 -0
- runs/Jan17_15-42-44_4820e4e1385b/events.out.tfevents.1673970176.4820e4e1385b.349.9 +3 -0
- runs/Jan17_15-49-10_4820e4e1385b/1673970560.3607755/events.out.tfevents.1673970560.4820e4e1385b.4928.1 +3 -0
- runs/Jan17_15-49-10_4820e4e1385b/events.out.tfevents.1673970560.4820e4e1385b.4928.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "MCG-NJU/videomae-base",
|
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": "ApplyEyeMakeup",
|
16 |
+
"1": "ApplyLipstick",
|
17 |
+
"2": "Archery",
|
18 |
+
"3": "BabyCrawling",
|
19 |
+
"4": "BalanceBeam",
|
20 |
+
"5": "BandMarching",
|
21 |
+
"6": "BaseballPitch",
|
22 |
+
"7": "Basketball",
|
23 |
+
"8": "BasketballDunk",
|
24 |
+
"9": "BenchPress"
|
25 |
+
},
|
26 |
+
"image_size": 224,
|
27 |
+
"initializer_range": 0.02,
|
28 |
+
"intermediate_size": 3072,
|
29 |
+
"label2id": {
|
30 |
+
"ApplyEyeMakeup": 0,
|
31 |
+
"ApplyLipstick": 1,
|
32 |
+
"Archery": 2,
|
33 |
+
"BabyCrawling": 3,
|
34 |
+
"BalanceBeam": 4,
|
35 |
+
"BandMarching": 5,
|
36 |
+
"BaseballPitch": 6,
|
37 |
+
"Basketball": 7,
|
38 |
+
"BasketballDunk": 8,
|
39 |
+
"BenchPress": 9
|
40 |
+
},
|
41 |
+
"layer_norm_eps": 1e-12,
|
42 |
+
"model_type": "videomae",
|
43 |
+
"norm_pix_loss": true,
|
44 |
+
"num_attention_heads": 12,
|
45 |
+
"num_channels": 3,
|
46 |
+
"num_frames": 16,
|
47 |
+
"num_hidden_layers": 12,
|
48 |
+
"patch_size": 16,
|
49 |
+
"problem_type": "single_label_classification",
|
50 |
+
"qkv_bias": true,
|
51 |
+
"torch_dtype": "float32",
|
52 |
+
"transformers_version": "4.25.1",
|
53 |
+
"tubelet_size": 2,
|
54 |
+
"use_mean_pooling": false
|
55 |
+
}
|
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:3da1653bc459a449b0469a8abb99e195eb42985115d11f6312f172bd7d028b17
|
3 |
+
size 345003509
|
runs/Jan17_15-33-22_4820e4e1385b/1673969881.1947658/events.out.tfevents.1673969881.4820e4e1385b.349.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3297221c9f69cf319ac4e17ef0d6556fa20320f2afc4a118ea5550ad40da305e
|
3 |
+
size 5570
|
runs/Jan17_15-33-22_4820e4e1385b/events.out.tfevents.1673969881.4820e4e1385b.349.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b8263e59449c5e173e083d061ba0f686ee03a655e6f9851dedeec2ff56c59376
|
3 |
+
size 4422
|
runs/Jan17_15-38-27_4820e4e1385b/1673969917.7994971/events.out.tfevents.1673969917.4820e4e1385b.349.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f21778914dd991cbf18cecb988ac1dcfd82bef9c97597c796ec82f2e52b73ed5
|
3 |
+
size 5570
|
runs/Jan17_15-38-27_4820e4e1385b/events.out.tfevents.1673969917.4820e4e1385b.349.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:551973b4deae6da326879133fbb6020ded882c115a3c0dda2357507f4f32c6fc
|
3 |
+
size 4421
|
runs/Jan17_15-38-47_4820e4e1385b/1673969936.6592581/events.out.tfevents.1673969936.4820e4e1385b.349.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efb63d3550fe649446d92972de004148a2ca70f3ff39b9c59ba65aa6ea709dcb
|
3 |
+
size 5570
|
runs/Jan17_15-38-47_4820e4e1385b/1673969981.0298927/events.out.tfevents.1673969981.4820e4e1385b.349.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:20249626f20a0fbfddf4f468624b82980c844165235d7ce938f7225686afc7c0
|
3 |
+
size 5570
|
runs/Jan17_15-38-47_4820e4e1385b/events.out.tfevents.1673969936.4820e4e1385b.349.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f181e29f620e83e81862e533e42039705d40ecdfb0f6c30610b1676b445b612
|
3 |
+
size 8804
|
runs/Jan17_15-42-21_4820e4e1385b/1673970150.4882467/events.out.tfevents.1673970150.4820e4e1385b.349.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c1cf6318e022e59e03911b4a9947533dc555f66c1fd76313af3ac13756d9493
|
3 |
+
size 5570
|
runs/Jan17_15-42-21_4820e4e1385b/events.out.tfevents.1673970150.4820e4e1385b.349.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:137574d2631d8b2b2859a5b14d71e8f92c108744c60b9cefc381c34448d4126a
|
3 |
+
size 4421
|
runs/Jan17_15-42-44_4820e4e1385b/1673970176.9028435/events.out.tfevents.1673970176.4820e4e1385b.349.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4cb98a97d052f69271a972c26ada89b4c58b72fffd9ef2bac0f99a69c02f74a8
|
3 |
+
size 5570
|
runs/Jan17_15-42-44_4820e4e1385b/1673970348.98907/events.out.tfevents.1673970348.4820e4e1385b.349.11
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:57e335eca2942361e7be281cd9bc810105e01cc6ba6bb4442ce008a933d946df
|
3 |
+
size 5570
|
runs/Jan17_15-42-44_4820e4e1385b/1673970510.7734654/events.out.tfevents.1673970510.4820e4e1385b.349.12
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6e51e9d267f68b60f1c790fa7e1438623932a175d3d231f4210f50d6ae66bf8
|
3 |
+
size 5570
|
runs/Jan17_15-42-44_4820e4e1385b/events.out.tfevents.1673970176.4820e4e1385b.349.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e95b55a46b0aae7a26b801e7fc4d1f305cb322da1e70d49c6fba80a7a98a9c7
|
3 |
+
size 12900
|
runs/Jan17_15-49-10_4820e4e1385b/1673970560.3607755/events.out.tfevents.1673970560.4820e4e1385b.4928.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d061b2c147bd686b455ec17a6c50c628fb7fa55f33b4c281f5b1a68d7d69707
|
3 |
+
size 5570
|
runs/Jan17_15-49-10_4820e4e1385b/events.out.tfevents.1673970560.4820e4e1385b.4928.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:51708a9537b618682eb369e76fe89aa06274851406b5c177c44b2366f7f37ea6
|
3 |
+
size 9419
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14b998350d60374ff3b0eb378edc955149c30e3255f70bf2dbffc2e4938bf8e7
|
3 |
+
size 3451
|