Update 'pred.py'

This commit is contained in:
Wojciech Mikołajski 2023-06-17 20:42:26 +02:00
parent eae03d089c
commit 315ab5a573

View File

@ -17,7 +17,7 @@ X_test_processed.columns = X_test_processed.columns.astype(str)
scaler = StandardScaler()
X_test_scaled = scaler.fit_transform(X_test_processed)
model = tf.keras.models.load_model('app/savedmodel')
model = tf.keras.models.load_model('savedmodel')
predictions = model.predict(X_test_scaled)
print(predictions)