LuniLand commited on
Commit
1a3bb12
β€’
1 Parent(s): 4684fef

Added gradio code

Browse files
.history/README_20221221152805.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: BearsClassifier
3
+ emoji: πŸ‘
4
+ colorFrom: red
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 3.14.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: apache-2.0
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
.history/README_20221221152957.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: DroneOrBird
3
+ emoji: πŸ‘
4
+ colorFrom: red
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 3.14.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: apache-2.0
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: BearsClassifier
3
  emoji: πŸ‘
4
  colorFrom: red
5
  colorTo: red
 
1
  ---
2
+ title: DroneOrBird
3
  emoji: πŸ‘
4
  colorFrom: red
5
  colorTo: red
gradio.app 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()