https://github.com/google-research/reverse-engineering-neural-networks
A collection of tools for reverse engineering neural networks.
https://github.com/google-research/reverse-engineering-neural-networks
deep-learning interpretability machine-learning
Last synced: 15 days ago
JSON representation
A collection of tools for reverse engineering neural networks.
- Host: GitHub
- URL: https://github.com/google-research/reverse-engineering-neural-networks
- Owner: google-research
- License: apache-2.0
- Created: 2020-07-23T18:12:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-20T08:53:47.000Z (over 1 year ago)
- Last Synced: 2025-03-31T12:09:05.785Z (22 days ago)
- Topics: deep-learning, interpretability, machine-learning
- Language: Jupyter Notebook
- Homepage:
- Size: 2.79 MB
- Stars: 153
- Watchers: 11
- Forks: 27
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reverse Engineering Neural Networks (RENN)

`renn` is a collection of python utilities for reverse engineering neural networks. The goal of the package is to be a shared repository of code, notebooks, and ideas for how to crack open the black box of neural networks to understand what they are doing and how they work. Our focus is on research applications.
Currently, the package focuses on understanding recurrent neural networks (RNNs). We provide code to build and train common RNN architectures, as well as code for understanding the dynamics of trained RNNs through dynamical systems analyses. The core tools for this involve finding and analyzing approximate fixed points of the dynamics of a trained RNN.
All of `renn` uses the [JAX](https://github.com/google/jax/) machine learning library for building neural networks and for automatic differentiation. We assume some basic familiarity with JAX in the documentation.
*See the [documentation](https://reverse-engineering-neural-networks.readthedocs.io/en/latest/) for more information.*
Authors:
- Niru Maheswaranathan ([email protected])
- Vinay Ramasesh ([email protected])