Spaces:
Sleeping
Sleeping
import gradio as gr | |
gr.load("models/google/gemma-2-2b-it").launch() | |
""" | |
gr.load( | |
"google/gemma-2-2b-it", | |
src = "models", | |
inputs = [gr.Textbox(label = "Input")], | |
outputs = [gr.Textbox(label = "Output")], | |
title = "Demo", | |
examples = [ | |
["Hello, Gemma."] | |
] | |
).launch() | |
""" |