fix predict.py

This commit is contained in:
Krzysztof Raczyński 2024-05-13 21:05:29 +02:00
parent 4b3fdb7c23
commit dfd0da33c4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from tensorflow.keras import Sequential
import tensorflow as tf import tensorflow as tf
from sklearn.preprocessing import MinMaxScaler 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) test_data.dropna(inplace=True)
y_test = test_data['sellingprice'].astype(np.float32) y_test = test_data['sellingprice'].astype(np.float32)