Louis VAUBOURDOLLE
commited on
Commit
•
74b5dc0
1
Parent(s):
562ddd9
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def sentence_builder(credit, age, tenure, balance, nb_prods, has_card, active, e
|
|
43 |
}]
|
44 |
df = pd.json_normalize(data)
|
45 |
res = bool(pl.predict(df)[0])
|
46 |
-
return res == 0 ? 'User will stay' : 'User will exit'
|
47 |
|
48 |
iface = gr.Interface(
|
49 |
sentence_builder,
|
|
|
43 |
}]
|
44 |
df = pd.json_normalize(data)
|
45 |
res = bool(pl.predict(df)[0])
|
46 |
+
return (res == 0) ? 'User will stay' : 'User will exit'
|
47 |
|
48 |
iface = gr.Interface(
|
49 |
sentence_builder,
|