Spaces:
Runtime error
Runtime error
Commit
·
0977766
1
Parent(s):
1bd52ac
Update app.py
Browse files
app.py
CHANGED
@@ -1,20 +1,25 @@
|
|
1 |
-
import
|
|
|
|
|
2 |
|
3 |
-
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
)
|
18 |
|
19 |
-
|
20 |
-
demo.launch()
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
2 |
+
import transformers
|
3 |
+
import torch
|
4 |
|
5 |
+
model = "tiiuae/falcon-rw-1b"
|
6 |
|
7 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
8 |
+
pipeline = transformers.pipeline(
|
9 |
+
"text-generation",
|
10 |
+
model=model,
|
11 |
+
tokenizer=tokenizer,
|
12 |
+
torch_dtype=torch.bfloat16,
|
13 |
+
trust_remote_code=True,
|
14 |
+
device_map="auto",
|
15 |
+
)
|
16 |
+
sequences = pipeline(
|
17 |
+
"Girafatron is obsessed with giraffes, the most glorious animal on the face of this Earth. Giraftron believes all other animals are irrelevant when compared to the glorious majesty of the giraffe.\nDaniel: Hello, Girafatron!\nGirafatron:",
|
18 |
+
max_length=200,
|
19 |
+
do_sample=True,
|
20 |
+
top_k=10,
|
21 |
+
num_return_sequences=1,
|
22 |
+
eos_token_id=tokenizer.eos_token_id,
|
23 |
)
|
24 |
|
25 |
+
gr.Interface.from_pipeline(sequences).launch()
|
|