Skip to content
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

Enhancements #116

Open
michaelklachko opened this issue Nov 14, 2018 · 5 comments
Open

Enhancements #116

michaelklachko opened this issue Nov 14, 2018 · 5 comments
Labels
question Further information is requested

Comments

@michaelklachko
Copy link

michaelklachko commented Nov 14, 2018

  1. display weights (in addition to activations)

  2. display how activations/weights change during training. For example, I should be able to point to checkpoint directory where my model is saved every epoch (or every few iterations), and then hit 'play' button to see how a particular feature map or weights filter is changing as I move between epochs/iterations.

  3. display which inputs contribute the most to the activations, at every layer.

These additional features would be very useful for debugging, for model compression, for identifying information flows (e.g. in a DenseNet), for saliency analysis, and many other things as well.

@CharlesLiuyx
Copy link
Member

Nice suggestions! Thanks a lot.

The first problem need to be solved is the API of TensorFlow.js is limited which is not powerful compare to TensorFlow. Feel hard to extract every relative weights, parameters and contributors in the models.

Can this features be visualized by TensorBoard?

@michaelklachko
Copy link
Author

Can this features be visualized by TensorBoard?

yes, I think so.

@CharlesLiuyx
Copy link
Member

CharlesLiuyx commented Nov 14, 2018

Our framework based on TensorFlow.js. So when it comes to the model part, it depends on the implements and APIs of TensorFlow.js because we need to run our model in browser. Our team will try to add this features.

If you have some materials about this topic please refer them to me. Thanks

@zchholmes zchholmes added the question Further information is requested label Nov 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

5 participants
@michaelklachko @zchholmes @CharlesLiuyx and others