Top "Deep-learning" questions

Deep Learning is an area of machine learning whose goal is to learn complex functions using special neural network architectures that are "deep" (consist of many layers).

How to assign a value to a TensorFlow variable?

I am trying to assign a new value to a tensorflow variable in python. import tensorflow as tf import numpy …

python tensorflow neural-network deep-learning variable-assignment
Can anyone give a real life example of supervised learning and unsupervised learning?

I recently studied about supervised learning and unsupervised learning. From theory, I know that supervised means getting the information from …

machine-learning deep-learning data-mining supervised-learning unsupervised-learning
Intuitive understanding of 1D, 2D, and 3D convolutions in convolutional neural networks

Can anyone please clearly explain the difference between 1D, 2D, and 3D convolutions in convolutional neural networks (in deep learning) …

machine-learning deep-learning signal-processing conv-neural-network convolution
Why must a nonlinear activation function be used in a backpropagation neural network?

I've been reading some things on neural networks and I understand the general principle of a single layer neural network. …

math machine-learning neural-network deep-learning
How to apply gradient clipping in TensorFlow?

Considering the example code. I would like to know How to apply gradient clipping on this network on the RNN …

python tensorflow machine-learning keras deep-learning
Keras ValueError: Input 0 is incompatible with layer conv2d_1: expected ndim=4, found ndim=5

I have checked all the solutions, but still, I am facing the same error. My training images shape is (26721, 32, 32, 1), which …

python tensorflow deep-learning keras conv-neural-network
How do I split a custom dataset into training and test datasets?

import pandas as pd import numpy as np import cv2 from torch.utils.data.dataset import Dataset class CustomDatasetFromCSV(Dataset): …

python deep-learning pytorch
Which parameters should be used for early stopping?

I'm training a neural network for my project using Keras. Keras has provided a function for early stopping. May I …

python keras deep-learning conv-neural-network
How to add regularizations in TensorFlow?

I found in many available neural network code implemented using TensorFlow that regularization terms are often implemented by manually adding …

python neural-network tensorflow deep-learning
TensorFlow - regularization with L2 loss, how to apply to all weights, not just last one?

I am playing with a ANN which is part of Udacity DeepLearning course. I have an assignment which involves introducing …

machine-learning neural-network tensorflow deep-learning regularized