© 2023 Hashnode
#neural-networks
Neural Networks: An Overview Artificial Neural Networks (ANNs) are a subset of machine learning algorithms that are inspired by the structure and function of the human brain. They are widely used for a variety of tasks such as image recogni…
A neural network is a method in artificial intelligence that teaches computers to process data in a way that is inspired by the human brain. It is a type of machine learning process, called deep learn…
What is a Dropout in a Neural Network? Dropout refers to ignoring units during the training phase of a certain set of neurons which is chosen randomly. These units are not considered during the parti…
What is Neuroscience? Neuroscience is the scientific study of the nervous system, which includes the brain, spinal cord, and peripheral nerves. It is a multidisciplinary field that combines knowledge …
What are autoencoders? An autoencoder is a neural network that has three layers: An input layer, a hidden layer which is also known as the encoding layer, and a decoding layer. This network is traine…
Introduction Loss Functions in deep learning (or machine learning) problems play a very important role to determine how well is your model or algorithm doing in terms of predicting the expected outcom…
Introduction In my previous blog, we discussed briefly artificial neural networks and their types. A recurrent network is a kind of artificial neural network containing loops, allowing information to…
What kind of problem can be solved by using deep learning? Deep Learning is a branch of Machine Learning, which is used to solve problems in a way that mimics the human way of solving problems. Exampl…
Generative Adversarial Networks (GAN) Generative modeling is an unsupervised learning task in machine learning that involves automatically discovering and learning the patterns in input data in such a…
What is Fine-Tuning According to wikipedia 😅, "fine-tuning is the process in which parameters of a model must be adjusted very precisely to fit with certain observations." I'm not sure if the above t…