Skip to content

Latest commit

 

History

History
 
 

activation_clustering

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Activation Clustering

Overview

This is an implementation of the Activation Clustering model used in Explaining Deep Neural Networks using Unsupervised Clustering.

Instructions

  1. Clone the repository:

    git clone https://github.com/google-research/google-research.git --depth=1
    
  2. Build the docker image (includes downloading example model and notebooks):

    cd google-research/activation_clustering && docker build -t activation_clustering .
    
  3. Run the docker image as follows, which starts a jupyter server in the docker container and allows access from the host machine:

    docker run -it -p 8888:8888 activation_clustering
    
  4. In a web browser, navigate to the address shown by the docker run command above, it should look something like http://127.0.0.1:8888/?token=1234abcd....

  5. Follow the example notebooks in examples/cifar10/ for training an activation clustering model from a baseline model, and for visualizing similar images and concepts.