Justin Bayer

Results 14 comments of Justin Bayer

The bad thing here, IMHO, is not that keyword arguments are not supported. I can see that it would complicate the signature of vmap. The problem is that it's just...

Ok, I can try this. I see how this is maybe not ideal, but that's ok for now. I am just wondering how I can find out how I could...

I have been using [streamlit](https://streamlit.io/) for showing the renderings. If you have the html, it is as easy as this: ```python import streamlit.components.v1 as components html_string = load_html_rendering() # this...

I personally stopped working on it because I found it to be way too much work, considering that alternatives like rmsprop and sgd+agressive momentum seem to work equally well. If...

According to [1], sgd+mom does. Rmsprop works really well according to my own experiences, and it's what I have been using in [2]. [1] Sutskever, Ilya, et al. "On the...

Some things: - numpy doc usage - some pep8 violations (e.g. 79 char line limit, https://pypi.python.org/pypi/pep8 is a good tool) - reference - can you find more descriptive names for...

Hey Daniel, Sorry for not getting back to this earlier. One more point: do you have a reference for the method employed? Best, -Justin