abidlabs HF Staff commited on
Commit
5766b1b
·
verified ·
1 Parent(s): 02c6493

Upload folder using huggingface_hub

Browse files
Files changed (8) hide show
  1. .gitignore +1 -0
  2. DESCRIPTION.md +1 -0
  3. README.md +2 -8
  4. app.py +11 -0
  5. requirements.txt +1 -0
  6. run.ipynb +1 -0
  7. run.py +11 -0
  8. screenshot.png +0 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ *.gif
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,6 @@
1
  ---
2
- title: H22222
3
- emoji: 🐢
4
- colorFrom: green
5
- colorTo: green
6
  sdk: gradio
7
  sdk_version: 5.44.0
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
+ title: h22222
3
+ app_file: run.py
 
 
4
  sdk: gradio
5
  sdk_version: 5.44.0
 
 
6
  ---
 
 
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+ return "Hello " + name + "!"
6
+
7
+
8
+ demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+ if __name__ == "__main__":
11
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio==5.43.1
run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: hello_world\n", "### The simplest possible Gradio demo. It wraps a 'Hello {name}!' function in an Interface that accepts and returns text.\n", " "]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "\n", "\n", "def greet(name):\n", " return \"Hello \" + name + \"!\"\n", "\n", "\n", "demo = gr.Interface(fn=greet, inputs=\"textbox\", outputs=\"textbox\")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
run.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+ return "Hello " + name + "!"
6
+
7
+
8
+ demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+ if __name__ == "__main__":
11
+ demo.launch()
screenshot.png ADDED