diff --git a/README.md b/README.md
index f248d35..ba58620 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,14 @@
-## Tools to Design or Visualize Architecture of Neural Network
+# Tools to Design or Visualize Architecture of Neural Network
-1. [**Net2Vis**](https://viscom.net2vis.uni-ulm.de/OG1Br2BAkYSwwrV6CADl4X5EfErFjUzvuUwXWDdLbdsIXNhb9L): Net2Vis automatically generates abstract visualizations for convolutional neural networks from Keras code.
+## [Net2Vis](https://viscom.net2vis.uni-ulm.de/OG1Br2BAkYSwwrV6CADl4X5EfErFjUzvuUwXWDdLbdsIXNhb9L)
-
+Net2Vis automatically generates abstract visualizations for convolutional neural networks from Keras code.
-2. [**visualkeras**](https://github.com/paulgavrikov/visualkeras/) : Visualkeras is a Python package to help visualize Keras (either standalone or included in tensorflow) neural network architectures. It allows easy styling to fit most needs. As of now it supports layered style architecture generation which is great for CNNs (Convolutional Neural Networks) and a grap style architecture.
+
+
+## [visualkeras](https://github.com/paulgavrikov/visualkeras/)
+
+Visualkeras is a Python package to help visualize Keras (either standalone or included in tensorflow) neural network architectures. It allows easy styling to fit most needs. As of now it supports layered style architecture generation which is great for CNNs (Convolutional Neural Networks) and a grap style architecture.
```python
import visualkeras
@@ -18,47 +22,57 @@ visualkeras.layered_view(model, to_file='output.png').show() # write and show
visualkeras.layered_view(model)
```
-
+
-3. [**draw_convnet**](https://github.com/gwding/draw_convnet) : Python script for illustrating Convolutional Neural Network (ConvNet)
+## [draw_convnet](https://github.com/gwding/draw_convnet)
- 
+Python script for illustrating Convolutional Neural Network (ConvNet)
-4. [**NNSVG**](http://alexlenail.me/NN-SVG/LeNet.html)
+
- 
+## [NNSVG](http://alexlenail.me/NN-SVG/LeNet.html)
- 
+
- 
+
-5. **[PlotNeuralNet](https://github.com/HarisIqbal88/PlotNeuralNet)** : Latex code for drawing neural networks for reports and presentation. Have a look into examples to see how they are made. Additionally, lets consolidate any improvements that you make and fix any bugs to help more people with this code.
+
- 
+## [PlotNeuralNet](https://github.com/HarisIqbal88/PlotNeuralNet)
- 
+Latex code for drawing neural networks for reports and presentation. Have a look into examples to see how they are made. Additionally, lets consolidate any improvements that you make and fix any bugs to help more people with this code.
-6. **[Tensorboard](https://www.tensorflow.org/tensorboard/graphs)** - TensorBoard’s **Graphs dashboard** is a powerful tool for examining your TensorFlow model.
+
- 
+
-7. **[Caffe](https://github.com/BVLC/caffe/blob/master/python/caffe/draw.py)** - In Caffe you can use [caffe/draw.py](https://github.com/BVLC/caffe/blob/master/python/caffe/draw.py) to draw the NetParameter protobuffer:
+## [Tensorboard](https://www.tensorflow.org/tensorboard/graphs)
- 
+TensorBoard’s **Graphs dashboard** is a powerful tool for examining your TensorFlow model.
-8. **[Matlab](http://www.mathworks.com/help/nnet/ref/view.html)**
+
- 
+## [Caffe](https://github.com/BVLC/caffe/blob/master/python/caffe/draw.py)
-9. [**Keras.js**](https://transcranial.github.io/keras-js/#/inception-v3)
+In Caffe you can use [caffe/draw.py](https://github.com/BVLC/caffe/blob/master/python/caffe/draw.py) to draw the NetParameter protobuffer:
- 
+
-9. **[keras-sequential-ascii](https://github.com/stared/keras-sequential-ascii/)** - A library for [Keras](https://keras.io/) for investigating architectures and parameters of sequential models.
+## [Matlab](http://www.mathworks.com/help/nnet/ref/view.html)
-**VGG 16 Architecture**
+
-```
+## [Keras.js](https://transcranial.github.io/keras-js/#/inception-v3)
+
+
+
+## [keras-sequential-ascii](https://github.com/stared/keras-sequential-ascii/)
+
+A library for [Keras](https://keras.io/) for investigating architectures and parameters of sequential models.
+
+### VGG 16 Architecture
+
+```text
OPERATION DATA DIMENSIONS WEIGHTS(N) WEIGHTS(%)
Input ##### 3 224 224
@@ -110,77 +124,90 @@ visualkeras.layered_view(model)
softmax ##### 1000
```
-10. **[ Netron ](https://github.com/lutzroeder/Netron)**
+## [Netron](https://github.com/lutzroeder/Netron)
- 
+
-11. **[DotNet](https://github.com/martisak/dotnets)**
+## [DotNet](https://github.com/martisak/dotnets)
- 
+
-12. [**Graphviz**](http://www.graphviz.org/) : **[Tutorial](https://tgmstat.wordpress.com/2013/06/12/draw-neural-network-diagrams-graphviz/)**
+## [Graphviz](http://www.graphviz.org/)
- 
+**[Tutorial](https://tgmstat.wordpress.com/2013/06/12/draw-neural-network-diagrams-graphviz/)**
-13. **[Keras Visualization](https://keras.io/visualization/)** - The [keras.utils.vis_utils module](https://keras.io/visualization/) provides utility functions to plot a Keras model (using graphviz)
+
- 
+## [Keras Visualization](https://keras.io/visualization/)
-14. **[Conx](https://conx.readthedocs.io/en/latest/index.html)** - The Python package `conx` can visualize networks with activations with the function `net.picture()` to produce SVG, PNG, or PIL Images like this:
+The [keras.utils.vis_utils module](https://keras.io/visualization/) provides utility functions to plot a Keras model (using graphviz)
- 
+
-15. **[ENNUI](https://math.mit.edu/ennui/)** - Working on a drag-and-drop neural network visualizer (and more). Here's an example of a visualization for a LeNet-like architecture.
+## [Conx](https://conx.readthedocs.io/en/latest/index.html)
- 
+The Python package `conx` can visualize networks with activations with the function `net.picture()` to produce SVG, PNG, or PIL Images like this:
-16. **NNet - R Package** - **[Tutorial](https://beckmw.wordpress.com/2013/03/04/visualizing-neural-networks-from-the-nnet-package/)**
+
-```
+## [ENNUI](https://math.mit.edu/ennui/)
+
+Working on a drag-and-drop neural network visualizer (and more). Here's an example of a visualization for a LeNet-like architecture.
+
+
+
+## NNet - R Package
+
+**[Tutorial](https://beckmw.wordpress.com/2013/03/04/visualizing-neural-networks-from-the-nnet-package/)**
+
+```R
data(infert, package="datasets")
plot(neuralnet(case~parity+induced+spontaneous, infert))
```
-[](https://
+
-17. **[GraphCore](https://www.graphcore.ai/posts/what-does-machine-learning-look-like)** - These approaches are more oriented towards visualizing neural network operation, however, NN architecture is also somewhat visible on the resulting diagrams.
+## [GraphCore](https://www.graphcore.ai/posts/what-does-machine-learning-look-like)
-**AlexNet**
+These approaches are more oriented towards visualizing neural network operation, however, NN architecture is also somewhat visible on the resulting diagrams.
- 
+### AlexNet
- **ResNet50**
+
-18. [**Neataptic**](https://wagenaartje.github.io/neataptic/ )
+### ResNet50
-Neataptic offers flexible neural networks; neurons and synapses can be removed with a single line of code. No fixed architecture is required for neural networks to function at all. This flexibility allows networks to be shaped for your dataset through neuro-evolution, which is done using multiple threads.
+
- 
+## [Neataptic](https://wagenaartje.github.io/neataptic/)
-19. **[TensorSpace](https://tensorspace.org/)** : TensorSpace is a neural network 3D visualization framework built by TensorFlow.js, Three.js and Tween.js. TensorSpace provides Layer APIs to build deep learning layers, load pre-trained models, and generate a 3D visualization in the browser. By applying TensorSpace API, it is more intuitive to visualize and understand any pre-trained models built by TensorFlow, Keras, TensorFlow.js, etc.
+Neataptic offers flexible neural networks; neurons and synapses can be removed with a single line of code. No fixed architecture is required for neural networks to function at all. This flexibility allows networks to be shaped for your dataset through neuro-evolution, which is done using multiple threads.
- **[Tutorial](https://www.freecodecamp.org/news/tensorspace-js-a-way-to-3d-visualize-neural-networks-in-browsers-2c0afd7648a8/)**
+
- 
+## [TensorSpace](https://tensorspace.org/)
-
+TensorSpace is a neural network 3D visualization framework built by TensorFlow.js, Three.js and Tween.js. TensorSpace provides Layer APIs to build deep learning layers, load pre-trained models, and generate a 3D visualization in the browser. By applying TensorSpace API, it is more intuitive to visualize and understand any pre-trained models built by TensorFlow, Keras, TensorFlow.js, etc.
-20. **[Netscope CNN Analyzer](http://dgschwend.github.io/netscope/quickstart.html)**
+**[Tutorial](https://www.freecodecamp.org/news/tensorspace-js-a-way-to-3d-visualize-neural-networks-in-browsers-2c0afd7648a8/)**
- 
+
-21. **[Monial](https://github.com/mlajtos/moniel)**
+## [Netscope CNN Analyzer](http://dgschwend.github.io/netscope/quickstart.html)
- Interactive Notation for Computational Graphs https://mlajtos.github.io/moniel/
+
- 
+## [Monial](https://github.com/mlajtos/moniel)
-22. [**Texample**](http://www.texample.net/tikz/examples/neural-network/)
+Interactive Notation for Computational Graphs
-
+
+## [Texample](http://www.texample.net/tikz/examples/neural-network/)
-```
+
+
+```latex
\documentclass{article}
\usepackage{tikz}
@@ -229,12 +256,12 @@ Neataptic offers flexible neural networks; neurons and synapses can be removed w
\end{document}
```
-23. [**Quiver**](https://github.com/keplr-io/quiver)
+## [Quiver](https://github.com/keplr-io/quiver)
- 
+
-**References :**
+**References:**
-1) https://datascience.stackexchange.com/questions/12851/how-do-you-visualize-neural-network-architectures
+1)
-2) https://datascience.stackexchange.com/questions/2670/visualizing-deep-neural-network-training
+2)