joheras's picture
Incomplete
43ddd05
raw
history blame
246 Bytes
import gradio as gr
from transformers import AutoModel
model = AutoModel.from_pretrained("keras-io/timeseries_transformer_classification")
iface = gr.Interface(fraud_detector,"dataframe",gr.outputs.Label(label="Fraud Level"))
iface.launch()