aliabd HF staff commited on
Commit
d2fc772
·
1 Parent(s): 8f79044

Upload with huggingface_hub

Browse files
DESCRIPTION.md ADDED
@@ -0,0 +1 @@
 
 
1
+ The simplest possible Gradio demo. It wraps a 'Hello {name}!' function in an Interface that accepts and returns text.
README.md CHANGED
@@ -1,12 +1,11 @@
 
1
  ---
2
- title: Hello World Main
3
- emoji:
4
- colorFrom: green
5
- colorTo: blue
6
  sdk: gradio
7
  sdk_version: 3.6
8
- app_file: app.py
9
  pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+
2
  ---
3
+ title: hello_world_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.6
9
+ app_file: run.py
10
  pinned: false
11
  ---
 
 
__pycache__/run.cpython-36.pyc ADDED
Binary file (400 Bytes). View file
 
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!"
5
+
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
8
+ demo.launch()
screenshot.gif ADDED
screenshot.png ADDED