Downloads · 30 days
0
JASVINDER1989/FIRST_PROJECT
FIRST_PROJECT is a machine learning model from JASVINDER1989. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
Downloads · 30 days
0
Access
Public
Updated Oct 1, 2024
Repo size
—
Likes
0
Public
Click a slice to open those files.
Other1.5 KB · 87%
From the Hugging Face model README
import gradio as gr
def greet(name, intensity): return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface( fn=greet, inputs=["text", "slider"], outputs=["text"], ) demo.launch()