Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
)
|
20 |
-
|
21 |
-
#
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
|
|
1 |
+
#https://huggingface.co/TheBloke/starchat-beta-GPTQ
|
2 |
+
|
3 |
+
from transformers import AutoTokenizer, pipeline, logging
|
4 |
+
from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
|
5 |
+
import argparse
|
6 |
+
|
7 |
+
model_name_or_path = "TheBloke/starchat-beta-GPTQ"
|
8 |
+
# Or to load it locally, pass the local download path
|
9 |
+
# model_name_or_path = "/path/to/models/The_Bloke_starchat-beta-GPTQ"
|
10 |
+
|
11 |
+
use_triton = False
|
12 |
+
|
13 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)
|
14 |
+
|
15 |
+
model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
|
16 |
+
use_safetensors=True,
|
17 |
+
#device="cuda:0",
|
18 |
+
use_triton=use_triton,
|
19 |
+
quantize_config=None)
|
20 |
+
|
21 |
+
# Prevent printing spurious transformers error when using pipeline with AutoGPTQ
|
22 |
+
logging.set_verbosity(logging.CRITICAL)
|
23 |
+
|
24 |
+
pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
25 |
+
|
26 |
+
prompt_template = "<|system|>\n<|end|>\n<|user|>\n{query}<|end|>\n<|assistant|>"
|
27 |
+
prompt = prompt_template.format(query="How do I sort a list in Python?")
|
28 |
+
# We use a special <|end|> token with ID 49155 to denote ends of a turn
|
29 |
+
outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.2, top_k=50, top_p=0.95, eos_token_id=49155)
|
30 |
+
# You can sort a list in Python by using the sort() method. Here's an example:\n\n```\nnumbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]\nnumbers.sort()\nprint(numbers)\n```\n\nThis will sort the list in place and print the sorted list.
|
31 |
+
print(outputs[0]['generated_text'])
|
32 |
|