Skip to content

Commit 95a0188

Browse files
author
PyCaret
authored
Update app.py
1 parent 73128cd commit 95a0188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
data = pd.read_csv(dataset_path)
66
data.head()
77

8-
target = ast.literal_eval(os.environ["INPUT_MYINPUT"])
8+
target = os.environ["INPUT_MYINPUT"]
99

1010
from pycaret.classification import *
1111
clf1 = setup(data, target = target, session_id=123, silent=True, html=False, log_experiment=True, experiment_name='exp1')
@@ -14,4 +14,4 @@
1414

1515
save_model(c, 'model')
1616

17-
logs_exp1 = get_logs(save=True)
17+
logs_exp1 = get_logs(save=True)

0 commit comments

Comments
 (0)