Spaces:
Runtime error
Runtime error
File size: 246 Bytes
43ddd05 |
1 2 3 4 5 6 7 8 9 10 11 |
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() |