hotfix :)

This commit is contained in:
Dominik Strzako 2021-05-15 16:40:43 +02:00
parent dadb2cdd49
commit ca74151be3

View File

@ -13,6 +13,8 @@ test_df =pd.read_csv('test.csv')
y_test = test_df.quality
x_test = test_df.drop(['quality'], axis= 1)
x_test=((x_test-x_test.min())/(x_test.max()-x_test.min())) #Normalizacja
y_pred = model.predict(x_test)
y_pred = np.around(y_pred, decimals=0)