Closed jhyoocoder closed 5 years ago
Resolved by myself. It was due to tensorflow version mismatch. I've worked on tf 1.14, but I succeeded after downgrading to tf1.5. Thanks!
@jhyoocoder Can elaborate on your requirements.txt? I am facing the same issue - no reproducibility on mnist evaluate, am getting the same results like you initially
solved with #34
I got the performance of L2L better than that of Adam about quadratic problem.
python train.py --problem=quadratic --save_path=./quad
Evaluate with L2L; python evaluate.py --problem=quadratic --optimizer=L2L --path=./quad
Evaluate with Adam; python evaluate.py --problem=quadratic --optimizer=Adam --path=./quad
Epoch 10000 Log Mean Final Error: -0.47 Mean epoch time: 0.76 s EVALUATION Log Mean Final Error: -0.42 Mean epoch time: 0.31 s
Epoch 100 Log Mean Final Error: 0.18 Mean epoch time: 0.60 s