Kirim1 commited on
Commit
39a22c7
·
verified ·
1 Parent(s): 31d9a20

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +67 -0
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "KirimForCausalLM"
4
+ ],
5
+ "model_type": "kirim",
6
+ "torch_dtype": "bfloat16",
7
+ "transformers_version": "4.36.0",
8
+
9
+ "_name_or_path": "Kirim-ai/Kirim-V1-base",
10
+ "vocab_size": 102400,
11
+ "hidden_size": 4096,
12
+ "intermediate_size": 11008,
13
+ "num_hidden_layers": 32,
14
+ "num_attention_heads": 32,
15
+ "num_key_value_heads": 8,
16
+ "hidden_act": "silu",
17
+ "max_position_embeddings": 32768,
18
+ "initializer_range": 0.02,
19
+ "rms_norm_eps": 1e-06,
20
+ "use_cache": true,
21
+ "pad_token_id": 0,
22
+ "bos_token_id": 1,
23
+ "eos_token_id": 2,
24
+ "tie_word_embeddings": false,
25
+ "rope_theta": 10000.0,
26
+ "rope_scaling": {
27
+ "type": "yarn",
28
+ "factor": 2.0,
29
+ "original_max_position_embeddings": 16384
30
+ },
31
+ "attention_bias": false,
32
+ "attention_dropout": 0.0,
33
+ "mlp_bias": false,
34
+
35
+ "use_flash_attention_2": true,
36
+ "use_sliding_window": false,
37
+ "sliding_window": null,
38
+
39
+ "quantization_config": {
40
+ "quant_method": "gptq",
41
+ "bits": 4,
42
+ "group_size": 128,
43
+ "damp_percent": 0.01,
44
+ "desc_act": false,
45
+ "static_groups": false,
46
+ "sym": true,
47
+ "true_sequential": true,
48
+ "model_name_or_path": null,
49
+ "model_file_base_name": "model"
50
+ },
51
+
52
+ "auto_map": {
53
+ "AutoConfig": "configuration_kirim.KirimConfig",
54
+ "AutoModelForCausalLM": "modeling_kirim.KirimForCausalLM"
55
+ },
56
+
57
+ "task_specific_params": {
58
+ "text-generation": {
59
+ "do_sample": true,
60
+ "max_length": 2048,
61
+ "temperature": 0.7,
62
+ "top_p": 0.9,
63
+ "top_k": 50,
64
+ "repetition_penalty": 1.1
65
+ }
66
+ }
67
+ }