Skip to content

Commit e670c3c

Browse files
author
PyCaret
authored
Update app.py
1 parent 954441c commit e670c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import os, ast
22
import pandas as pd
33

4-
pd.set_option("display.max_columns", 101)
5-
64
dataset_path = "https://raw.githubusercontent.com/" + os.environ["GITHUB_REPOSITORY"] +"/master/dataset.csv"
75
data = pd.read_csv(dataset_path)
86
data.head()
97

108
from pycaret.classification import *
119
clf1 = setup(data, target = 'Purchase', session_id=123, silent=True, html=False)
1210

11+
pd.set_option("display.max_columns", 999)
12+
1313
c = compare_models()
1414

1515
save_model(c, 'model')

0 commit comments

Comments
 (0)