hotfix :)
This commit is contained in:
parent
dadb2cdd49
commit
ca74151be3
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user