Hi,
I’m running latest version of notebook from Lesson resources on my Windows laptop with 960m GPU, that is not supported by pytorch 0.3, so using latest conda env with pytorch 0.4.0.
I’m running into same problem as NotImplementedError: During the fitting of Language Model in rnn_reg.py
learner.fit(lrs/2, 1, wds=wd, use_clr=(32,2), cycle_len=1)
debugging proves that there is no Embedding in fastai\lib\site-packages\torch\nn\backends\backend.py
when calling self.function_classes.get(name)
where name
is 'Embedding'
.
I wonder is there a path forward to solve this? Should I open this kind of issue in pytorch github?
P.S. Is it OK not to have backward compatability for pytorch? E.g. functions that worked in 0.3 don’t work in 0.4