Glavin001 commited on
Commit
c5cab5f
1 Parent(s): 7aa22f0

AutoGPTQ model for Glavin001/startup-interviews-13b-int4-2epochs-1: 4bits, gr128, desc_act=False

Browse files
Files changed (3) hide show
  1. config.json +32 -0
  2. gptq_model-4bit-128g.bin +3 -0
  3. quantize_config.json +10 -0
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Glavin001/startup-interviews-13b-int4-2epochs-1",
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": 5120,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 13824,
20
+ "max_position_embeddings": 2048,
21
+ "max_sequence_length": 2048,
22
+ "model_type": "llama",
23
+ "num_attention_heads": 40,
24
+ "num_hidden_layers": 40,
25
+ "pad_token_id": 0,
26
+ "rms_norm_eps": 1e-06,
27
+ "tie_word_embeddings": false,
28
+ "torch_dtype": "float16",
29
+ "transformers_version": "4.30.2",
30
+ "use_cache": true,
31
+ "vocab_size": 32000
32
+ }
gptq_model-4bit-128g.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cae8d36900cd01306e82b771818be3394f3c3037b9d89785a5ed34f635f6c88b
3
+ size 7259817703
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
+ }