KyanChen commited on
Commit
d18e56b
1 Parent(s): 8bfc3cc
Files changed (3) hide show
  1. .gitignore +4 -0
  2. App_main.py +7 -0
  3. README.md +1 -1
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ .idea
2
+ __pycache__
3
+ Checkpoints
4
+ Results
App_main.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()
README.md CHANGED
@@ -5,7 +5,7 @@ colorFrom: blue
5
  colorTo: green
6
  sdk: gradio
7
  sdk_version: 3.0.20
8
- app_file: app.py
9
  pinned: false
10
  ---
11
 
 
5
  colorTo: green
6
  sdk: gradio
7
  sdk_version: 3.0.20
8
+ app_file: App_main.py
9
  pinned: false
10
  ---
11