Skip to content

Instantly share code, notes, and snippets.

@zaltoprofen
Created December 16, 2016 11:03
Show Gist options
  • Save zaltoprofen/1f523c678094406dc7ff1babd1354e2a to your computer and use it in GitHub Desktop.
Save zaltoprofen/1f523c678094406dc7ff1babd1354e2a to your computer and use it in GitHub Desktop.
File "/path/to/lib/python3.4/site-packages/chainer/training/trainer.py", line 289, in run
update()
File "/path/to/lib/python3.4/site-packages/chainer/training/updater.py", line 170, in update
self.update_core()
File "/path/to/lib/python3.4/site-packages/chainer/training/updater.py", line 182, in update_core
optimizer.update(loss_func, *in_vars)
File "/path/to/lib/python3.4/site-packages/chainer/optimizer.py", line 415, in update
self.update_one(param, states[name])
File "/path/to/lib/python3.4/site-packages/chainer/optimizer.py", line 431, in update_one
self.update_one_gpu(param, state)
File "/path/to/lib/python3.4/site-packages/chainer/optimizers/adam.py", line 44, in update_one_gpu
'adam')(param.grad, self.lr, 1 - self.beta1, 1 - self.beta2,
File "/path/to/lib/python3.4/site-packages/chainer/optimizers/adam.py", line 49, in lr
fix1 = 1. - self.beta1 ** self.t
OverflowError: (34, 'Numerical result out of range')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment