error

#30
by dpe1 - opened

Hugging Face's logo
Hugging Face
Search models, datasets, users...
Models
Datasets
Spaces
Docs
Solutions
Pricing

Spaces:

sd-concepts-library
/
stable-diffusion-conceptualizer Copied
like
139
App
Files and versions
Community
29
๐Ÿš€ Get started with your Space!
Your new space has been created, follow these steps to get started (or read our full documentation )

Start by cloning this repo by using:

git clone https://huggingface.co/spaces/sd-concepts-library/stable-diffusion-conceptualizer
Create your Gradio app.py file:

import gradio as gr

def greet(name):
return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
Then commit and push:

git add app.py
git commit -m "Add application file"
git push
(Hint: Create the app.py file right in your browser alternatively)

๐Ÿค— Your app should be running on this page after a few moments !

Dependencies

You can add a requirements.txt file at the root of the repository to specify Python dependencies

If needed, you can add also add a packages.txt file at the root of the repository to specify Debian dependencies.

The gradio package comes pre-installed at version latest

Documentation

Check out the documentation of gradio on their website

Sign up or log in to comment