Just removing debug code from Measures.py

This commit is contained in:
Petrônio Cândido de Lima e Silva 2018-07-20 17:39:59 -03:00 committed by GitHub
parent 4a4e168448
commit d317fc80cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -334,8 +334,6 @@ def get_point_statistics(data, model, **kwargs):
nforecasts = np.array(forecasts[:-1]) nforecasts = np.array(forecasts[:-1])
print(model.shortname)
ret.append(np.round(rmse(ndata[model.max_lag:], nforecasts), 2)) ret.append(np.round(rmse(ndata[model.max_lag:], nforecasts), 2))
ret.append(np.round(mape(ndata[model.max_lag:], nforecasts), 2)) ret.append(np.round(mape(ndata[model.max_lag:], nforecasts), 2))
ret.append(np.round(UStatistic(ndata[model.max_lag:], nforecasts), 2)) ret.append(np.round(UStatistic(ndata[model.max_lag:], nforecasts), 2))