Commit ·
2088da8
1
Parent(s): 6f96d93
Initial commit with model files
Browse files- config.json +67 -0
- generation_config.json +7 -0
- model.safetensors +3 -0
config.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"DetikzifyForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"bos_token_id": 1,
|
| 9 |
+
"concat_patches": 2,
|
| 10 |
+
"eos_token_id": 2,
|
| 11 |
+
"feature_layer": 26,
|
| 12 |
+
"hidden_act": "silu",
|
| 13 |
+
"hidden_size": 2048,
|
| 14 |
+
"initializer_range": 0.02,
|
| 15 |
+
"intermediate_size": 5632,
|
| 16 |
+
"max_position_embeddings": 2048,
|
| 17 |
+
"mm_hidden_size": 2304,
|
| 18 |
+
"model_type": "detikzify",
|
| 19 |
+
"num_attention_heads": 32,
|
| 20 |
+
"num_hidden_layers": 22,
|
| 21 |
+
"num_key_value_heads": 4,
|
| 22 |
+
"num_patches": 364,
|
| 23 |
+
"pad_token_id": 32000,
|
| 24 |
+
"patch_token_id": 1,
|
| 25 |
+
"pretraining_tp": 1,
|
| 26 |
+
"rms_norm_eps": 1e-05,
|
| 27 |
+
"rope_scaling": null,
|
| 28 |
+
"rope_theta": 10000.0,
|
| 29 |
+
"tie_word_embeddings": false,
|
| 30 |
+
"torch_dtype": "float32",
|
| 31 |
+
"transformers_version": "4.38.2",
|
| 32 |
+
"use_cache": false,
|
| 33 |
+
"use_mm_proj": true,
|
| 34 |
+
"vision_config": {
|
| 35 |
+
"architecture": "vit_so400m_patch14_siglip_384",
|
| 36 |
+
"classifier": "head",
|
| 37 |
+
"crop_mode": "center",
|
| 38 |
+
"crop_pct": 0.9,
|
| 39 |
+
"custom_load": false,
|
| 40 |
+
"first_conv": "patch_embed.proj",
|
| 41 |
+
"fixed_input_size": true,
|
| 42 |
+
"hf_hub_filename": "open_clip_pytorch_model.bin",
|
| 43 |
+
"hf_hub_id": "timm/ViT-SO400M-14-SigLIP-384",
|
| 44 |
+
"input_size": [
|
| 45 |
+
3,
|
| 46 |
+
384,
|
| 47 |
+
384
|
| 48 |
+
],
|
| 49 |
+
"interpolation": "bicubic",
|
| 50 |
+
"mean": [
|
| 51 |
+
0.5,
|
| 52 |
+
0.5,
|
| 53 |
+
0.5
|
| 54 |
+
],
|
| 55 |
+
"num_classes": 0,
|
| 56 |
+
"pool_size": null,
|
| 57 |
+
"std": [
|
| 58 |
+
0.5,
|
| 59 |
+
0.5,
|
| 60 |
+
0.5
|
| 61 |
+
],
|
| 62 |
+
"tag": "webli",
|
| 63 |
+
"url": ""
|
| 64 |
+
},
|
| 65 |
+
"vision_tower": "vit_so400m_patch14_siglip_384.webli",
|
| 66 |
+
"vocab_size": 32008
|
| 67 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 1,
|
| 3 |
+
"eos_token_id": 2,
|
| 4 |
+
"max_length": 2048,
|
| 5 |
+
"pad_token_id": 32000,
|
| 6 |
+
"transformers_version": "4.38.2"
|
| 7 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6a7b7c197019dd43023a996a761a21c64ce444b17a47ade6bd9b386cc62ae5
|
| 3 |
+
size 4419230368
|