Update 'simple_regression.py'
Some checks failed
s449288-training/pipeline/head There was a failure building this commit

This commit is contained in:
Kacper Dudzic 2022-04-24 23:17:00 +02:00
parent c85e4e4f47
commit 76657a9957

View File

@ -56,14 +56,6 @@ model.save('lego_reg_model')
# Opcjonalne statystyki, wykresy # Opcjonalne statystyki, wykresy
''' '''
# Prosta ewaluacja
test_results = {'model': model.evaluate(
test_piece_counts,
test_prices, verbose=0)
}
print(test_results)
hist = pd.DataFrame(history.history) hist = pd.DataFrame(history.history)
hist['epoch'] = history.epoch hist['epoch'] = history.epoch
print(hist.tail()) print(hist.tail())