Training in progress, epoch 0
Browse files- config.json +56 -0
- model.safetensors +3 -0
- preprocessor_config.json +27 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "google/vivit-b-16x2-kinetics400",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"VivitForVideoClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.0,
|
| 7 |
+
"hidden_act": "gelu_fast",
|
| 8 |
+
"hidden_dropout_prob": 0.0,
|
| 9 |
+
"hidden_size": 768,
|
| 10 |
+
"id2label": {
|
| 11 |
+
"0": "ApplyEyeMakeup",
|
| 12 |
+
"1": "ApplyLipstick",
|
| 13 |
+
"2": "Archery",
|
| 14 |
+
"3": "BabyCrawling",
|
| 15 |
+
"4": "BalanceBeam",
|
| 16 |
+
"5": "BandMarching",
|
| 17 |
+
"6": "BaseballPitch",
|
| 18 |
+
"7": "Basketball",
|
| 19 |
+
"8": "BasketballDunk",
|
| 20 |
+
"9": "BenchPress"
|
| 21 |
+
},
|
| 22 |
+
"image_size": 224,
|
| 23 |
+
"initializer_range": 0.02,
|
| 24 |
+
"intermediate_size": 3072,
|
| 25 |
+
"label2id": {
|
| 26 |
+
"ApplyEyeMakeup": 0,
|
| 27 |
+
"ApplyLipstick": 1,
|
| 28 |
+
"Archery": 2,
|
| 29 |
+
"BabyCrawling": 3,
|
| 30 |
+
"BalanceBeam": 4,
|
| 31 |
+
"BandMarching": 5,
|
| 32 |
+
"BaseballPitch": 6,
|
| 33 |
+
"Basketball": 7,
|
| 34 |
+
"BasketballDunk": 8,
|
| 35 |
+
"BenchPress": 9
|
| 36 |
+
},
|
| 37 |
+
"layer_norm_eps": 1e-06,
|
| 38 |
+
"model_type": "vivit",
|
| 39 |
+
"num_attention_heads": 12,
|
| 40 |
+
"num_channels": 3,
|
| 41 |
+
"num_frames": 32,
|
| 42 |
+
"num_hidden_layers": 12,
|
| 43 |
+
"qkv_bias": true,
|
| 44 |
+
"torch_dtype": "float32",
|
| 45 |
+
"transformers_version": "4.38.2",
|
| 46 |
+
"tubelet_size": [
|
| 47 |
+
2,
|
| 48 |
+
16,
|
| 49 |
+
16
|
| 50 |
+
],
|
| 51 |
+
"video_size": [
|
| 52 |
+
32,
|
| 53 |
+
224,
|
| 54 |
+
224
|
| 55 |
+
]
|
| 56 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:198161a8cfb8861d43c912d641e7a42dd2deb8ad31ee6d6fffbd1ed20f040a08
|
| 3 |
+
size 354639992
|
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 |
+
"image_mean": [
|
| 11 |
+
0.5,
|
| 12 |
+
0.5,
|
| 13 |
+
0.5
|
| 14 |
+
],
|
| 15 |
+
"image_processor_type": "VivitImageProcessor",
|
| 16 |
+
"image_std": [
|
| 17 |
+
0.5,
|
| 18 |
+
0.5,
|
| 19 |
+
0.5
|
| 20 |
+
],
|
| 21 |
+
"offset": true,
|
| 22 |
+
"resample": 2,
|
| 23 |
+
"rescale_factor": 0.00784313725490196,
|
| 24 |
+
"size": {
|
| 25 |
+
"shortest_edge": 224
|
| 26 |
+
}
|
| 27 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:190a9d811a73c89ff5360a1ce804e4fdb72221b2e9de48c5a2586b7099929cd2
|
| 3 |
+
size 4920
|