IUM_s464980/predict.py
Sheaza 7cee641b3b
All checks were successful
s464980-evaluation/pipeline/head This commit looks good
fix metric to rmse bc continuous values xd
2024-05-14 22:23:41 +02:00

21 lines
559 B
Python

import pandas as pd
from tensorflow import keras
import numpy as np
from sklearn.metrics import root_mean_squared_error
np.set_printoptions(threshold=np.inf)
data = pd.read_csv("df_test.csv")
X_test = data.drop("Performance Index", axis=1)
y_test = data["Performance Index"]
model = keras.models.load_model("model.keras")
predictions = model.predict(X_test)
with open("predictions.txt", "w") as f:
f.write(str(predictions))
accuracy = root_mean_squared_error(y_test, predictions)
with open("accuracy.txt", 'a') as file:
file.write(str(accuracy))