Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lastmileai/gradio_notebook_local_model
Nymbo
/
gradio_notebook_local_model
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
rholinshead
commited on
Feb 13, 2024
Commit
47d6caa
·
verified
·
1 Parent(s):
af5ca0f
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
from gradio_notebook import GradioNotebook
3
+
4
+
with gr.Blocks() as demo:
5
+
GradioNotebook()
6
+
7
+
demo.queue().launch()