Network structure inspired by simplified models of biological neurons (brain cells).
I'm aware of the gradient descent and the back-propagation algorithm. What I don't get is: when is using a bias …
machine-learning neural-networkWhat is the difference between epoch and iteration when training a multi-layer perceptron?
machine-learning neural-network deep-learning artificial-intelligence terminologyI'm trying to train a CNN to categorize text by topic. When I use binary cross-entropy I get ~80% accuracy, with …
machine-learning keras neural-network deep-learning conv-neural-networkWhen I trained my neural network with Theano or Tensorflow, they will report a variable called "loss" per epoch. How …
machine-learning neural-network mathematical-optimization deep-learning objective-functionIf I want to use the BatchNormalization function in Keras, then do I need to call it once only at …
python keras neural-network data-science batch-normalizationI'm using this library to implement a learning agent. I have generated the training cases, but I don't know for …
artificial-intelligence neural-networkFor any Keras layer (Layer class), can someone explain how to understand the difference between input_shape, units, dim, etc.? …
neural-network deep-learning keras keras-layer tensorHow to initialize the weights and biases (for example, with He or Xavier initialization) in a network in PyTorch?
python neural-network deep-learning pytorchANN (Artificial Neural Networks) and SVM (Support Vector Machines) are two popular strategies for supervised machine learning and classification. It's …
machine-learning neural-network classification svmI have an example of a neural network with two layers. The first layer takes two arguments and has one …
python machine-learning keras neural-network