samadriaz commited on
Commit
0483ea7
1 Parent(s): ba84a81

Training in progress, epoch 0

Browse files
Files changed (4) hide show
  1. config.json +55 -55
  2. preprocessor_config.json +27 -26
  3. pytorch_model.bin +3 -0
  4. training_args.bin +2 -2
config.json CHANGED
@@ -1,55 +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.42.4",
53
- "tubelet_size": 2,
54
- "use_mean_pooling": false
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.33.1",
53
+ "tubelet_size": 2,
54
+ "use_mean_pooling": false
55
+ }
preprocessor_config.json CHANGED
@@ -1,26 +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
- "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
- }
 
 
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:72ef42e398f359aa0c723141bc089247e4d7117803ed2974a3db69d78298115f
3
+ size 345003509
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb8dae8a7031de77c83f2780777502245424ea4e5dac68aeb182911824995c75
3
- size 4731
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40fbe844f365b2a0e910bcdff794f30f0f23c08dbddefefd03e205fbd82b1efe
3
+ size 4091