Spaces:
Runtime error
Runtime error
kingabzpro
commited on
Commit
·
41a4967
1
Parent(s):
0c59b06
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,11 @@
|
|
1 |
-
from transformers import AutoTokenizer
|
2 |
import transformers
|
3 |
import gradio as gr
|
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 |
)
|
|
|
|
|
1 |
import transformers
|
2 |
import gradio as gr
|
3 |
|
4 |
model = "tiiuae/falcon-rw-1b"
|
5 |
|
|
|
6 |
pipeline = transformers.pipeline(
|
7 |
"text-generation",
|
8 |
model=model,
|
|
|
|
|
9 |
trust_remote_code=True,
|
10 |
device_map="auto",
|
11 |
)
|