Update app.py
Browse files
app.py
CHANGED
@@ -1,19 +1,22 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import
|
3 |
|
4 |
-
|
5 |
-
model = AutoModelForCausalLM.from_pretrained("llama-2-7b-chat")
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
generated_text = model.generate(prompt, max_length=4000)
|
11 |
|
12 |
-
|
13 |
-
|
|
|
|
|
14 |
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
|
19 |
-
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
|
4 |
+
generator = pipeline('text-generation', model='llama-2-7b-chat')
|
|
|
5 |
|
6 |
+
def generate(text):
|
7 |
+
result = generator(text, max_length=100, num_return_sequences=1)
|
8 |
+
return result[0]["generated_text"]
|
|
|
9 |
|
10 |
+
examples = [
|
11 |
+
["The Moon's orbit around Earth has"],
|
12 |
+
["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
|
13 |
+
]
|
14 |
|
15 |
+
demo = gr.Interface(
|
16 |
+
fn=generate,
|
17 |
+
inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
|
18 |
+
outputs=gr.outputs.Textbox(label="Generated Text"),
|
19 |
+
examples=examples
|
20 |
+
)
|
21 |
|
22 |
+
demo.launch()
|
|