ium_470607/lab5/eval/eval.py

18 lines
385 B
Python
Raw Normal View History

2021-05-14 21:52:14 +02:00
import csv
2021-05-02 22:01:32 +02:00
import pandas as pd
import tensorflow as tf
X_test = pd.read_csv('test.csv')
2021-05-14 21:52:14 +02:00
Y_test = X_test.pop('stabf')
Y_test = pd.get_dummies(Y_test)
2021-05-02 22:01:32 +02:00
2021-05-14 21:52:14 +02:00
model = tf.keras.models.load_model('grid-stability-dense.h5')
results = model.evaluate(X_test, Y_test, batch_size=64)
2021-05-02 22:01:32 +02:00
2021-05-14 21:52:14 +02:00
with open('eval.csv', 'a', newline='') as fp:
wr = csv.writer(fp, dialect='excel')
wr.writerow(results)
2021-05-02 22:01:32 +02:00