RichardErkhov commited on
Commit
ebfba51
1 Parent(s): 30e275c

uploaded model

Browse files
Files changed (1) hide show
  1. config.json +52 -0
config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dolly-v2-7b",
3
+ "architectures": [
4
+ "GPTNeoXForCausalLM"
5
+ ],
6
+ "attention_bias": true,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 0,
9
+ "classifier_dropout": 0.1,
10
+ "custom_pipelines": {
11
+ "text-generation": {
12
+ "impl": "instruct_pipeline.InstructionTextGenerationPipeline",
13
+ "pt": "AutoModelForCausalLM",
14
+ "tf": "TFAutoModelForCausalLM"
15
+ }
16
+ },
17
+ "eos_token_id": 0,
18
+ "hidden_act": "gelu",
19
+ "hidden_dropout": 0.0,
20
+ "hidden_size": 4096,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 16384,
23
+ "layer_norm_eps": 1e-05,
24
+ "max_position_embeddings": 2048,
25
+ "model_type": "gpt_neox",
26
+ "num_attention_heads": 32,
27
+ "num_hidden_layers": 32,
28
+ "quantization_config": {
29
+ "_load_in_4bit": false,
30
+ "_load_in_8bit": true,
31
+ "bnb_4bit_compute_dtype": "float32",
32
+ "bnb_4bit_quant_storage": "uint8",
33
+ "bnb_4bit_quant_type": "fp4",
34
+ "bnb_4bit_use_double_quant": false,
35
+ "llm_int8_enable_fp32_cpu_offload": false,
36
+ "llm_int8_has_fp16_weight": false,
37
+ "llm_int8_skip_modules": null,
38
+ "llm_int8_threshold": 6.0,
39
+ "load_in_4bit": false,
40
+ "load_in_8bit": true,
41
+ "quant_method": "bitsandbytes"
42
+ },
43
+ "rope_scaling": null,
44
+ "rotary_emb_base": 10000,
45
+ "rotary_pct": 0.25,
46
+ "tie_word_embeddings": false,
47
+ "torch_dtype": "float16",
48
+ "transformers_version": "4.39.3",
49
+ "use_cache": true,
50
+ "use_parallel_residual": true,
51
+ "vocab_size": 50280
52
+ }