joheras commited on
Commit
43ddd05
·
1 Parent(s): 2ddc43c

Incomplete

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import AutoModel
3
+
4
+ model = AutoModel.from_pretrained("keras-io/timeseries_transformer_classification")
5
+
6
+
7
+
8
+ iface = gr.Interface(fraud_detector,"dataframe",gr.outputs.Label(label="Fraud Level"))
9
+
10
+
11
+ iface.launch()