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...
d1d2b10
ai
/
app.py
44brabal
Create app.py
038b629
over 1 year ago
raw
Copy download link
history
blame
Safe
177 Bytes
import
gradio
as
gr
# Use a pipeline as a high-level helper
from
transformers
import
pipeline
pipe = pipeline(
"text-generation"
, model=
"Qwen/Qwen-14B"
, trust_remote_code=
True
)