Reproducing M4 Results
I am having trouble reproducing the results on the M4 dataset. I am getting the following error when running the notebook for the m4:
ModuleNotFoundError Traceback (most recent call last)
ModuleNotFoundError: No module named 'summary'
When I follow the reproduction steps I run into this error.
Here is my build script.
#!/bin/bash make init make dataset make build config=experiments/m4/interpretable.gin make run command=storage/experiments/m4_interpretable/repeat=0,lookback=2,loss=MAPE/command
This may because you used the wrong notebook server. I came with the same error when I used the JupyterLab on my server directly to open the .ipynb files rather than using the one created by 'make notebook port=XXXX'.
My solution is:
- Finish training, forecasting and download the outcomes from my server to my computer(Mac).
- open docker on my PC.
- enter a terminal, 'make init' under the the N-BEATS folder where the downloaded outcomes are stored in ./storage/experiments/m4 for example.
- 'make notebook port=XXXX'
- open a browser, for example chrome.
- type 'localhost:XXXX' and open this website
- Now you reached the right notebook server.