Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
44brabal
/
ai
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
44brabal
commited on
Sep 28, 2023
Commit
038b629
Β·
1 Parent(s):
5807199
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
# Use a pipeline as a high-level helper
4
+
from transformers import pipeline
5
+
6
+
pipe = pipeline("text-generation", model="Qwen/Qwen-14B", trust_remote_code=True)