From 50c8a6095f056b0fcf7e58b00af1f1b16fbaed34 Mon Sep 17 00:00:00 2001 From: Sheaza Date: Wed, 5 Jun 2024 17:14:21 +0200 Subject: [PATCH] fix --- predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predict.py b/predict.py index e48d7c0..ff2c2c5 100644 --- a/predict.py +++ b/predict.py @@ -6,7 +6,7 @@ import matplotlib.pyplot as plt np.set_printoptions(threshold=np.inf) -data = pd.read_csv("MLFLOW/df_test.csv") +data = pd.read_csv("df_test.csv") X_test = data.drop("Performance Index", axis=1) y_test = data["Performance Index"]