Closed wuaalb closed 9 years ago
preprocesses_dataset
functions were swappedvae_vanilla
, now fixed@wuaalb
Thanks again for the fixes :). I had to make a few changes to the examples to fix #18 (in PR #19). Do you want to rebase or should i merge the changes?
Actually #18 didn't fix the bug - should be fixed in this commit
I rebased with the latest changes.. but I think that latest commit is wrong..
preprocesses_dataset = lambda bernoullisample: bernoullisample
should be
preprocesses_dataset = bernoullisample
otherwise it does nothing.. Thanks :)
Yes of course :)
PR #20 seems to fix the performance. Sorry for keeping changing the examples - i've just wanted them to run properly. Can I ask you to rebase again (sorry again!)
I've changed the initialisation in the Ladder code - i've think it should stay the way it is now.
Thanks for the help
Re-re-rebased :)
The changes I made to the Ladder initializer cli argument handling fixes a different problem than the one you fixed. I rewrote and commented that part, so maybe it is clearer what it does now. I kept 'uniform' as an option.. wasn't sure if you removed it on purpose or not.
great - seems fine with me.
merged #17
Fixes a number of small issues with the examples
argparse
were not very helpfulmnist_ladder
example, default value for command line argument-initval
was'relu'
while it should be a numeric value which depends on-init
(changed to'None'
meaning Lasagne default)vae_vanilla
training like other examples