-
Notifications
You must be signed in to change notification settings - Fork 19.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model config #376
Comments
One of the goals of Keras is not to have separate definition mechanism unlike Caffe.But having it couldn't hurt On Fri, Jul 10, 2015 at 6:25 PM, Luke de Oliveira
|
I think the existing A few comments:
Overall, I think simple improvements to the existing |
* jax ignore sorted in top_k * Ignore sorted argument for jax top_k `sorted=True` is a strictly stronger guarantee than `sorted=False`, so better to always return `sorted=True` than add an annoying inconsistency between what backends support what.
* jax ignore sorted in top_k * Ignore sorted argument for jax top_k `sorted=True` is a strictly stronger guarantee than `sorted=False`, so better to always return `sorted=True` than add an annoying inconsistency between what backends support what.
Hey @fchollet, I'm using keras in some research, and I've found myself making a config system like caffe (except I'm using
json
in lieu ofprotobuf
). I've been using a system like:Which is equivalent to
If I organized this in a nice way, would this be useful to Keras as a PR?
The text was updated successfully, but these errors were encountered: