Metadata-Version: 2.1
Name: nnvisualizertf
Version: 0.6
Summary: Visualizing Tensorflow networks.
Author: Anton Krause
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Documentation
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: tensorflow
Project-URL: changelog, https://github.com/akdd11/nn_visualizer/blob/main/README.md
Project-URL: homepage, https://github.com/akdd11/nn_visualizer

# nn_visualizer
Visualizing Tensorflow neural networks.

Please see the *examples.ipynb* notebook for an example on how to use the package.

![example_output1.png](./doc/figures/example_output1.png)

Currently supporting:
* Input layers:
  * For dense networks with the shape (x_size)
  * For convolution with the shape (x_size, y_size, n_channels)
* Convolutional Network Layers:
  * Conv2D
  * MaxPooling2D
  * AveragePooling2D
* Dense Layers:
  * Dense (also as output)
  * Flatten

## Changes

### 0.6
* Supporting dense layers as input.

### 0.5
* Changed build tool to flit, now available as package from PyPi under the name **nnvisualizertf**.

### 0.4
* Changed build configuration.

### 0.3
* Changed build tool to hachtling.

### 0.2
* Renaming to comply with the python naming conventions.

### 0.1
* Initial version.
