Skip to content

Commit 48bc0ce

Browse files
author
rakibhhridoy
committed
v1.0.1
1 parent c3c93c9 commit 48bc0ce

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.gitattributes

-2
This file was deleted.

app.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from sklearn.metrics import plot_confusion_matrix, plot_roc_curve, plot_precision_recall_curve
1010
from sklearn.metrics import precision_score, recall_score
1111

12+
1213
def main():
1314
st.title('Binary Classification Web App')
1415
st.sidebar.title('Binary Classifier App')
@@ -17,7 +18,7 @@ def main():
1718

1819
@st.cache(persist = True)
1920
def load_data():
20-
df = pd.read_csv('/home/rhyme/Desktop/Project/mushrooms.csv')
21+
df = pd.read_csv('data/mushrooms.csv')
2122
le = LabelEncoder()
2223

2324
for col in df.columns:
File renamed without changes.

0 commit comments

Comments
 (0)