We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using nbeatsx_example.ipynb, and add some codes as follow:
result jpg https://github.com/943fansi/GuideOfP/blob/main/1.jpg
print(y_true.shape, y_hat.shape, block.shape) plt.plot(range(168, 336), y_true.flatten(), label='Price') plt.plot(range(168, 336), y_hat.flatten(), linestyle='dashed', label='Forecast') plt.axvline(168, color='black') plt.legend() plt.grid() plt.xlabel('Hour') plt.ylabel('Price') plt.figure() print(block.shape, len(block)) plt.plot(range(168, 336), block[:, 0, :].flatten(), linestyle='dashed', label='block Forecast') plt.plot(range(168, 336), block[:, 1, :].flatten(), linestyle='dashed', label='block Forecast') plt.show()```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using nbeatsx_example.ipynb, and add some codes as follow:
result jpg
https://github.com/943fansi/GuideOfP/blob/main/1.jpg
The text was updated successfully, but these errors were encountered: