steveice commited on
Commit
0351fb4
1 Parent(s): 6c8a5f2

Training in progress, epoch 0

Browse files
Files changed (4) hide show
  1. config.json +117 -0
  2. preprocessor_config.json +27 -0
  3. pytorch_model.bin +3 -0
  4. training_args.bin +3 -0
config.json ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "MCG-NJU/videomae-large-finetuned-kinetics",
3
+ "architectures": [
4
+ "VideoMAEForVideoClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "decoder_hidden_size": 512,
8
+ "decoder_intermediate_size": 2048,
9
+ "decoder_num_attention_heads": 8,
10
+ "decoder_num_hidden_layers": 12,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.0,
13
+ "hidden_size": 1024,
14
+ "id2label": {
15
+ "0": "C_1",
16
+ "1": "C_2",
17
+ "2": "C_3",
18
+ "3": "C_4",
19
+ "4": "C_5",
20
+ "5": "C_6",
21
+ "6": "C_7",
22
+ "7": "C_8",
23
+ "8": "O_1",
24
+ "9": "O_2",
25
+ "10": "O_3",
26
+ "11": "O_4",
27
+ "12": "O_5",
28
+ "13": "O_6",
29
+ "14": "O_7",
30
+ "15": "P_1",
31
+ "16": "P_10",
32
+ "17": "P_11",
33
+ "18": "P_12",
34
+ "19": "P_2",
35
+ "20": "P_3",
36
+ "21": "P_4",
37
+ "22": "P_5",
38
+ "23": "P_6",
39
+ "24": "P_7",
40
+ "25": "P_8",
41
+ "26": "P_9",
42
+ "27": "Q_1",
43
+ "28": "Q_2",
44
+ "29": "Q_3",
45
+ "30": "Q_4",
46
+ "31": "Q_5",
47
+ "32": "Q_6",
48
+ "33": "Q_7",
49
+ "34": "T_1",
50
+ "35": "T_2",
51
+ "36": "T_3",
52
+ "37": "T_4",
53
+ "38": "T_5",
54
+ "39": "T_6",
55
+ "40": "T_7"
56
+ },
57
+ "image_size": 224,
58
+ "initializer_range": 0.02,
59
+ "intermediate_size": 4096,
60
+ "label2id": {
61
+ "C_1": 0,
62
+ "C_2": 1,
63
+ "C_3": 2,
64
+ "C_4": 3,
65
+ "C_5": 4,
66
+ "C_6": 5,
67
+ "C_7": 6,
68
+ "C_8": 7,
69
+ "O_1": 8,
70
+ "O_2": 9,
71
+ "O_3": 10,
72
+ "O_4": 11,
73
+ "O_5": 12,
74
+ "O_6": 13,
75
+ "O_7": 14,
76
+ "P_1": 15,
77
+ "P_10": 16,
78
+ "P_11": 17,
79
+ "P_12": 18,
80
+ "P_2": 19,
81
+ "P_3": 20,
82
+ "P_4": 21,
83
+ "P_5": 22,
84
+ "P_6": 23,
85
+ "P_7": 24,
86
+ "P_8": 25,
87
+ "P_9": 26,
88
+ "Q_1": 27,
89
+ "Q_2": 28,
90
+ "Q_3": 29,
91
+ "Q_4": 30,
92
+ "Q_5": 31,
93
+ "Q_6": 32,
94
+ "Q_7": 33,
95
+ "T_1": 34,
96
+ "T_2": 35,
97
+ "T_3": 36,
98
+ "T_4": 37,
99
+ "T_5": 38,
100
+ "T_6": 39,
101
+ "T_7": 40
102
+ },
103
+ "layer_norm_eps": 1e-12,
104
+ "model_type": "videomae",
105
+ "norm_pix_loss": true,
106
+ "num_attention_heads": 16,
107
+ "num_channels": 3,
108
+ "num_frames": 16,
109
+ "num_hidden_layers": 24,
110
+ "patch_size": 16,
111
+ "problem_type": "single_label_classification",
112
+ "qkv_bias": true,
113
+ "torch_dtype": "float32",
114
+ "transformers_version": "4.33.2",
115
+ "tubelet_size": 2,
116
+ "use_mean_pooling": true
117
+ }
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:9c2c3bd99341dea45fdbac674e90dc03573bb73270b18128c96a2a98ce6b4b73
3
+ size 1215734821
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b5a20c74a096bd41e7d27a9fc2469b54a0eb0c1ffeb4190c0e5558f6e8e14f
3
+ size 4079