Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
pipe = pipeline("
|
5 |
-
model="Salesforce/blip-image-captioning-base")
|
6 |
-
|
7 |
|
8 |
def launch(input):
|
9 |
out = pipe(input)
|
|
|
1 |
import gradio as gr
|
2 |
+
# Use a pipeline as a high-level helper
|
3 |
from transformers import pipeline
|
4 |
|
5 |
+
pipe = pipeline("document-question-answering", model="zpm/Llama-3.1-PersianQA")
|
|
|
|
|
6 |
|
7 |
def launch(input):
|
8 |
out = pipe(input)
|