Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tykiww
/
lora_instruction_tuning
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0bb2563
lora_instruction_tuning
/
app.py
tykiww
Update app.py
0bb2563
verified
10 months ago
raw
Copy download link
history
blame
Safe
243 Bytes
import
gradio
as
gr
gr.Markdown(
"# Instruction Tuning with Unsloth"
)
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet,
inputs=
"text"
,
outputs=
"text"
)
demo.launch()