| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A collection of tools to analyze and visualize deep neural networks.
The original goal of the toolbox was visualizing networks that solve image classifications tasks. It was motivated by the paper:
The main design goals are (not fully achieved yet):
This is still work in progress. Below we document some aspects already realized.
Example of a network visualization that classifies different shapes

The main window consists of activation maps for selected layer, the input and the structure of a network where the layers of interest can be chosen
Installation process is just installing packages listed in the requirements.txt
python virtualenv:
Install your virtualenv following The Hitchhiker’s Guide to Python, check that python version >=3.8 is set as primary interpreter
After activating the enviroment, run the command to install necessary libraries:
$pip install -r requirements.txt
Install PyTorch.
$ conda install pytorch torchvision cuda80 -c soumith
Then run the PyTorch MNIST example, tpye
$ python main.py --framework=torch
Run $ pytest to execute all tests.
In order to build the Sphinx documentation, cd into the doc directory and run make html. Then open build/html/index.html. Note: Sphinx executes all found modules, which can exhibit side-effects. For instance, loading TensorFlow takes a lot of time, and so building the documentation does as well.
When adding a new python file, run sphinx-apidoc <folder> -o doc/source to generate an .rst file indexing the modules. When the apidoc tool finds modules it has already created indexes for, it will complain that those already exist. It may be neccessary to delete them and regenerate them if you add a submodule, I'm not currently sure.
| Back | FazBrowse Home | New Git URL |