Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Yeyito
/
llm_contamination_detector
like
26
Runtime error
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
eb5eda7
llm_contamination_detector
/
app.py
Yeyito
Test
eb5eda7
over 1 year ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
gradio
as
gr
def
greet
(
model
):
return
"This model has a similarity score of: meh!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()