Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
-
|
2 |
-
from transformers import AutoProcessor, AutoModelForImageTextToText
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
|
|
2 |
|
3 |
+
from transformers import pipeline
|
4 |
+
|
5 |
+
pipe = pipeline(model="gauravbahl/unsloth_finetune")
|
6 |
+
|
7 |
+
gr.Interface.from_pipeline(pipe).launch()
|