I get the error "No module named fastai.learner" when I run:
!python generate.py -model notewise_generator -output notewise_generator_samples --random_freq .8 --trunc 3
in BasicIntro.ipynb.
The error occurs for all the fastai applications that you import:
from fastai.learner import *
from fastai.rnn_reg import *
from fastai.rnn_train import *
from fastai.nlp import *
from fastai.lm_rnn import *
Also the way fastai structure their modules (http://docs.fast.ai/index.html) seem to be different from what is used in this repo.