From dfd0da33c42f73350295c5df7a80b2060f04a393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Raczy=C5=84ski?= Date: Mon, 13 May 2024 21:05:29 +0200 Subject: [PATCH] fix predict.py --- predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predict.py b/predict.py index b674665..8d72ca2 100644 --- a/predict.py +++ b/predict.py @@ -4,7 +4,7 @@ from tensorflow.keras import Sequential import tensorflow as tf from sklearn.preprocessing import MinMaxScaler -test_data = pd.read_csv('./car_prices_test.csv') +test_data = pd.read_csv('./data/car_prices_test.csv') test_data.dropna(inplace=True) y_test = test_data['sellingprice'].astype(np.float32)