Ehud Ben-Reuven
Ehud Ben-Reuven
In line https://github.com/karpathy/char-rnn/blob/master/train.lua#L127 there is a Lua syntax mistake the checkpoint vocab may be smaller than input vocab and pass the test the checkpoint may have a model which is...
The notebooks in Rethinking_2 folder import pymc3 and not pymc this results in a missing module error. I tried to manually change the notebook Chap_02 to use pymc but then...
The use of apply_dropout modify the graph to include dropout with a fixed drop_prob. But when testing or generating samples you want to set drop_prob to zero or remove the...
When trying to run a 64-bit simulator I got error message: No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386). I fixed this problem by doing: Project Target > Build...
referring to https://github.com/Newmu/dcgan_code/blob/master/faces/train_uncond_dcgan.py#L118 I tried adding my own bias just before the lrelu, but it is hard to tell if it helps: ``` b = bias_ifn((ndf), 'db') ... h =...
this will allow usage of fuel built in data-sets https://github.com/Newmu/dcgan_code/issues/10#issuecomment-159743526
I also modified load.py to work with the file names as they appear in Yan Lecun web site
gamma is missing from this line https://github.com/llSourcell/AI_for_video_games_demo/blob/master/value_iteration.py#L67 compare with correct use of gamma at https://github.com/llSourcell/AI_for_video_games_demo/blob/master/policy_iteration_demo.py#L51
issue #3 Code runs but I dont know if the numerical values are cofrrect