hf-transformers-bot commited on
Commit
df8e3ac
·
verified ·
1 Parent(s): d945f08

Update tiny models for Sam3ViTModel

Browse files
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Sam3ViTModel"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "dtype": "float32",
7
+ "global_attn_indexes": [
8
+ 0,
9
+ 1
10
+ ],
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout": 0.0,
13
+ "hidden_size": 32,
14
+ "image_size": 224,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 64,
17
+ "layer_norm_eps": 1e-06,
18
+ "layer_scale_init_value": null,
19
+ "model_type": "sam3_vit_model",
20
+ "num_attention_heads": 4,
21
+ "num_channels": 3,
22
+ "num_hidden_layers": 2,
23
+ "patch_size": 14,
24
+ "pretrain_image_size": 336,
25
+ "rope_theta": 10000.0,
26
+ "transformers_version": "5.16.0.dev0",
27
+ "window_size": 8
28
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95b20c2e26e6cbfdc79ddc469fbe2ba706f5545b5f7a4ceb00a3afca873e7d26
3
+ size 220944
preprocessor_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_convert_rgb": 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": "Sam3ImageProcessor",
16
+ "image_std": [
17
+ 0.5,
18
+ 0.5,
19
+ 0.5
20
+ ],
21
+ "mask_size": {
22
+ "height": 288,
23
+ "width": 288
24
+ },
25
+ "resample": 2,
26
+ "rescale_factor": 0.00392156862745098,
27
+ "size": {
28
+ "height": 224,
29
+ "width": 224
30
+ }
31
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<|startoftext|>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "do_lower_case": true,
7
+ "eos_token": "<|endoftext|>",
8
+ "errors": "replace",
9
+ "is_local": true,
10
+ "local_files_only": false,
11
+ "max_length": 32,
12
+ "model_max_length": 32,
13
+ "pad_token": "<|endoftext|>",
14
+ "processor_class": "Sam3VideoProcessor",
15
+ "tokenizer_class": "CLIPTokenizer",
16
+ "unk_token": "<|endoftext|>"
17
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_convert_rgb": 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_std": [
16
+ 0.229,
17
+ 0.224,
18
+ 0.225
19
+ ],
20
+ "resample": 2,
21
+ "rescale_factor": 0.00392156862745098,
22
+ "return_metadata": false,
23
+ "size": {
24
+ "height": 224,
25
+ "width": 224
26
+ },
27
+ "video_processor_type": "Sam2VideoVideoProcessor"
28
+ }