hf-transformers-bot commited on
Commit
d900094
·
verified ·
1 Parent(s): 68f6f65

Update tiny models for VideoPrismForVideoClassification

Browse files
Files changed (3) hide show
  1. config.json +30 -0
  2. model.safetensors +3 -0
  3. video_preprocessor_config.json +29 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "apply_l2norm": true,
3
+ "architectures": [
4
+ "VideoPrismForVideoClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "attn_logit_softcapping": 50.0,
8
+ "dtype": "float32",
9
+ "hidden_act": "gelu_python",
10
+ "hidden_dropout_prob": 0.0,
11
+ "hidden_size": 32,
12
+ "image_size": 8,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 64,
15
+ "layer_norm_eps": 1e-06,
16
+ "model_type": "videoprism_vision_model",
17
+ "num_attention_heads": 4,
18
+ "num_auxiliary_layers": 2,
19
+ "num_channels": 3,
20
+ "num_frames": 3,
21
+ "num_spatial_layers": 3,
22
+ "num_temporal_layers": 2,
23
+ "qkv_bias": true,
24
+ "transformers_version": "5.16.0.dev0",
25
+ "tubelet_size": [
26
+ 1,
27
+ 4,
28
+ 4
29
+ ]
30
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6546440c8e07653e52835632dc2355fd61ac0d3a82c67bb4284c7fe228eb95c8
3
+ size 224008
video_preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 8,
4
+ "width": 8
5
+ },
6
+ "do_convert_rgb": true,
7
+ "do_normalize": true,
8
+ "do_rescale": true,
9
+ "do_resize": true,
10
+ "do_sample_frames": false,
11
+ "image_mean": [
12
+ 0.48145466,
13
+ 0.4578275,
14
+ 0.40821073
15
+ ],
16
+ "image_std": [
17
+ 0.26862954,
18
+ 0.26130258,
19
+ 0.27577711
20
+ ],
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "return_metadata": false,
24
+ "size": {
25
+ "height": 8,
26
+ "width": 8
27
+ },
28
+ "video_processor_type": "LlavaOnevisionVideoProcessor"
29
+ }