Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
gr.Markdown("# Instruction Tuning with Unsloth")
|
4 |
+
|
5 |
def greet(name):
|
6 |
return "Hello " + name + "!!"
|
7 |
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
demo = gr.Interface(fn=greet,
|
13 |
+
inputs="text",
|
14 |
+
outputs="text")
|
15 |
demo.launch()
|