An open API service indexing awesome lists of open source software.

https://github.com/camdavidsonpilon/tf-examples

my tf examples for now
https://github.com/camdavidsonpilon/tf-examples

Last synced: 4 months ago
JSON representation

my tf examples for now

Awesome Lists containing this project

README

          

# README

### Lessons learned

1. If you see oscillating training loss, likely the descent steps are bouncing between two "valleys" - try using MomentumOptimizer.
2. Playing around with the step_size can help avoid non-covergence to nan
3. The std of the random_normal of the initial weights should be quite small (ex: `stddev=0.01`)
4. Also using RMSPropOptimizer really seems to help decrease the obj function (at least, better than the GradientDescent)