How to visualize neural networks
Neural Networks in general
- Tools to Design or Visualize Architecture of Neural Network
- Tensorboard: TensorBoard’s Graphs dashboard is a powerful tool for examining your TensorFlow model.
- TensorFlow Playground
- Netron is a viewer for neural network, deep learning and machine learning models.
- Deep Train Full knowledge and control of the train state.
Math for AI
in AI on Math
- how to do math for deep learning: Siraj Raval’s github.
- A Programmer’s Introduction to Mathematics
Windows Tips and Tricks
in Coding on Windows
Windows Commands
Here is a handy list of DOS commands.
How to calculate the number of parameters in a neural network
- num_params = connections between layers + biases in every layer = (i×h + h×o) + (h+o) = (3×5 + 5×2) + (5+2) = 32