merve HF Staff commited on
Commit
4da9a6a
·
verified ·
1 Parent(s): 4b58886

Upload processor

Browse files
Files changed (1) hide show
  1. video_preprocessor_config.json +79 -0
video_preprocessor_config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_kwargs_names": [
3
+ "do_convert_rgb",
4
+ "do_resize",
5
+ "size",
6
+ "size_divisor",
7
+ "default_to_square",
8
+ "resample",
9
+ "do_rescale",
10
+ "rescale_factor",
11
+ "do_normalize",
12
+ "image_mean",
13
+ "image_std",
14
+ "do_pad",
15
+ "do_center_crop",
16
+ "crop_size",
17
+ "data_format",
18
+ "input_data_format",
19
+ "device"
20
+ ],
21
+ "crop_size": {
22
+ "height": 256,
23
+ "width": 256
24
+ },
25
+ "data_format": "channels_first",
26
+ "default_to_square": true,
27
+ "device": null,
28
+ "do_center_crop": true,
29
+ "do_convert_rgb": null,
30
+ "do_normalize": true,
31
+ "do_pad": null,
32
+ "do_rescale": true,
33
+ "do_resize": true,
34
+ "do_sample_frames": null,
35
+ "fps": null,
36
+ "image_mean": [
37
+ 0.485,
38
+ 0.456,
39
+ 0.406
40
+ ],
41
+ "image_std": [
42
+ 0.229,
43
+ 0.224,
44
+ 0.225
45
+ ],
46
+ "input_data_format": null,
47
+ "model_valid_processing_keys": [
48
+ "do_convert_rgb",
49
+ "do_resize",
50
+ "size",
51
+ "size_divisor",
52
+ "default_to_square",
53
+ "resample",
54
+ "do_rescale",
55
+ "rescale_factor",
56
+ "do_normalize",
57
+ "image_mean",
58
+ "image_std",
59
+ "do_pad",
60
+ "do_center_crop",
61
+ "crop_size",
62
+ "data_format",
63
+ "input_data_format",
64
+ "device",
65
+ "do_sample_frames",
66
+ "video_metadata",
67
+ "fps",
68
+ "num_frames"
69
+ ],
70
+ "num_frames": null,
71
+ "resample": 2,
72
+ "rescale_factor": 0.00392156862745098,
73
+ "size": {
74
+ "shortest_edge": 292
75
+ },
76
+ "size_divisor": null,
77
+ "video_metadata": null,
78
+ "video_processor_type": "VJEPA2VideoProcessor"
79
+ }