Hi,
I tried running
interp = ClassificationInterpretation.from_learner(learn)
and getting Floating point exception (core dumped) and the process stops
What can be possible causes for that?
Hi,
I tried running
interp = ClassificationInterpretation.from_learner(learn)
and getting Floating point exception (core dumped) and the process stops
What can be possible causes for that?
similarly i am getting error now in
learn.fit_one_cycle(1, 1e-2, moms=(0.8,0.7))
after epoch the process stop with same floating point exception
What could be the bug? nvidia driver or fastai code
Hi Yash,
It sounds like you are trying to run in mixed-precision with Fp32/Fp16, correct ?
Do you have a Titan or a 1080 gpu ? That can be a very different architecture.
Hi Eric,