Skip to content

Commit

Permalink
Major update of README. Added installation instructions and CI/PyPI s…
Browse files Browse the repository at this point in the history
…tatus.

PiperOrigin-RevId: 432196089
  • Loading branch information
james-martens authored and DKSdev committed Mar 3, 2022
1 parent a126b1d commit 00dc283
Showing 1 changed file with 92 additions and 32 deletions.
124 changes: 92 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,124 @@
![CI status](https://github.com/deepmind/dks/workflows/ci/badge.svg)
![pypi](https://img.shields.io/pypi/v/dks)

# Official Python package for Deep Kernel Shaping (DKS) and Tailored Activation Transformations (TAT)

This Python package implements the activation function transformations and
weight initializations used in the [DKS paper] and [TAT paper]. It supports the
JAX, PyTorch, and TensorFlow tensor programming frameworks.
weight initializations used Deep Kernel Shaping (DKS) and Tailored Activation
Transformations (TAT). DKS and TAT, which were introduced in the [DKS paper] and
[TAT paper], are methods constructing/transforming neural networks to make them
much easier to train. For example, these methods can be used in conjunction with
K-FAC to train deep vanilla deep convnets (without skip connections or
normalization layers) as fast as standard ResNets of the same depth.

The package supports the JAX, PyTorch, and TensorFlow tensor programming
frameworks.

Questions/comments about the code can be sent to
[[email protected]](mailto:[email protected]).

NOTE: we are not taking code contributions from Github at this time. All PRs
**NOTE:** we are not taking code contributions from Github at this time. All PRs
from Github will be rejected. Instead, please email us if you find a bug.

## Usage

For each tensor programming framework supported there is a corresponding
directory/subpackage which handles the activation function transformations and
weight initializations. It's up to the user to import these and use them
appropriately within their model code. Activation functions are transformed by
the function `get_transformed_activations()` in module `activation_transform` of
the appropriate subpackage. Weight sampling is done using functions inside of
the module `parameter_sampling_functions` of said subpackage.
For each of the supported tensor programming frameworks, there is a
corresponding directory/subpackage which handles the activation function
transformations and weight initializations. It's up to the user to import these
and use them appropriately within their model code. Activation functions are
transformed by the function `get_transformed_activations()` in module
`activation_transform` of the appropriate subpackage. Weight sampling is done
using functions inside of the module `parameter_sampling_functions` of said
subpackage.

In addition to using these functions, the user is responsble for ensuring that
their model meets the architectural requirements of DKS/TAT, and for converting
any weighted sums in their model to "normalized sums" (which are weighted sums
whoses non-trainable weights have a sum of squares equal to 1). This package
doesn't currently include an implementation of Per-Location Normalization (PLN)
data pre-processing. While not required for CIFAR or ImageNet, PLN could
possibly be important for other datasets. See the section titled "Summary of our
method" in the [DKS paper] for more details about the requirements and execution
steps of DKS. TAT is very similar except that it requires the maximal C map
function instead of the maximal slope function (which can be computed from the
former).
potentially be important for other datasets. See the section titled "Summary of
our method" in the [DKS paper] for more details about the requirements and
execution steps of DKS. To read about the additional requirements of TAT, such
as the subset maximizing function, refer to Appendix B of the [TAT paper].

Note that ReLUs are only partially supported by DKS, and their use is *highly*
discouraged. Instead, one should use Leaky ReLUs, which are fully supported by
DKS, and work especially well with TAT.
Note that ReLUs are only partially supported by DKS, and unsupported by TAT, and
their use is *highly* discouraged. Instead, one should use Leaky ReLUs, which
are fully supported by DKS, and work especially well with TAT.

Note that in order to avoid having to import all of the tensor frameworks, the
user is required to individually import whatever framework subpackage they want.
e.g. `import dks.jax`. Meanwhile, `import dks` won't actually do anything.
Note that in order to avoid having to import all of the tensor programming
frameworks, the user is required to individually import whatever framework
subpackage they want. e.g. `import dks.jax`. Meanwhile, `import dks` won't
actually do anything.

## Example

`dks.examples.haiku.modified_resnet` is a Haiku ResNet model which has been
modified as described in the DKS/TAT papers, and includes support for both DKS
and TAT. (By default, it removes the normalization layers or skip connections
found in ResNets, making it a "vanilla network".) It can be used as an
instructive example for how to construct DKS/TAT models using this package. See
the section titled "Application to various modified ResNets" from the
[DKS paper] for more details.
and TAT. By default, it removes the normalization layers and skip connections
found in standard ResNets, making it a "vanilla network". It can be used as an
instructive example for how to build DKS/TAT models using this package. See the
section titled "Application to various modified ResNets" from the [DKS paper]
for more details.

## Installation

**Insert instructions here once they are known**
This package can be installed directly from GitHub using `pip` with

```bash
pip install git+https://github.com/deepmind/dks.git
```

or

```bash
pip install -e git+https://github.com/deepmind/dks.git#egg=dks[<extras>]
```

or from PyPI with

```bash
pip install dks
```

or

```bash
pip install dks[<extras>]
```

Here `<extras>` is a common-separated list (with no spaces) of strings that can
be passed to install extra dependencies for different tensor programming
frameworks. Valid strings are `jax`, `tf`, and `pytorch`. So for example, to
install `dks` with the extra requirements for JAX and PyTorch, one does

```bash
pip install dks[jax,pytorch]
```

## Testing

To run tests in a Python virtual environment with specific pinned versions of
all the dependencies one can do:

```bash
git clone https://github.com/deepmind/dks.git
cd dks
./test.sh
```

However, it is strongly recommended that you run the tests in the same Python
environment (with the same package versions) as you plan to actually use `dks`.
This can be accomplished by installing `dks` for all three tensors programming
frameworks (e.g. with `pip install dks[jax,pytorch,tf]` or some other
installation method), and then doing

It is strongly recommended that you run the tests for the library using `python
-m pytest -n "${N_JOBS}" tests` the same Python environment in which you plan to
use the library. Note that this is different from running the included `test.sh`
script, which creates a separate virtual environment with very specific versions
for the package's dependencies.
```bash
pip install pytest-xdist
git clone https://github.com/deepmind/dks.git
cd dks
python -m pytest -n 16 tests
```

## Disclaimer

Expand Down

0 comments on commit 00dc283

Please sign in to comment.