Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
osanseviero
/
i-like-flan
like
148
Runtime error
App
Files
Files
Community
18
Fetching metadata from the HF Docker repository...
osanseviero
commited on
Oct 21, 2022
Commit
ed6faba
·
1 Parent(s):
449771c
Create new file
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import os
2
+
import gradio as gr
3
+
import numpy as np
4
+
5
+
6
+
io = gr.Interface.load("ybelkada/flan-t5-large", api_key=os.environ.get('api_key', None))
7
+
8
+
io.launch()