Spaces:
Sleeping
Sleeping
John Graham Reynolds
commited on
Commit
·
a4995b7
1
Parent(s):
b27fafd
add basics
Browse files
README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
---
|
2 |
title: FixedPrecision
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.5.0
|
8 |
app_file: app.py
|
|
|
1 |
---
|
2 |
title: FixedPrecision
|
3 |
+
emoji: 🎯
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: greeb
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.5.0
|
8 |
app_file: app.py
|
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
def greet(name):
|
5 |
+
return 'Hello, ' + name + '!'
|
6 |
+
|
7 |
+
|
8 |
+
gr.Interface(fn=greet, inputs='text', outputs='text').launch()
|