코랩 기초 및 파이썬 기초 수정

This commit is contained in:
Mingu Kim
2026-05-26 22:31:40 +09:00
parent a1cb6fcdf9
commit ba88ef63f1
23 changed files with 4707 additions and 77 deletions
+13
View File
@@ -0,0 +1,13 @@
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
api_name="predict"
)
demo.launch()