Suparious commited on
Commit
464ece7
1 Parent(s): ca6f9d1

Update README after successful quantization

Browse files
Files changed (1) hide show
  1. README.md +59 -2
README.md CHANGED
@@ -1,13 +1,70 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  inference: false
 
3
  ---
4
  # bunnycore/LLama-3.1-8B-TitanFusion-v2 AWQ
5
 
6
- ** PROCESSING .... ETA 30mins **
7
-
8
  - Model creator: [bunnycore](https://huggingface.co/bunnycore)
9
  - Original model: [LLama-3.1-8B-TitanFusion-v2](https://huggingface.co/bunnycore/LLama-3.1-8B-TitanFusion-v2)
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ### About AWQ
12
 
13
  AWQ is an efficient, accurate and blazing-fast low-bit weight quantization method, currently supporting 4-bit quantization. Compared to GPTQ, it offers faster Transformers-based inference with equivalent or better quality compared to the most commonly used GPTQ settings.
 
1
  ---
2
+ base_model: bunnycore/LLama-3.1-8B-TitanFusion-v2
3
+ library_name: transformers
4
+ tags:
5
+ - 4-bit
6
+ - AWQ
7
+ - text-generation
8
+ - autotrain_compatible
9
+ - endpoints_compatible
10
+ pipeline_tag: text-generation
11
  inference: false
12
+ quantized_by: Suparious
13
  ---
14
  # bunnycore/LLama-3.1-8B-TitanFusion-v2 AWQ
15
 
 
 
16
  - Model creator: [bunnycore](https://huggingface.co/bunnycore)
17
  - Original model: [LLama-3.1-8B-TitanFusion-v2](https://huggingface.co/bunnycore/LLama-3.1-8B-TitanFusion-v2)
18
 
19
+
20
+
21
+ ## How to use
22
+
23
+ ### Install the necessary packages
24
+
25
+ ```bash
26
+ pip install --upgrade autoawq autoawq-kernels
27
+ ```
28
+
29
+ ### Example Python code
30
+
31
+ ```python
32
+ from awq import AutoAWQForCausalLM
33
+ from transformers import AutoTokenizer, TextStreamer
34
+
35
+ model_path = "solidrust/LLama-3.1-8B-TitanFusion-v2-AWQ"
36
+ system_message = "You are LLama-3.1-8B-TitanFusion-v2, incarnated as a powerful AI. You were created by bunnycore."
37
+
38
+ # Load model
39
+ model = AutoAWQForCausalLM.from_quantized(model_path,
40
+ fuse_layers=True)
41
+ tokenizer = AutoTokenizer.from_pretrained(model_path,
42
+ trust_remote_code=True)
43
+ streamer = TextStreamer(tokenizer,
44
+ skip_prompt=True,
45
+ skip_special_tokens=True)
46
+
47
+ # Convert prompt to tokens
48
+ prompt_template = """\
49
+ <|im_start|>system
50
+ {system_message}<|im_end|>
51
+ <|im_start|>user
52
+ {prompt}<|im_end|>
53
+ <|im_start|>assistant"""
54
+
55
+ prompt = "You're standing on the surface of the Earth. "\
56
+ "You walk one mile south, one mile west and one mile north. "\
57
+ "You end up exactly where you started. Where are you?"
58
+
59
+ tokens = tokenizer(prompt_template.format(system_message=system_message,prompt=prompt),
60
+ return_tensors='pt').input_ids.cuda()
61
+
62
+ # Generate output
63
+ generation_output = model.generate(tokens,
64
+ streamer=streamer,
65
+ max_new_tokens=512)
66
+ ```
67
+
68
  ### About AWQ
69
 
70
  AWQ is an efficient, accurate and blazing-fast low-bit weight quantization method, currently supporting 4-bit quantization. Compared to GPTQ, it offers faster Transformers-based inference with equivalent or better quality compared to the most commonly used GPTQ settings.