Nixtla/hierarchicalforecast

Wrong argument name in evaluation section of README

Closed this issue · 0 comments

Description

In the README.md file, the evaluation code goes as
evaluator.evaluate(Y_hat_df=Y_rec_df, Y_test=Y_test_df.set_index('unique_id'),
tags=tags, benchmark='Naive')
whereas, it should be
evaluator.evaluate(Y_hat_df=Y_rec_df, Y_test_df=Y_test_df.set_index('unique_id'),
tags=tags, benchmark='Naive')

Link

No response