prijak commited on
Commit
96537d7
·
verified ·
1 Parent(s): d1fd3f6

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +52 -32
config.json CHANGED
@@ -1,35 +1,55 @@
1
  {
2
- "alpha_pattern": {},
3
- "auto_mapping": null,
4
- "model_type": "Llama",
5
- "base_model_name_or_path": "unsloth/llama-3.2-3b-instruct-bnb-4bit",
6
- "bias": "none",
7
- "fan_in_fan_out": false,
8
- "inference_mode": true,
9
- "init_lora_weights": true,
10
- "layer_replication": null,
11
- "layers_pattern": null,
12
- "layers_to_transform": null,
13
- "loftq_config": {},
14
- "lora_alpha": 16,
15
- "lora_dropout": 0,
16
- "megatron_config": null,
17
- "megatron_core": "megatron.core",
18
- "modules_to_save": null,
19
- "peft_type": "LORA",
20
- "r": 16,
21
- "rank_pattern": {},
22
- "revision": null,
23
- "target_modules": [
24
- "q_proj",
25
- "gate_proj",
26
- "up_proj",
27
- "o_proj",
28
- "v_proj",
29
- "down_proj",
30
- "k_proj"
31
  ],
32
- "task_type": "CAUSAL_LM",
33
- "use_dora": false,
34
- "use_rslora": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
 
1
  {
2
+ "_name_or_path": "meta-llama/Llama-3.2-3B-Instruct",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 128000,
9
+ "eos_token_id": [
10
+ 128001,
11
+ 128008,
12
+ 128009
13
+ ],
14
+ "head_dim": 128,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 3072,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 8192,
19
+ "max_position_embeddings": 131072,
20
+ "mlp_bias": false,
21
+ "model_type": "llama",
22
+ "num_attention_heads": 24,
23
+ "num_hidden_layers": 28,
24
+ "num_key_value_heads": 8,
25
+ "pretraining_tp": 1,
26
+ "quantization_config": {
27
+ "_load_in_4bit": true,
28
+ "_load_in_8bit": false,
29
+ "bnb_4bit_compute_dtype": "bfloat16",
30
+ "bnb_4bit_quant_storage": "uint8",
31
+ "bnb_4bit_quant_type": "nf4",
32
+ "bnb_4bit_use_double_quant": true,
33
+ "llm_int8_enable_fp32_cpu_offload": false,
34
+ "llm_int8_has_fp16_weight": false,
35
+ "llm_int8_skip_modules": null,
36
+ "llm_int8_threshold": 6.0,
37
+ "load_in_4bit": true,
38
+ "load_in_8bit": false,
39
+ "quant_method": "bitsandbytes"
40
+ },
41
+ "rms_norm_eps": 1e-05,
42
+ "rope_scaling": {
43
+ "factor": 32.0,
44
+ "high_freq_factor": 4.0,
45
+ "low_freq_factor": 1.0,
46
+ "original_max_position_embeddings": 8192,
47
+ "rope_type": "llama3"
48
+ },
49
+ "rope_theta": 500000.0,
50
+ "tie_word_embeddings": true,
51
+ "torch_dtype": "bfloat16",
52
+ "transformers_version": "4.45.0",
53
+ "use_cache": true,
54
+ "vocab_size": 128256
55
  }