In file `DUDL_ANN_multioutput.ipynb` there is a error at session "plot the raw model outputs" The following code: ```plt.plot(yHat.detach(),'s-',markerfacecolor='w')``` should be fixed with: ```plt.plot(sm(yHat.detach()),'s-',markerfacecolor='w')```
In file
DUDL_ANN_multioutput.ipynbthere is a error at session "plot the raw model outputs"The following code:
plt.plot(yHat.detach(),'s-',markerfacecolor='w')should be fixed with:
plt.plot(sm(yHat.detach()),'s-',markerfacecolor='w')