Stevross commited on
Commit
030e529
1 Parent(s): c5cc7aa

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +34 -0
  2. gptq_model-4bit-128g.bin +3 -0
  3. quantize_config.json +10 -0
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "PAIXAI/Astrid-LLama-7B",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "bos_token_id": 1,
8
+ "custom_pipelines": {
9
+ "text-generation": {
10
+ "impl": "h2oai_pipeline.H2OTextGenerationPipeline",
11
+ "pt": "AutoModelForCausalLM"
12
+ }
13
+ },
14
+ "eos_token_id": 2,
15
+ "hidden_act": "silu",
16
+ "hidden_dropout_prob": 0.0,
17
+ "hidden_size": 4096,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 11008,
20
+ "max_position_embeddings": 2048,
21
+ "model_type": "llama",
22
+ "num_attention_heads": 32,
23
+ "num_hidden_layers": 32,
24
+ "num_key_value_heads": 32,
25
+ "pad_token_id": 0,
26
+ "pretraining_tp": 1,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": null,
29
+ "tie_word_embeddings": false,
30
+ "torch_dtype": "float16",
31
+ "transformers_version": "4.31.0",
32
+ "use_cache": true,
33
+ "vocab_size": 32000
34
+ }
gptq_model-4bit-128g.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08259851ca4e98412d14c6f3e368285c20d0d276831ee2c54563345c97a113a4
3
+ size 3897013783
quantize_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "damp_percent": 0.01,
5
+ "desc_act": false,
6
+ "sym": true,
7
+ "true_sequential": true,
8
+ "model_name_or_path": null,
9
+ "model_file_base_name": null
10
+ }