From Surf Wiki (app.surf) — the open knowledge base
Deep learning
Branch of machine learning
Branch of machine learning

In machine learning, deep learning focuses on utilizing multilayered neural networks to perform tasks such as classification, regression, and representation learning. The field takes inspiration from biological neuroscience and revolves around stacking artificial neurons into layers and "training" them to process data. The adjective "deep" refers to the use of multiple layers (ranging from three to several hundred or thousands) in the network. Methods used can be supervised, semi-supervised or unsupervised.
Some common deep learning network architectures include fully connected networks, deep belief networks, recurrent neural networks, convolutional neural networks, generative adversarial networks, transformers, and neural radiance fields. These architectures have been applied to fields including computer vision, speech recognition, natural language processing, machine translation, bioinformatics, drug design, medical image analysis, climate science, material inspection and board game programs, where they have produced results comparable to and in some cases surpassing human expert performance.
Early forms of neural networks were inspired by information processing and distributed communication nodes in biological systems, particularly the human brain. However, current neural networks do not intend to model the brain function of organisms, and are generally seen as low-quality models for that purpose.
Overview
Most modern deep learning models are based on multi-layered neural networks such as convolutional neural networks and transformers, although they can also include propositional formulas or latent variables organized layer-wise in deep generative models such as the nodes in deep belief networks and deep Boltzmann machines.
Fundamentally, deep learning refers to a class of machine learning algorithms in which a hierarchy of layers is used to transform input data into a progressively more abstract and composite representation. For example, in an image recognition model, the raw input may be an image (represented as a tensor of pixels). The first representational layer may attempt to identify basic shapes such as lines and circles, the second layer may compose and encode arrangements of edges, the third layer may encode a nose and eyes, and the fourth layer may recognize that the image contains a face.
Importantly, a deep learning process can learn which features to optimally place at which level on its own. Prior to deep learning, machine learning techniques often involved hand-crafted feature engineering to transform the data into a more suitable representation for a classification algorithm to operate on. In the deep learning approach, features are not hand-crafted and the model discovers useful feature representations from the data automatically. This does not eliminate the need for hand-tuning; for example, varying numbers of layers and layer sizes can provide different degrees of abstraction.
The word "deep" in "deep learning" refers to the number of layers through which the data is transformed. More precisely, deep learning systems have a substantial credit assignment path (CAP) depth. The CAP is the chain of transformations from input to output. CAPs describe potentially causal connections between input and output. For a feedforward neural network, the depth of the CAPs is that of the network and is the number of hidden layers plus one (as the output layer is also parameterized). For recurrent neural networks, in which a signal may propagate through a layer more than once, the CAP depth is potentially unlimited. No universally agreed-upon threshold of depth divides shallow learning from deep learning, but most researchers agree that deep learning involves CAP depth higher than two. CAP of depth two has been shown to be a universal approximator in the sense that it can emulate any function. Beyond that, more layers do not add to the function approximator ability of the network. Deep models (CAP two) are able to extract better features than shallow models and hence, extra layers help in learning the features effectively.
Deep learning architectures can be constructed with a greedy layer-by-layer method. Deep learning helps to disentangle these abstractions and pick out which features improve performance.
Deep learning algorithms can be applied to unsupervised learning tasks. This is an important benefit because unlabeled data is more abundant than the labeled data. Examples of deep structures that can be trained in an unsupervised manner are deep belief networks.
The term deep learning was introduced to the machine learning community by Rina Dechter in 1986, and to artificial neural networks by Igor Aizenberg and colleagues in 2000, in the context of Boolean threshold neurons. Although the history of its appearance is apparently more complicated.
Interpretations
Deep neural networks are generally interpreted in terms of the universal approximation theorem or probabilistic inference.
The classic universal approximation theorem concerns the capacity of feedforward neural networks with a single hidden layer of finite size to approximate continuous functions. In 1989, the first proof was published by George Cybenko for sigmoid activation functions and was generalised to feed-forward multi-layer architectures in 1991 by Kurt Hornik. Recent work also showed that universal approximation also holds for non-bounded activation functions such as Kunihiko Fukushima's rectified linear unit.
The universal approximation theorem for deep neural networks concerns the capacity of networks with bounded width but the depth is allowed to grow. Lu et al. proved that if the width of a deep neural network with ReLU activation is strictly larger than the input dimension, then the network can approximate any Lebesgue integrable function; if the width is smaller or equal to the input dimension, then a deep neural network is not a universal approximator.
The probabilistic interpretation derives from the field of machine learning. It features inference, as well as the optimization concepts of training and testing, related to fitting and generalization, respectively. More specifically, the probabilistic interpretation considers the activation nonlinearity as a cumulative distribution function. The probabilistic interpretation led to the introduction of dropout as regularizer in neural networks. The probabilistic interpretation was introduced by researchers including Hopfield, Widrow and Narendra and popularized in surveys such as the one by Bishop.
History
Before 1980
There are two types of artificial neural network (ANN): feedforward neural network (FNN) or multilayer perceptron (MLP) and recurrent neural networks (RNN). RNNs have cycles in their connectivity structure, FNNs don't. In the 1920s, Wilhelm Lenz and Ernst Ising created the Ising model which is essentially a non-learning RNN architecture consisting of neuron-like threshold elements. In 1972, Shun'ichi Amari made this architecture adaptive. His learning RNN was republished by John Hopfield in 1982. Other early recurrent neural networks were published by Kaoru Nakano in 1971. Already in 1948, Alan Turing produced work on "Intelligent Machinery" that was not published in his lifetime, containing "ideas related to artificial evolution and learning RNNs".
Frank Rosenblatt (1958) proposed the perceptron, an MLP with 3 layers: an input layer, a hidden layer with randomized weights that did not learn, and an output layer. He later published a 1962 book that also introduced variants and computer experiments, including a version with four-layer perceptrons "with adaptive preterminal networks" where the last two layers have learned weights (here he credits H. D. Block and B. W. Knight). The book cites an earlier network by R. D. Joseph (1960) "functionally equivalent to a variation of" this four-layer system (the book mentions Joseph over 30 times). Should Joseph therefore be considered the originator of proper adaptive multilayer perceptrons with learning hidden units? Unfortunately, the learning algorithm was not a functional one, and fell into oblivion.
The first working deep learning algorithm was the Group method of data handling, a method to train arbitrarily deep neural networks, published by Alexey Ivakhnenko and Lapa in 1965. They regarded it as a form of polynomial regression, or a generalization of Rosenblatt's perceptron to handle more complex, nonlinear, and hierarchical relationships. A 1971 paper described a deep network with eight layers trained by this method, which is based on layer by layer training through regression analysis. Superfluous hidden units are pruned using a separate validation set. Since the activation functions of the nodes are Kolmogorov-Gabor polynomials, these were also the first deep networks with multiplicative units or "gates".
The first deep learning multilayer perceptron trained by stochastic gradient descent was published in 1967 by Shun'ichi Amari. In computer experiments conducted by Amari's student Saito, a five layer MLP with two modifiable layers learned internal representations to classify non-linearily separable pattern classes. Subsequent developments in hardware and hyperparameter tunings have made end-to-end stochastic gradient descent the currently dominant training technique.
In 1969, Kunihiko Fukushima introduced the ReLU (rectified linear unit) activation function. The rectifier has become the most popular activation function for deep learning.
Deep learning architectures for convolutional neural networks (CNNs) with convolutional layers and downsampling layers began with the Neocognitron introduced by Kunihiko Fukushima in 1979, though not trained by backpropagation.
Backpropagation is an efficient application of the chain rule derived by Gottfried Wilhelm Leibniz in 1673 to networks of differentiable nodes. The terminology "back-propagating errors" was actually introduced in 1962 by Rosenblatt, but he did not know how to implement this, although Henry J. Kelley had a continuous precursor of backpropagation in 1960 in the context of control theory. The modern form of backpropagation was first published in Seppo Linnainmaa's master thesis (1970). G.M. Ostrovski et al. republished it in 1971. Paul Werbos applied backpropagation to neural networks in 1982 (his 1974 PhD thesis, reprinted in a 1994 book, did not yet describe the algorithm). In 1986, David E. Rumelhart et al. popularised backpropagation but did not cite the original work.
1980s-2000s
The time delay neural network (TDNN) was introduced in 1987 by Alex Waibel to apply CNN to phoneme recognition. It used convolutions, weight sharing, and backpropagation. In 1988, Wei Zhang applied a backpropagation-trained CNN to alphabet recognition. In 1989, Yann LeCun et al. created a CNN called LeNet for recognizing handwritten ZIP codes on mail. Training required 3 days. In 1990, Wei Zhang implemented a CNN on optical computing hardware. In 1991, a CNN was applied to medical image object segmentation and breast cancer detection in mammograms. LeNet-5 (1998), a 7-level CNN by Yann LeCun et al., that classifies digits, was applied by several banks to recognize hand-written numbers on checks digitized in 32x32 pixel images.
Recurrent neural networks (RNN) were further developed in the 1980s. Recurrence is used for sequence processing, and when a recurrent network is unrolled, it mathematically resembles a deep feedforward layer. Consequently, they have similar properties and issues, and their developments had mutual influences. In RNN, two early influential works were the Jordan network (1986) and the Elman network (1990), which applied RNN to study problems in cognitive psychology.
In the 1980s, backpropagation did not work well for deep learning with long credit assignment paths. To overcome this problem, in 1991, Jürgen Schmidhuber proposed a hierarchy of RNNs pre-trained one level at a time by self-supervised learning where each RNN tries to predict its own next input, which is the next unexpected input of the RNN below. This "neural history compressor" uses predictive coding to learn internal representations at multiple self-organizing time scales. This can substantially facilitate downstream deep learning. The RNN hierarchy can be collapsed into a single RNN, by distilling a higher level chunker network into a lower level automatizer network. The "P" in ChatGPT refers to such pre-training.
Sepp Hochreiter's diploma thesis (1991) implemented the neural history compressor, and identified and analyzed the vanishing gradient problem. Hochreiter proposed recurrent residual connections to solve the vanishing gradient problem. This led to the long short-term memory (LSTM), published in 1995. LSTM can learn "very deep learning" tasks with long credit assignment paths that require memories of events that happened thousands of discrete time steps before. That LSTM was not yet the modern architecture, which required a "forget gate", introduced in 1999, which became the standard RNN architecture.
In 1991, Jürgen Schmidhuber also published adversarial neural networks that contest with each other in the form of a zero-sum game, where one network's gain is the other network's loss. The first network is a generative model that models a probability distribution over output patterns. The second network learns by gradient descent to predict the reactions of the environment to these patterns. This was called "artificial curiosity". In 2014, this principle was used in generative adversarial networks (GANs).
During 1985–1995, inspired by statistical mechanics, several architectures and methods were developed by Terry Sejnowski, Peter Dayan, Geoffrey Hinton, etc., including the Boltzmann machine, restricted Boltzmann machine, Helmholtz machine, and the wake-sleep algorithm. These were designed for unsupervised learning of deep generative models. However, those were more computationally expensive compared to backpropagation. Boltzmann machine learning algorithm, published in 1985, was briefly popular before being eclipsed by the backpropagation algorithm in 1986. (p. 112 ). A 1988 network became state of the art in protein structure prediction, an early application of deep learning to bioinformatics.
Both shallow and deep learning (e.g., recurrent nets) of ANNs for speech recognition have been explored for many years. These methods never outperformed non-uniform internal-handcrafting Gaussian mixture model/Hidden Markov model (GMM-HMM) technology based on generative models of speech trained discriminatively. Key difficulties have been analyzed, including gradient diminishing and weak temporal correlation structure in neural predictive models. Additional difficulties were the lack of training data and limited computing power.
Most speech recognition researchers moved away from neural nets to pursue generative modeling. An exception was at SRI International in the late 1990s. Funded by the US government's NSA and DARPA, SRI researched in speech and speaker recognition. The speaker recognition team led by Larry Heck reported significant success with deep neural networks in speech processing in the 1998 NIST Speaker Recognition benchmark. It was deployed in the Nuance Verifier, representing the first major industrial application of deep learning.
The principle of elevating "raw" features over hand-crafted optimization was first explored successfully in the architecture of deep autoencoder on the "raw" spectrogram or linear filter-bank features in the late 1990s, showing its superiority over the Mel-Cepstral features that contain stages of fixed transformation from spectrograms. The raw features of speech, waveforms, later produced excellent larger-scale results.
2000s
Neural networks entered a lull, and simpler models that use task-specific handcrafted features such as Gabor filters and support vector machines (SVMs) became the preferred choices in the 1990s and 2000s, because of artificial neural networks' computational cost and a lack of understanding of how the brain wires its biological networks.
In 2003, LSTM became competitive with traditional speech recognizers on certain tasks. In 2006, Alex Graves, Santiago Fernández, Faustino Gomez, and Schmidhuber combined it with connectionist temporal classification (CTC) in stacks of LSTMs. In 2009, it became the first RNN to win a pattern recognition contest, in connected handwriting recognition.
In 2006, publications by Geoff Hinton, Ruslan Salakhutdinov, Osindero and Teh deep belief networks were developed for generative modeling. They are trained by training one restricted Boltzmann machine, then freezing it and training another one on top of the first one, and so on, then optionally fine-tuned using supervised backpropagation. They could model high-dimensional probability distributions, such as the distribution of MNIST images, but convergence was slow.
The impact of deep learning in industry began in the early 2000s, when CNNs already processed an estimated 10% to 20% of all the checks written in the US, according to Yann LeCun. Industrial applications of deep learning to large-scale speech recognition started around 2010.
The 2009 NIPS Workshop on Deep Learning for Speech Recognition was motivated by the limitations of deep generative models of speech, and the possibility that given more capable hardware and large-scale data sets that deep neural nets might become practical. It was believed that pre-training DNNs using generative models of deep belief nets (DBN) would overcome the main difficulties of neural nets. However, it was discovered that replacing pre-training with large amounts of training data for straightforward backpropagation when using DNNs with large, context-dependent output layers produced error rates dramatically lower than then-state-of-the-art Gaussian mixture model (GMM)/Hidden Markov Model (HMM) and also than more-advanced generative model-based systems. The nature of the recognition errors produced by the two types of systems was characteristically different, offering technical insights into how to integrate deep learning into the existing highly efficient, run-time speech decoding system deployed by all major speech recognition systems. Analysis around 2009–2010, contrasting the GMM (and other generative speech models) vs. DNN models, stimulated early industrial investment in deep learning for speech recognition. That analysis was done with comparable performance (less than 1.5% in error rate) between discriminative DNNs and generative models. In 2010, researchers extended deep learning from TIMIT to large vocabulary speech recognition, by adopting large output layers of the DNN based on context-dependent HMM states constructed by decision trees.
Deep learning revolution
The deep learning revolution started around CNN- and GPU-based computer vision.
Although CNNs trained by backpropagation had been around for decades and GPU implementations of NNs for years, including CNNs, faster implementations of CNNs on GPUs were needed to progress on computer vision. Later, as deep learning becomes widespread, specialized hardware and algorithm optimizations were developed specifically for deep learning.
A key advance for the deep learning revolution was hardware advances, especially GPU. Some early work dated back to 2004. In 2009, Raina, Madhavan, and Andrew Ng reported a 100M deep belief network trained on 30 Nvidia GeForce GTX 280 GPUs, an early demonstration of GPU-based deep learning. They reported up to 70 times faster training.
In 2011, a CNN named DanNet by Dan Ciresan, Ueli Meier, Jonathan Masci, Luca Maria Gambardella, and Jürgen Schmidhuber achieved for the first time superhuman performance in a visual pattern recognition contest, outperforming traditional methods by a factor of 3. It then won more contests. They also showed how max-pooling CNNs on GPU improved performance significantly.
In 2012, Andrew Ng and Jeff Dean created an FNN that learned to recognize higher-level concepts, such as cats, only from watching unlabeled images taken from YouTube videos.
In October 2012, AlexNet by Alex Krizhevsky, Ilya Sutskever, and Geoffrey Hinton won the large-scale ImageNet competition by a significant margin over shallow machine learning methods. Further incremental improvements included the VGG-16 network by Karen Simonyan and Andrew Zisserman and Google's Inceptionv3.
The success in image classification was then extended to the more challenging task of generating descriptions (captions) for images, often as a combination of CNNs and LSTMs.
In 2014, the state of the art was training "very deep neural network" with 20 to 30 layers. Stacking too many layers led to a steep reduction in training accuracy, known as the "degradation" problem. In 2015, two techniques were developed to train very deep networks: the highway network was published in May 2015, and the residual neural network (ResNet) in Dec 2015. ResNet behaves like an open-gated Highway Net.
Around the same time, deep learning started impacting the field of art. Early examples included Google DeepDream (2015), and neural style transfer (2015), both of which were based on pretrained image classification neural networks, such as VGG-19.
Generative adversarial network (GAN) by (Ian Goodfellow et al., 2014) (based on Jürgen Schmidhuber's principle of artificial curiosity) became state of the art in generative modeling during 2014-2018 period. Excellent image quality is achieved by Nvidia's StyleGAN (2018) based on the Progressive GAN by Tero Karras et al. Here the GAN generator is grown from small to large scale in a pyramidal fashion. Image generation by GAN reached popular success, and provoked discussions concerning deepfakes. Diffusion models (2015) eclipsed GANs in generative modeling since then, with systems such as DALL·E 2 (2022) and Stable Diffusion (2022).
In 2015, Google's speech recognition improved by 49% by an LSTM-based model, which they made available through Google Voice Search on smartphone.
Deep learning is part of state-of-the-art systems in various disciplines, particularly computer vision and automatic speech recognition (ASR). Results on commonly used evaluation sets such as TIMIT (ASR) and MNIST (image classification), as well as a range of large-vocabulary speech recognition tasks have steadily improved. Convolutional neural networks were superseded for ASR by LSTM. but are more successful in computer vision.
Yoshua Bengio, Geoffrey Hinton and Yann LeCun were awarded the 2018 Turing Award for "conceptual and engineering breakthroughs that have made deep neural networks a critical component of computing".
Neural networks
Main article: Artificial neural network
In reality, textures and outlines would not be represented by single nodes, but rather by associated weight patterns of multiple nodes.}} Artificial neural networks (ANNs) or connectionist systems are computing systems inspired by the biological neural networks that constitute animal brains. Such systems learn (progressively improve their ability) to do tasks by considering examples, generally without task-specific programming. For example, in image recognition, they might learn to identify images that contain cats by analyzing example images that have been manually labeled as "cat" or "no cat" and using the analytic results to identify cats in other images. They have found most use in applications difficult to express with a traditional computer algorithm using rule-based programming.
An ANN is based on a collection of connected units called artificial neurons, (analogous to biological neurons in a biological brain). Each connection (synapse) between neurons can transmit a signal to another neuron. The receiving (postsynaptic) neuron can process the signal(s) and then signal downstream neurons connected to it. Neurons may have state, generally represented by real numbers, typically between 0 and 1. Neurons and synapses may also have a weight that varies as learning proceeds, which can increase or decrease the strength of the signal that it sends downstream.
Typically, neurons are organized in layers. Different layers may perform different kinds of transformations on their inputs. Signals travel from the first (input), to the last (output) layer, possibly after traversing the layers multiple times.
The original goal of the neural network approach was to solve problems in the same way that a human brain would. Over time, attention focused on matching specific mental abilities, leading to deviations from biology such as backpropagation, or passing information in the reverse direction and adjusting the network to reflect that information.
Neural networks have been used on a variety of tasks, including computer vision, speech recognition, machine translation, social network filtering, playing board and video games and medical diagnosis.
As of 2017, neural networks typically have a few thousand to a few million units and millions of connections. Despite this number being several order of magnitude less than the number of neurons on a human brain, these networks can perform many tasks at a level beyond that of humans (e.g., recognizing faces, or playing "Go").
Deep neural networks
A deep neural network (DNN) is an artificial neural network with multiple layers between the input and output layers. There are different types of neural networks but they always consist of the same components: neurons, synapses, weights, biases, and functions. These components as a whole function in a way that mimics functions of the human brain, and can be trained like any other ML algorithm.
For example, a DNN that is trained to recognize dog breeds will go over the given image and calculate the probability that the dog in the image is a certain breed. The user can review the results and select which probabilities the network should display (above a certain threshold, etc.) and return the proposed label. Each mathematical manipulation as such is considered a layer, and complex DNN have many layers, hence the name "deep" networks.
DNNs can model complex non-linear relationships. DNN architectures generate compositional models where the object is expressed as a layered composition of primitives. The extra layers enable composition of features from lower layers, potentially modeling complex data with fewer units than a similarly performing shallow network. For instance, it was proved that sparse multivariate polynomials are exponentially easier to approximate with DNNs than with shallow networks.
Deep architectures include many variants of a few basic approaches. Each architecture has found success in specific domains. It is not always possible to compare the performance of multiple architectures, unless they have been evaluated on the same data sets.
DNNs are typically feedforward networks in which data flows from the input layer to the output layer without looping back. At first, the DNN creates a map of virtual neurons and assigns random numerical values, or "weights", to connections between them. The weights and inputs are multiplied and return an output between 0 and 1. If the network did not accurately recognize a particular pattern, an algorithm would adjust the weights. That way the algorithm can make certain parameters more influential, until it determines the correct mathematical manipulation to fully process the data.
Recurrent neural networks, in which data can flow in any direction, are used for applications such as language modeling. Long short-term memory is particularly effective for this use.
Convolutional neural networks (CNNs) are used in computer vision. CNNs also have been applied to acoustic modeling for automatic speech recognition (ASR).
Challenges
As with ANNs, many issues can arise with naively trained DNNs. Two common issues are overfitting and computation time.
DNNs are prone to overfitting because of the added layers of abstraction, which allow them to model rare dependencies in the training data. Regularization methods such as Ivakhnenko's unit pruning or weight decay ( \ell_2 -regularization) or sparsity ( \ell_1 -regularization) can be applied during training to combat overfitting. Alternatively dropout regularization randomly omits units from the hidden layers during training. This helps to exclude rare dependencies. Another interesting recent development is research into models of just enough complexity through an estimation of the intrinsic complexity of the task being modelled. This approach has been successfully applied for multivariate time series prediction tasks such as traffic prediction.{{cite journal| last1 = Kumar | first1 = Nishant | last2 = Martin | first2 = Henry | last3 = Raubal | first3 = Martin | title = Enhancing Deep Learning-Based City-Wide Traffic Prediction Pipelines Through Complexity Analysis | journal = Data Science for Transportation | volume = 6 | article-number = 24| year = 2024
DNNs must consider many training parameters, such as the size (number of layers and number of units per layer), the learning rate, and initial weights. Sweeping through the parameter space for optimal parameters may not be feasible due to the cost in time and computational resources. Various tricks, such as batching (computing the gradient on several training examples at once rather than individual examples) speed up computation. Large processing capabilities of many-core architectures (such as GPUs or the Intel Xeon Phi) have produced significant speedups in training, because of the suitability of such processing architectures for the matrix and vector computations.
Alternatively, engineers may look for other types of neural networks with more straightforward and convergent training algorithms. CMAC (cerebellar model articulation controller) is one such kind of neural network. It doesn't require learning rates or randomized initial weights. The training process can be guaranteed to converge in one step with a new batch of data, and the computational complexity of the training algorithm is linear with respect to the number of neurons involved.
Hardware
Since the 2010s, advances in both machine learning algorithms and computer hardware have led to more efficient methods for training deep neural networks that contain many layers of non-linear hidden units and a very large output layer. By 2019, graphics processing units (GPUs), often with AI-specific enhancements, had displaced CPUs as the dominant method for training large-scale commercial cloud AI . OpenAI estimated the hardware computation used in the largest deep learning projects from AlexNet (2012) to AlphaZero (2017) and found a 300,000-fold increase in the amount of computation required, with a doubling-time trendline of 3.4 months.
Special electronic circuits called deep learning processors were designed to speed up deep learning algorithms. Deep learning processors include neural processing units (NPUs) in Huawei cellphones and cloud computing servers such as tensor processing units (TPU) in the Google Cloud Platform. Cerebras Systems has also built a dedicated system to handle large deep learning models, the CS-2, based on the largest processor in the industry, the second-generation Wafer Scale Engine (WSE-2).
Atomically thin semiconductors are considered promising for energy-efficient deep learning hardware where the same basic device structure is used for both logic operations and data storage. In 2020, Marega et al. published experiments with a large-area active channel material for developing logic-in-memory devices and circuits based on floating-gate field-effect transistors (FGFETs).
In 2021, J. Feldmann et al. proposed an integrated photonic hardware accelerator for parallel convolutional processing. The authors identify two key advantages of integrated photonics over its electronic counterparts: (1) massively parallel data transfer through wavelength division multiplexing in conjunction with frequency combs, and (2) extremely high data modulation speeds. Their system can execute trillions of multiply-accumulate operations per second, indicating the potential of integrated photonics in data-heavy AI applications.
Applications
Automatic speech recognition
Main article: Speech recognition
Large-scale automatic speech recognition is the first and most convincing successful case of deep learning. LSTM RNNs can learn "Very Deep Learning" tasks that involve multi-second intervals containing speech events separated by thousands of discrete time steps, where one time step corresponds to about 10 ms. LSTM with forget gates is competitive with traditional speech recognizers on certain tasks.
The initial success in speech recognition was based on small-scale recognition tasks based on TIMIT. The data set contains 630 speakers from eight major dialects of American English, where each speaker reads 10 sentences. Its small size lets many configurations be tried. More importantly, the TIMIT task concerns phone-sequence recognition, which, unlike word-sequence recognition, allows weak phone bigram language models. This lets the strength of the acoustic modeling aspects of speech recognition be more easily analyzed. The error rates listed below, including these early results and measured as percent phone error rates (PER), have been summarized since 1991.
| Method | Percent phone | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error rate (PER) (%) | |||||||||||||||||
| Randomly Initialized RNN | 26.1 | ||||||||||||||||
| Bayesian Triphone GMM-HMM | 25.6 | ||||||||||||||||
| Hidden Trajectory (Generative) Model | 24.8 | ||||||||||||||||
| Monophone Randomly Initialized DNN | 23.4 | ||||||||||||||||
| Monophone DBN-DNN | 22.4 | ||||||||||||||||
| Triphone GMM-HMM with BMMI Training | 21.7 | ||||||||||||||||
| Monophone DBN-DNN on fbank | 20.7 | ||||||||||||||||
| last1=Abdel-Hamid | first1=O. | title=Convolutional Neural Networks for Speech Recognition | journal=IEEE/ACM Transactions on Audio, Speech, and Language Processing | date=2014 | volume=22 | issue=10 | pages=1533–1545 | doi=10.1109/taslp.2014.2339736 | s2cid=206602362 | display-authors=etal | bibcode=2014ITASL..22.1533A | url=https://zenodo.org/record/891433 | access-date=2018-04-20 | archive-date=2020-09-22 | archive-url=https://web.archive.org/web/20200922180719/https://zenodo.org/record/891433 | url-status=live}} | 20.0 |
| Convolutional DNN w. Heterogeneous Pooling | 18.7 | ||||||||||||||||
| last2=Platt | first2=J. | date=2014 | title=Ensemble Deep Learning for Speech Recognition | journal=Proc. Interspeech | last1=Deng | first1=L. | pages=1915–1919 | doi=10.21437/Interspeech.2014-433 | s2cid=15641618}} | 18.3 | |||||||
| Bidirectional LSTM | 17.8 | ||||||||||||||||
| last1=Tóth | first1=Laszló | date=2015 | title=Phone Recognition with Hierarchical Convolutional Deep Maxout Networks | journal=EURASIP Journal on Audio, Speech, and Music Processing | volume=2015 | article-number=25 | doi=10.1186/s13636-015-0068-3 | s2cid=217950236 | url=http://publicatio.bibl.u-szeged.hu/5976/1/EURASIP2015.pdf | access-date=2019-04-01 | archive-date=2020-09-24 | archive-url=https://web.archive.org/web/20200924085514/http://publicatio.bibl.u-szeged.hu/5976/1/EURASIP2015.pdf | url-status=live | doi-access=free }} | 16.5 |
The debut of DNNs for speaker recognition in the late 1990s and speech recognition around 2009-2011 and of LSTM around 2003–2007, accelerated progress in eight major areas:
- Scale-up/out and accelerated DNN training and decoding
- Sequence discriminative training
- Feature processing by deep models with solid understanding of the underlying mechanisms
- Adaptation of DNNs and related deep models
- Multi-task and transfer learning by DNNs and related deep models
- CNNs and how to design them to best exploit domain knowledge of speech
- RNN and its rich LSTM variants
- Other types of deep models including tensor-based models and integrated deep generative/discriminative models.
More recent speech recognition models use Transformers or Temporal Convolution Networks with significant success and widespread applications. All major commercial speech recognition systems (e.g., Microsoft Cortana, Xbox, Skype Translator, Amazon Alexa, Google Now, Apple Siri, Baidu and iFlyTek voice search, and a range of Nuance speech products, etc.) are based on deep learning.
Image recognition
Main article: Computer vision
A common evaluation set for image classification is the MNIST database data set. MNIST is composed of handwritten digits and includes 60,000 training examples and 10,000 test examples. As with TIMIT, its small size lets users test multiple configurations. A comprehensive list of results on this set is available.
Deep learning-based image recognition has become "superhuman", producing more accurate results than human contestants. This first occurred in 2011 in recognition of traffic signs, and in 2014, with recognition of human faces.
Deep learning-trained vehicles now interpret 360° camera views. Another example is Facial Dysmorphology Novel Analysis (FDNA) used to analyze cases of human malformation connected to a large database of genetic syndromes.
Visual art processing
Closely related to the progress that has been made in image recognition is the increasing application of deep learning techniques to various visual art tasks. DNNs have proven themselves capable, for example, of
- identifying the style period of a given painting
- Neural Style Transfer capturing the style of a given artwork and applying it in a visually pleasing manner to an arbitrary photograph or video
- generating striking imagery based on random visual input fields.
Natural language processing
Main article: Natural language processing
Neural networks have been used for implementing language models since the early 2000s. LSTM helped to improve machine translation and language modeling.
Other key techniques in this field are negative sampling and word embedding. Word embedding, such as word2vec, can be thought of as a representational layer in a deep learning architecture that transforms an atomic word into a positional representation of the word relative to other words in the dataset; the position is represented as a point in a vector space. Using word embedding as an RNN input layer allows the network to parse sentences and phrases using an effective compositional vector grammar. A compositional vector grammar can be thought of as probabilistic context free grammar (PCFG) implemented by an RNN. Recursive auto-encoders built atop word embeddings can assess sentence similarity and detect paraphrasing. Deep neural architectures provide the best results for constituency parsing, sentiment analysis, information retrieval, spoken language understanding, machine translation, contextual entity linking, writing style recognition, named-entity recognition (token classification), text classification, and others.
Recent developments generalize word embedding to sentence embedding.
Google Translate (GT) uses a large end-to-end long short-term memory (LSTM) network. Google Neural Machine Translation (GNMT) uses an example-based machine translation method in which the system "learns from millions of examples". It translates "whole sentences at a time, rather than pieces". Google Translate supports over one hundred languages. The network encodes the "semantics of the sentence rather than simply memorizing phrase-to-phrase translations". GT uses English as an intermediate between most language pairs.
Drug discovery and toxicology
A large percentage of candidate drugs fail to win regulatory approval. These failures are caused by insufficient efficacy (on-target effect), undesired interactions (off-target effects), or unanticipated toxic effects.{{Cite journal | doi-access = free | doi-access = free | hdl-access = free
AtomNet is a deep learning system for structure-based rational drug design. AtomNet was used to predict novel candidate biomolecules for disease targets such as the Ebola virus and multiple sclerosis.
In 2017 graph neural networks were used for the first time to predict various properties of molecules in a large toxicology data set. In 2019, generative neural networks were used to produce molecules that were validated experimentally all the way into mice.
Recommendation systems
Main article: Recommender system
Recommendation systems have used deep learning to extract meaningful features for a latent factor model for content-based music and journal recommendations. Multi-view deep learning has been applied for learning user preferences from multiple domains. The model uses a hybrid collaborative and content-based approach and enhances recommendations in multiple tasks.
Bioinformatics
Main article: Bioinformatics
An autoencoder ANN was used in bioinformatics, to predict gene ontology annotations and gene-function relationships.
In medical informatics, deep learning was used to predict sleep quality based on data from wearables and predictions of health complications from electronic health record data.
Deep neural networks have shown unparalleled performance in predicting protein structure, according to the sequence of the amino acids that make it up. In 2020, AlphaFold, a deep-learning based system, achieved a level of accuracy significantly higher than all previous computational methods.
Deep Neural Network Estimations
Deep neural networks can be used to estimate the entropy of a stochastic process through an arrangement called a Neural Joint Entropy Estimator (NJEE). Such an estimation provides insights on the effects of input random variables on an independent random variable. Practically, the DNN is trained as a classifier that maps an input vector or matrix X to an output probability distribution over the possible classes of random variable Y, given input X. For example, in image classification tasks, the NJEE maps a vector of pixels' color values to probabilities over possible image classes. In practice, the probability distribution of Y is obtained by a Softmax layer with number of nodes that is equal to the alphabet size of Y. NJEE uses continuously differentiable activation functions, such that the conditions for the universal approximation theorem holds. It is shown that this method provides a strongly consistent estimator and outperforms other methods in cases of large alphabet sizes.
Medical image analysis
Deep learning has been shown to produce competitive results in medical applications such as cancer cell classification, lesion detection, organ segmentation and image enhancement. Modern deep learning tools demonstrate the high accuracy of detecting various diseases and the helpfulness of their use by specialists to improve the diagnosis efficiency.
Mobile advertising
Finding the appropriate mobile audience for mobile advertising is always challenging, since many data points must be considered and analyzed before a target segment can be created and used in ad serving by any ad server. Deep learning has been used to interpret large, many-dimensioned advertising datasets. Many data points are collected during the request/serve/click internet advertising cycle. This information can form the basis of machine learning to improve ad selection.
Image restoration
Deep learning has been successfully applied to inverse problems such as denoising, super-resolution, inpainting, and film colorization. These applications include learning methods such as "Shrinkage Fields for Effective Image Restoration" which trains on an image dataset, and Deep Image Prior, which trains on the image that needs restoration.
Financial fraud detection
Deep learning is being successfully applied to financial fraud detection, tax evasion detection,{{cite journal |article-number=105048 |access-date=2018-07-15 |archive-date=2018-11-16 |archive-url=https://web.archive.org/web/20181116082711/https://www.globalbankingandfinance.com/deep-learning-the-next-frontier-for-money-laundering-detection/ |url-status=live
Materials science
In November 2023, researchers at Google DeepMind and Lawrence Berkeley National Laboratory announced that they had developed an AI system known as GNoME. This system has contributed to materials science by discovering over 2 million new materials within a relatively short timeframe. GNoME employs deep learning techniques to efficiently explore potential material structures, achieving a significant increase in the identification of stable inorganic crystal structures. The system's predictions were validated through autonomous robotic experiments, demonstrating a noteworthy success rate of 71%. The data of newly discovered materials is publicly available through the Materials Project database, offering researchers the opportunity to identify materials with desired properties for various applications. This development has implications for the future of scientific discovery and the integration of AI in material science research, potentially expediting material innovation and reducing costs in product development. The use of AI and deep learning suggests the possibility of minimizing or eliminating manual lab experiments and allowing scientists to focus more on the design and analysis of unique compounds.
Military
The United States Department of Defense applied deep learning to train robots in new tasks through observation.
Partial differential equations
Physics informed neural networks have been used to solve partial differential equations in both forward and inverse problems in a data driven manner. One example is the reconstructing fluid flow governed by the Navier-Stokes equations. Using physics informed neural networks does not require the often expensive mesh generation that conventional CFD methods rely on. It is evident that geometric and physical constraints have a synergistic effect on neural PDE surrogates, thereby enhancing their efficacy in predicting stable and super long rollouts.
Deep backward stochastic differential equation method
Deep backward stochastic differential equation method is a numerical method that combines deep learning with Backward stochastic differential equation (BSDE). This method is particularly useful for solving high-dimensional problems in financial mathematics. By leveraging the powerful function approximation capabilities of deep neural networks, deep BSDE addresses the computational challenges faced by traditional numerical methods in high-dimensional settings. Specifically, traditional methods like finite difference methods or Monte Carlo simulations often struggle with the curse of dimensionality, where computational cost increases exponentially with the number of dimensions. Deep BSDE methods, however, employ deep neural networks to approximate solutions of high-dimensional partial differential equations (PDEs), effectively reducing the computational burden.
In addition, the integration of Physics-informed neural networks (PINNs) into the deep BSDE framework enhances its capability by embedding the underlying physical laws directly into the neural network architecture. This ensures that the solutions not only fit the data but also adhere to the governing stochastic differential equations. PINNs leverage the power of deep learning while respecting the constraints imposed by the physical models, resulting in more accurate and reliable solutions for financial mathematics problems.
Image reconstruction
Image reconstruction is the reconstruction of the underlying images from the image-related measurements. Several works showed the better and superior performance of the deep learning methods compared to analytical methods for various applications, e.g., spectral imaging and ultrasound imaging.
Weather prediction
Traditional weather prediction systems solve a very complex system of partial differential equations. GraphCast is a deep learning based model, trained on a long history of weather data to predict how weather patterns change over time. It is able to predict weather conditions for up to 10 days globally, at a very detailed level, and in under a minute, with precision similar to state of the art systems.
Epigenetic clock
Main article: Epigenetic clock
An epigenetic clock is a biochemical test that can be used to measure age. Galkin et al. used deep neural networks to train an epigenetic aging clock of unprecedented accuracy using 6,000 blood samples. The clock uses information from 1000 CpG sites and predicts people with certain conditions older than healthy controls: IBD, frontotemporal dementia, ovarian cancer, obesity. The aging clock was planned to be released for public use in 2021 by an Insilico Medicine spinoff company Deep Longevity.
Relation to human cognitive and brain development
Deep learning is closely related to a class of theories of brain development (specifically, neocortical development) proposed by cognitive neuroscientists in the early 1990s. These developmental theories were instantiated in computational models, making them predecessors of deep learning systems. These developmental models share the property that various proposed learning dynamics in the brain (e.g., a wave of nerve growth factor) support the self-organization somewhat analogous to the neural networks utilized in deep learning models. Like the neocortex, neural networks employ a hierarchy of layered filters in which each layer considers information from a prior layer (or the operating environment), and then passes its output (and possibly the original input), to other layers. This process yields a self-organizing stack of transducers, well-tuned to their operating environment. A 1995 description stated, "...the infant's brain seems to organize itself under the influence of waves of so-called trophic-factors ... different regions of the brain become connected sequentially, with one layer of tissue maturing before another and so on until the whole brain is mature".
A variety of approaches have been used to investigate the plausibility of deep learning models from a neurobiological perspective. On the one hand, several variants of the backpropagation algorithm have been proposed in order to increase its processing realism. Other researchers have argued that unsupervised forms of deep learning, such as those based on hierarchical generative models and deep belief networks, may be closer to biological reality. In this respect, generative neural network models have been related to neurobiological evidence about sampling-based processing in the cerebral cortex.
Although a systematic comparison between the human brain organization and the neuronal encoding in deep networks has not yet been established, several analogies have been reported. For example, the computations performed by deep learning units could be similar to those of actual neurons and neural populations. Similarly, the representations developed by deep learning models are similar to those measured in the primate visual system both at the single-unit and at the population levels.
Commercial activity
Facebook's AI lab performs tasks such as automatically tagging uploaded pictures with the names of the people in them.
Google's DeepMind Technologies developed a system capable of learning how to play Atari video games using only pixels as data input. In 2015 they demonstrated their AlphaGo system, which learned the game of Go well enough to beat a professional Go player. Google Translate uses a neural network to translate between more than 100 languages.
In 2017, Covariant.ai was launched, which focuses on integrating deep learning into factories.
As of 2008, researchers at The University of Texas at Austin (UT) developed a machine learning framework called Training an Agent Manually via Evaluative Reinforcement, or TAMER, which proposed new methods for robots or computer programs to learn how to perform tasks by interacting with a human instructor. First developed as TAMER, a new algorithm called Deep TAMER was later introduced in 2018 during a collaboration between U.S. Army Research Laboratory (ARL) and UT researchers. Deep TAMER used deep learning to provide a robot with the ability to learn new tasks through observation. Using Deep TAMER, a robot learned a task with a human trainer, watching video streams or observing a human perform a task in-person. The robot later practiced the task with the help of some coaching from the trainer, who provided feedback such as "good job" and "bad job".
Criticism and comment
Deep learning has attracted both criticism and comment, in some cases from outside the field of computer science.
Theory
A main criticism concerns the lack of theory surrounding some methods. Learning in the most common deep architectures is implemented using well-understood gradient descent. However, the theory surrounding other algorithms, such as contrastive divergence is less clear. (e.g., Does it converge? If so, how fast? What is it approximating?) Deep learning methods are often looked at as a black box, with most confirmations done empirically, rather than theoretically.
In further reference to the idea that artistic sensitivity might be inherent in relatively low levels of the cognitive hierarchy, a published series of graphic representations of the internal states of deep (20-30 layers) neural networks attempting to discern within essentially random data the images on which they were trained demonstrate a visual appeal: the original research notice received well over 1,000 comments, and was the subject of what was for a time the most frequently accessed article on The Guardian's website.
With the support of Innovation Diffusion Theory (IDT), a study analyzed the diffusion of Deep Learning in BRICS and OECD countries using data from Google Trends.
Errors
Some deep learning architectures display problematic behaviors, such as confidently classifying unrecognizable images as belonging to a familiar category of ordinary images (2014) and misclassifying minuscule perturbations of correctly classified images (2013). Goertzel hypothesized that these behaviors are due to limitations in their internal representations and that these limitations would inhibit integration into heterogeneous multi-component artificial general intelligence (AGI) architectures. These issues may possibly be addressed by deep learning architectures that internally form states homologous to image-grammar decompositions of observed entities and events. Learning a grammar (visual or linguistic) from training data would be equivalent to restricting the system to commonsense reasoning that operates on concepts in terms of grammatical production rules and is a basic goal of both human language acquisition and artificial intelligence (AI).
Cyber threat
As deep learning moves from the lab into the world, research and experience show that artificial neural networks are vulnerable to hacks and deception. By identifying patterns that these systems use to function, attackers can modify inputs to ANNs in such a way that the ANN finds a match that human observers would not recognize. For example, an attacker can make subtle changes to an image such that the ANN finds a match even though the image looks to a human nothing like the search target. Such manipulation is termed an "adversarial attack".
In 2016 researchers used one ANN to doctor images in trial and error fashion, identify another's focal points, and thereby generate images that deceived it. The modified images looked no different to human eyes. Another group showed that printouts of doctored images then photographed successfully tricked an image classification system. One defense is reverse image search, in which a possible fake image is submitted to a site such as TinEye that can then find other instances of it. A refinement is to search using only parts of the image, to identify images from which that piece may have been taken**.**
Another group showed that certain psychedelic spectacles could fool a facial recognition system into thinking ordinary people were celebrities, potentially allowing one person to impersonate another. In 2017 researchers added stickers to stop signs and caused an ANN to misclassify them.
ANNs can however be further trained to detect attempts at deception, potentially leading attackers and defenders into an arms race similar to the kind that already defines the malware defense industry. ANNs have been trained to defeat ANN-based anti-malware software by repeatedly attacking a defense with malware that was continually altered by a genetic algorithm until it tricked the anti-malware while retaining its ability to damage the target.
In 2016, another group demonstrated that certain sounds could make the Google Now voice command system open a particular web address, and hypothesized that this could "serve as a stepping stone for further attacks (e.g., opening a web page hosting drive-by malware)".
In "data poisoning", false data is continually smuggled into a machine learning system's training set to prevent it from achieving mastery.
Data collection ethics
The deep learning systems that are trained using supervised learning often rely on data that is created or annotated by humans, or both. It has been argued that not only low-paid clickwork (such as on Amazon Mechanical Turk) is regularly deployed for this purpose, but also implicit forms of human microwork that are often not recognized as such. The philosopher Rainer Mühlhoff distinguishes five types of "machinic capture" of human microwork to generate training data: (1) gamification (the embedding of annotation or computation tasks in the flow of a game), (2) "trapping and tracking" (e.g. CAPTCHAs for image recognition or click-tracking on Google search results pages), (3) exploitation of social motivations (e.g. tagging faces on Facebook to obtain labeled facial images), (4) information mining (e.g. by leveraging quantified-self devices such as activity trackers) and (5) clickwork.
References
References
- (1 November 2012). "Deep Learning". KI - Künstliche Intelligenz.
- (2015). "Deep Learning". Nature.
- (2012). "2012 IEEE Conference on Computer Vision and Pattern Recognition".
- (2012). "ImageNet Classification with Deep Convolutional Neural Networks". NIPS 2012: Neural Information Processing Systems, Lake Tahoe, Nevada.
- (25 May 2017). "Google's AlphaGo AI wins three-match series against the world's best Go player".
- (2022-11-02). "Study urges caution when comparing neural networks to the brain".
- Bengio, Yoshua. (2009). "Learning Deep Architectures for AI". Foundations and Trends in Machine Learning.
- (2013). "Representation Learning: A Review and New Perspectives". IEEE Transactions on Pattern Analysis and Machine Intelligence.
- Shigeki, Sugiyama. (12 April 2019). "Human Behavior and Another Kind in Consciousness: Emerging Research and Opportunities: Emerging Research and Opportunities". IGI Global.
- (2007). "Greedy layer-wise training of deep networks".
- (2009). "Deep belief networks". Scholarpedia.
- [[Rina Dechter]] (1986). Learning while searching in constraint-satisfaction problems. University of California, Computer Science Department, Cognitive Systems Laboratory.[https://www.researchgate.net/publication/221605378_Learning_While_Searching_in_Constraint-Satisfaction-Problems Online] {{Webarchive. link. (2016-04-19)
- (2000). "Multi-Valued and Universal Binary Neurons". Science & Business Media.
- Co-evolving recurrent neurons learn deep memory POMDPs. Proc. GECCO, Washington, D. C., pp. 1795–1802, ACM Press, New York, NY, USA, 2005.
- Fradkov, Alexander L.. (2020-01-01). "Early History of Machine Learning". IFAC-PapersOnLine.
- (1989). "Approximations by superpositions of sigmoidal functions". [[Mathematics of Control, Signals, and Systems]].
- (1991). "Approximation Capabilities of Multilayer Feedforward Networks". Neural Networks.
- Haykin, Simon S.. (1999). ["Neural Networks: A Comprehensive Foundation"]({{google books). Prentice Hall.
- Hassoun, Mohamad H.. (1995). ["Fundamentals of Artificial Neural Networks"]({{google books). MIT Press.
- Lu, Z., Pu, H., Wang, F., Hu, Z., & Wang, L. (2017). [http://papers.nips.cc/paper/7203-the-expressive-power-of-neural-networks-a-view-from-the-width The Expressive Power of Neural Networks: A View from the Width] {{Webarchive. link. (2019-02-13 . Neural Information Processing Systems, 6231-6239.)
- (2017). "Efficient probabilistic inference in generic neural networks trained with non-probabilistic feedback". Nature Communications.
- (2014). "Deep Learning: Methods and Applications". Foundations and Trends in Signal Processing.
- Schmidhuber, J.. (2015). "Deep Learning in Neural Networks: An Overview". Neural Networks.
- Murphy, Kevin P.. (24 August 2012). ["Machine Learning: A Probabilistic Perspective"]({{google books). MIT Press.
- (1969). "Visual feature extraction by a multilayered network of analog threshold elements". IEEE Transactions on Systems Science and Cybernetics.
- (2017). "Neural network with unbounded activation functions is universal approximator". Applied and Computational Harmonic Analysis.
- Bishop, Christopher M.. (2006). "Pattern Recognition and Machine Learning". Springer.
- "bibliotheca Augustana".
- (1967). "History of the Lenz-Ising Model". Reviews of Modern Physics.
- (1972). "Learning patterns and pattern sequences by self-organizing nets of threshold elements". IEEE Transactions.
- (1982). "Neural networks and physical systems with emergent collective computational abilities". Proceedings of the National Academy of Sciences.
- (1971). "Pattern Recognition and Machine Learning".
- (1972). "Associatron-A Model of Associative Memory". IEEE Transactions on Systems, Man, and Cybernetics.
- (1992). "Collected Works of AM Turing: Mechanical Intelligence". Elsevier Science Publishers.
- Rosenblatt, F.. (1958). "The perceptron: A probabilistic model for information storage and organization in the brain.". Psychological Review.
- Rosenblatt, Frank. (1962). "Principles of Neurodynamics". Spartan, New York.
- Joseph, R. D.. (1960). "Contributions to Perceptron Theory, Cornell Aeronautical Laboratory Report No. VG-11 96--G-7, Buffalo".
- (1967). ["Cybernetics and Forecasting Techniques"]({{google books). American Elsevier Publishing Co..
- Ivakhnenko, A.G.. (March 1970). "Heuristic self-organization in problems of engineering cybernetics". Automatica.
- Ivakhnenko, Alexey. (1971). "Polynomial theory of complex systems". IEEE Transactions on Systems, Man, and Cybernetics.
- (1951). "A Stochastic Approximation Method". The Annals of Mathematical Statistics.
- (1967). "A theory of adaptive pattern classifier". IEEE Transactions.
- Schmidhuber, Jürgen. (2022). "Annotated History of Modern AI and Deep Learning".
- (October 16, 2017). "Searching for Activation Functions".
- (1979). "Neural network model for a mechanism of pattern recognition unaffected by shift in position—Neocognitron". Trans. IECE (In Japanese).
- (1980). "Neocognitron: A self-organizing neural network model for a mechanism of pattern recognition unaffected by shift in position". Biol. Cybern..
- Leibniz, Gottfried Wilhelm Freiherr von. (1920). "The Early Mathematical Manuscripts of Leibniz: Translated from the Latin Texts Published by Carl Immanuel Gerhardt with Critical and Historical Notes (Leibniz published the chain rule in a 1676 memoir)". Open court publishing Company.
- (1960). "Gradient theory of optimal flight paths". ARS Journal.
- Linnainmaa, Seppo. (1970). "The representation of the cumulative rounding error of an algorithm as a Taylor expansion of the local rounding errors". University of Helsinki.
- (1976). "Taylor expansion of the accumulated rounding error". BIT Numerical Mathematics.
- Ostrovski, G.M., Volin, Y.M., and Boris, W.W. (1971). On the computation of derivatives. Wiss. Z. Tech. Hochschule for Chemistry, 13:382–384.
- Werbos, Paul. (1982). "System modeling and optimization". Springer.
- Werbos, Paul J.. (1994). "The Roots of Backpropagation: From Ordered Derivatives to Neural Networks and Political Forecasting". John Wiley & Sons.
- Schmidhuber, Juergen. (25 Oct 2014). "Who Invented Backpropagation?". IDSIA, Switzerland.
- (October 1986). "Learning representations by back-propagating errors". Nature.
- Rumelhart, David E., Geoffrey E. Hinton, and R. J. Williams. "[https://apps.dtic.mil/dtic/tr/fulltext/u2/a164453.pdf Learning Internal Representations by Error Propagation] {{Webarchive. link. (2022-10-13 ". David E. Rumelhart, James L. McClelland, and the PDP research group. (editors), Parallel distributed processing: Explorations in the microstructure of cognition, Volume 1: Foundation. MIT Press, 1986.)
- (December 1987). "Phoneme Recognition Using Time-Delay Neural Networks".
- [[Alex Waibel. Alexander Waibel]] et al., ''[http://www.inf.ufrgs.br/~engel/data/media/file/cmp121/waibel89_TDNN.pdf Phoneme Recognition Using Time-Delay Neural Networks]'' IEEE Transactions on Acoustics, Speech, and Signal Processing, Volume 37, No. 3, pp. 328. – 339 March 1989.
- Zhang, Wei. (1988). "Shift-invariant pattern recognition neural network and its optical architecture". Proceedings of Annual Conference of the Japan Society of Applied Physics.
- LeCun ''et al.'', "Backpropagation Applied to Handwritten Zip Code Recognition", ''Neural Computation'', 1, pp. 541–551, 1989.
- Zhang, Wei. (1990). "Parallel distributed processing model with local space-invariant interconnections and its optical architecture". Applied Optics.
- Zhang, Wei. (1991). "Image processing of human corneal endothelium based on a learning network". Applied Optics.
- Zhang, Wei. (1994). "Computerized detection of clustered microcalcifications in digital mammograms using a shift-invariant artificial neural network". Medical Physics.
- LeCun, Yann. (1998). "Gradient-based learning applied to document recognition". Proceedings of the IEEE.
- Jordan, Michael I.. (1986). "Attractor dynamics and parallelism in a connectionist sequential machine". Proceedings of the Annual Meeting of the Cognitive Science Society.
- Elman, Jeffrey L.. (March 1990). "Finding Structure in Time". Cognitive Science.
- (April 1991). "Neural Sequence Chunkers". TR FKI-148, TU Munich.
- (1992). "Learning complex, extended sequences using the principle of history compression (based on TR FKI-148, 1991)". Neural Computation.
- Schmidhuber, Jürgen. (1993). "Habilitation thesis: System modeling and optimization".
- S. Hochreiter., "[http://people.idsia.ch/~juergen/SeppHochreiter1991ThesisAdvisorSchmidhuber.pdf Untersuchungen zu dynamischen neuronalen Netzen]". {{Webarchive. link. (2015-03-06 . ''Diploma thesis. Institut f. Informatik, Technische Univ. Munich. Advisor: J. Schmidhuber'', 1991.)
- Hochreiter, S.. (15 January 2001). "A Field Guide to Dynamical Recurrent Networks". John Wiley & Sons.
- {{Cite Q. Q98967430
- (1999). "9th International Conference on Artificial Neural Networks: ICANN '99".
- (1991). "A possibility for implementing curiosity and boredom in model-building neural controllers". MIT Press/Bradford Books.
- (2010). "Formal Theory of Creativity, Fun, and Intrinsic Motivation (1990-2010)". IEEE Transactions on Autonomous Mental Development.
- Schmidhuber, Jürgen. (2020). "Generative Adversarial Networks are Special Cases of Artificial Curiosity (1990) and also Closely Related to Predictability Minimization (1991)". Neural Networks.
- (1985-01-01). "A learning algorithm for boltzmann machines". Cognitive Science.
- Smolensky, Paul. (1986). "Parallel Distributed Processing: Explorations in the Microstructure of Cognition, Volume 1: Foundations". MIT Press.
- (1995). "The Helmholtz machine.". Neural Computation.
- (1995-05-26). "The wake-sleep algorithm for unsupervised neural networks". Science.
- Sejnowski, Terrence J.. (2018). "The Deep Learning Revolution". [[The MIT Press]].
- (1988-08-20). "Predicting the secondary structure of globular proteins using neural network models". Journal of Molecular Biology.
- (1 August 1993). "Hybrid neural network/hidden markov model systems for continuous speech recognition". International Journal of Pattern Recognition and Artificial Intelligence.
- Robinson, T.. (1992). "A real-time recurrent error propagation network word recognition system". ICASSP.
- (March 1989). "Phoneme recognition using time-delay neural networks". IEEE Transactions on Acoustics, Speech, and Signal Processing.
- (2009). "Research Developments and Directions in Speech Recognition and Understanding, Part 1". IEEE Signal Processing Magazine.
- Bengio, Y.. (1991). "Artificial Neural Networks and their Application to Speech/Sequence Recognition". McGill University Ph.D. thesis.
- (1994). "Analysis of correlation structure for a neural predictive model with applications to speech recognition". Neural Networks.
- (2000). "The NIST speaker recognition evaluation ± Overview, methodology, systems, results, perspective". Speech Communication.
- (2000). "Robustness to Telephone Handset Distortion in Speaker Recognition by Discriminative Feature Design". Speech Communication.
- L.P Heck and R. Teunen. "Secure and Convenient Transactions with Nuance Verifier". Nuance Users Conference, April 1998.
- "Acoustic Modeling with Deep Neural Networks Using Raw Time Signal for LVCSR (PDF Download Available)".
- (2003). "Biologically Plausible Speech Recognition with LSTM Neural Nets".
- (2006). "Connectionist temporal classification: Labelling unsegmented sequence data with recurrent neural networks". Proceedings of the International Conference on Machine Learning, ICML 2006.
- Santiago Fernandez, Alex Graves, and Jürgen Schmidhuber (2007). [https://mediatum.ub.tum.de/doc/1289941/file.pdf An application of recurrent neural networks to discriminative keyword spotting] {{Webarchive. link. (2018-11-18. Proceedings of ICANN (2), pp. 220–229.)
- Graves, Alex; and Schmidhuber, Jürgen; ''Offline Handwriting Recognition with Multidimensional Recurrent Neural Networks'', in Bengio, Yoshua; Schuurmans, Dale; Lafferty, John; Williams, Chris K. I.; and Culotta, Aron (eds.), ''Advances in Neural Information Processing Systems 22 (NIPS'22), December 7th–10th, 2009, Vancouver, BC'', Neural Information Processing Systems (NIPS) Foundation, 2009, pp. 545–552
- Hinton, Geoffrey E.. (1 October 2007). "Learning multiple layers of representation". Trends in Cognitive Sciences.
- (2006). "A Fast Learning Algorithm for Deep Belief Nets". [[Neural Computation (journal).
- G. E. Hinton., "[http://www.csri.utoronto.ca/~hinton/absps/ticsdraft.pdf Learning multiple layers of representation]". {{Webarchive. link. (2018-05-22. ''Trends in Cognitive Sciences'', 11, pp. 428–434, 2007.)
- Hinton, Geoffrey E.. (October 2007). "Learning multiple layers of representation". Trends in Cognitive Sciences.
- (July 2006). "A Fast Learning Algorithm for Deep Belief Nets". Neural Computation.
- Hinton, Geoffrey E.. (2009-05-31). "Deep belief networks". Scholarpedia.
- [[Yann LeCun]] (2016). Slides on Deep Learning [https://indico.cern.ch/event/510372/ Online] {{Webarchive. link. (2016-04-23)
- (2012). "Deep Neural Networks for Acoustic Modeling in Speech Recognition: The Shared Views of Four Research Groups". IEEE Signal Processing Magazine.
- (2014). ["Automatic Speech Recognition: A Deep Learning Approach (Publisher: Springer)"]({{google books). Springer.
- (3 December 2015). "Deng receives prestigious IEEE Technical Achievement Award - Microsoft Research".
- (May 2013). "New types of deep neural network learning for speech recognition and related applications: An overview (ICASSP)". Microsoft.
- Li, Deng. (September 2014). "Keynote talk: 'Achievements and Challenges of Deep Learning - From Speech Analysis and Recognition To Language and Multimodal Processing'".
- (2010). "Roles of Pre-Training and Fine-Tuning in Context-Dependent DBN-HMMs for Real-World Speech Recognition". NIPS Workshop on Deep Learning and Unsupervised Feature Learning.
- (2011). "Interspeech 2011".
- (1 May 2013). "Recent Advances in Deep Learning for Speech Research at Microsoft". Microsoft Research.
- (2004). "GPU implementation of neural networks". Pattern Recognition.
- (2006). "High performance convolutional neural networks for document processing".
- (2017). "Efficient Processing of Deep Neural Networks: A Tutorial and Survey".
- (2009-06-14). "Proceedings of the 26th Annual International Conference on Machine Learning". Association for Computing Machinery.
- (21 September 2010). "Deep, Big, Simple Neural Nets for Handwritten Digit Recognition". Neural Computation.
- (2011). "Flexible, High Performance Convolutional Neural Networks for Image Classification". International Joint Conference on Artificial Intelligence.
- (2012). "Advances in Neural Information Processing Systems 25". Curran Associates, Inc..
- (2013). "Medical Image Computing and Computer-Assisted Intervention – MICCAI 2013".
- (2012). "Building High-level Features Using Large Scale Unsupervised Learning".
- (2014). "Very Deep Convolution Networks for Large Scale Image Recognition".
- Szegedy, Christian. (2015). "Going deeper with convolutions". Cvpr2015.
- (2014). "Show and Tell: A Neural Image Caption Generator".
- (2014). "From Captions to Visual Concepts and Back".
- (2014). "Unifying Visual-Semantic Embeddings with Multimodal Neural Language Models".
- (2015-04-10). "Very Deep Convolutional Networks for Large-Scale Image Recognition".
- (2016). "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification".
- (10 Dec 2015). "Deep Residual Learning for Image Recognition".
- (2016). "2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)". IEEE.
- (26 August 2015). "A Neural Algorithm of Artistic Style".
- (2014). "Generative Adversarial Networks".
- (December 14, 2018). "GAN 2.0: NVIDIA's Hyperrealistic Face Generator".
- (26 February 2018). "Progressive Growing of GANs for Improved Quality, Stability, and Variation".
- "Prepare, Don't Panic: Synthetic Media and Deepfakes". witness.org.
- (2015-06-01). "Deep Unsupervised Learning using Nonequilibrium Thermodynamics". PMLR.
- Google Research Blog. The neural networks behind Google Voice transcription. August 11, 2015. By Françoise Beaufays http://googleresearch.blogspot.co.at/2015/08/the-neural-networks-behind-google-voice.html
- (September 2015). "Google voice search: faster and more accurate".
- (2021). "2021 International Conference on Computer Communication and Informatics (ICCCI)".
- (2014). "Long Short-Term Memory recurrent neural network architectures for large scale acoustic modeling".
- (2014). "Constructing Long Short-Term Memory based Deep Recurrent Neural Networks for Large Vocabulary Speech Recognition".
- (2015). "Unidirectional Long Short-Term Memory Recurrent Neural Network with Recurrent Output Layer for Low-Latency Speech Synthesis". ICASSP.
- "2018 ACM A.M. Turing Award Laureates".
- Ferrie, C., & Kaiser, S.. (2019). "Neural Networks for Babies". Sourcebooks.
- (January 2016). "Mastering the game of Go with deep neural networks and tree search". Nature.
- "A Guide to Deep Learning and Neural Networks".
- (2021). "Applications of deep learning in congestion detection, prediction and alleviation: A survey". Transportation Research Part C: Emerging Technologies.
- (2013). "Deep neural networks for object detection". Advances in Neural Information Processing Systems.
- (2018). "The power of deeper networks for expressing natural functions".
- Hof, Robert D.. "Is Artificial Intelligence Finally Coming into Its Own?". MIT Technology Review.
- (2001). "LSTM Recurrent Networks Learn Simple Context Free and Context Sensitive Languages". IEEE Transactions on Neural Networks.
- (2016). "Exploring the Limits of Language Modeling".
- (2015). "Multilingual Language Processing from Bytes".
- Mikolov, T.. (2010). "Recurrent neural network based language model". Interspeech.
- (1 November 1997). "Long Short-Term Memory". Neural Computation.
- "Learning Precise Timing with LSTM Recurrent Networks (PDF Download Available)".
- (1998). "Gradient-based learning applied to document recognition". Proceedings of the IEEE.
- (2013). "2013 IEEE International Conference on Acoustics, Speech and Signal Processing".
- (2013). "2013 IEEE International Conference on Acoustics, Speech and Signal Processing".
- Dahl, G.. (2013). "Improving DNNs for LVCSR using rectified linear units and dropout". ICASSP.
- "Data Augmentation - deeplearning.ai {{!}} Coursera".
- Hinton, G. E.. (2010). "A Practical Guide to Training Restricted Boltzmann Machines". Tech. Rep. UTML TR 2010-003.
- (November 2017). "Proceedings of the International Conference for High Performance Computing, Networking, Storage and Analysis on - SC '17". SC '17, ACM.
- (2019). "CHAOS: a parallelization scheme for training convolutional neural networks on Intel Xeon Phi". The Journal of Supercomputing.
- Ting Qin, et al. "A learning algorithm of CMAC based on RLS". Neural Processing Letters 19.1 (2004): 49-61.
- Ting Qin, et al. "[http://www-control.eng.cam.ac.uk/Homepage/papers/cued_control_997.pdf Continuous CMAC-QRLS and its systolic array]". {{Webarchive. link. (2018-11-18 . Neural Processing Letters 22.1 (2005): 1-16.)
- (23 October 2015). "Deep Neural Networks for Acoustic Modeling in Speech Recognition".
- (December 2019). "GPUs Continue to Dominate the AI Accelerator Market for Now". InformationWeek.
- (2019). "AI is changing the entire nature of computation". ZDNet.
- (16 May 2018). "AI and Compute".
- "HUAWEI Reveals the Future of Mobile AI at IFA 2017 | HUAWEI Latest News | HUAWEI Global".
- (2017-06-24). "In-Datacenter Performance Analysis of a Tensor Processing Unit". ACM SIGARCH Computer Architecture News.
- Woodie, Alex. (2021-11-01). "Cerebras Hits the Accelerator for Deep Learning Workloads".
- (2021-04-20). "Cerebras launches new AI supercomputing processor with 2.6 trillion transistors".
- (2020). "Logic-in-memory based on an atomically thin semiconductor". Nature.
- (2021). "Parallel convolutional processing using an integrated photonic tensor". Nature.
- (1993). "TIMIT Acoustic-Phonetic Continuous Speech Corpus". Linguistic Data Consortium.
- (30 September 1991). "Several Improvements to a Recurrent Error Propagation Network Phone Recognition System". Cambridge University Engineering Department Technical Report.
- (2014). "Convolutional Neural Networks for Speech Recognition". IEEE/ACM Transactions on Audio, Speech, and Language Processing.
- (2014). "Ensemble Deep Learning for Speech Recognition". Proc. Interspeech.
- (2015). "Phone Recognition with Hierarchical Convolutional Deep Maxout Networks". EURASIP Journal on Audio, Speech, and Music Processing.
- (2016). "WaveNet: A Generative Model for Raw Audio".
- (2016-09-08). "WaveNet: A generative model for raw audio".
- (2023). "Transformers in Speech Processing: A Survey".
- (17 December 2014). "How Skype Used AI to Build Its Amazing New Language Translator {{!}} WIRED".
- (2014). "Deep Speech: Scaling up end-to-end speech recognition".
- "MNIST handwritten digit database, Yann LeCun, Corinna Cortes and Chris Burges".
- (August 2012). "Multi-column deep neural network for traffic sign classification". Neural Networks.
- (2014). "Surpassing Human Level Face Recognition".
- [http://www.technologyreview.com/news/533936/nvidia-demos-a-car-computer-trained-with-deep-learning/ Nvidia Demos a Car Computer Trained with "Deep Learning"] (6 January 2015), David Talbot, ''[[MIT Technology Review]]''
- (10 April 2017). "The Machine as Artist: An Introduction". Arts.
- Blaise Agüera y Arcas. (29 September 2017). "Art in the Age of Machine Intelligence". Arts.
- (2014). "word2vec Explained: Deriving Mikolov et al.'s Negative-Sampling Word-Embedding Method".
- "Deep Learning for NLP".
- (2013). "Parsing With Compositional Vector Grammars". Proceedings of the ACL 2013 Conference.
- (October 2013). "Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing". Association for Computational Linguistics.
- (1 November 2014). "A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval". Microsoft Research.
- (1 October 2013). "Learning Deep Structured Semantic Models for Web Search using Clickthrough Data". Microsoft Research.
- (2015). "Using recurrent neural networks for slot filling in spoken language understanding". IEEE Transactions on Audio, Speech, and Language Processing.
- (2014). "Sequence to Sequence Learning with Neural Networks". Proc. NIPS.
- (1 June 2014). "Learning Continuous Phrase Representations for Translation Modeling". Microsoft Research.
- (2017). "Authorship verification using deep belief network systems". International Journal of Communication Systems.
- (2023). "Precision information extraction for rare disease epidemiology at scale". Journal of Translational Medicine.
- "Deep Learning for Natural Language Processing: Theory and Practice (CIKM2014 Tutorial) - Microsoft Research". Microsoft Research.
- Turovsky, Barak. (15 November 2016). "Found in translation: More accurate, fluent sentences in Google Translate".
- (22 November 2016). "Zero-Shot Translation with Google's Multilingual Neural Machine Translation System".
- (2016). "Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation".
- Metz, Cade. (27 September 2016). "An Infusion of AI Makes Google Translate More Powerful Than Ever".
- (2010). "MT on and for the Web".
- "Merck Molecular Activity Challenge".
- "Multi-task Neural Networks for QSAR Predictions {{!}} Data Science Association".
- "Toxicology in the 21st century Data Challenge"
- "NCATS Announces Tox21 Data Challenge Winners".
- "NCATS Announces Tox21 Data Challenge Winners".
- (9 October 2015). "AtomNet: A Deep Convolutional Neural Network for Bioactivity Prediction in Structure-based Drug Discovery".
- "Toronto startup has a faster way to discover effective medicines".
- (27 May 2015). "Startup Harnesses Supercomputers to Seek Cures".
- (2017-06-12). "Neural Message Passing for Quantum Chemistry".
- (2019). "Deep learning enables rapid identification of potent DDR1 kinase inhibitors". Nature Biotechnology.
- "A Molecule Designed By AI Exhibits 'Druglike' Qualities".
- (2013). "Advances in Neural Information Processing Systems 26". Curran Associates, Inc..
- (2019). "The Deep Learning–Based Recommender System "Pubmender" for Choosing a Biomedical Publication Venue: Development and Validation Study". [[Journal of Medical Internet Research]].
- (1 May 2015). "A Multi-View Deep Learning Approach for Cross Domain User Modeling in Recommendation Systems". Microsoft Research.
- (1 January 2014). "Proceedings of the 5th ACM Conference on Bioinformatics, Computational Biology, and Health Informatics". ACM.
- Sathyanarayana, Aarti. (1 January 2016). "Sleep Quality Prediction From Wearable Data Using Deep Learning". JMIR mHealth and uHealth.
- (13 August 2016). "Using recurrent neural network models for early detection of heart failure onset". Journal of the American Medical Informatics Association.
- "DeepMind's protein-folding AI has solved a 50-year-old grand challenge of biology".
- Shead, Sam. (2020-11-30). "DeepMind solves 50-year-old 'grand challenge' with protein folding A.I.".
- (2022). "Neural Joint Entropy Estimation". IEEE Transactions on Neural Networks and Learning Systems.
- (December 2017). "A survey on deep learning in medical image analysis". Medical Image Analysis.
- (2017). "2017 IEEE International Conference on Computer Vision Workshops (ICCVW)".
- (2020). "Liver Cancer Detection Using Hybridized Fully Convolutional Neural Network Based on Deep Learning Framework". IEEE Access.
- (2022-04-03). "System for the Recognizing of Pigmented Skin Lesions with Fusion and Analysis of Heterogeneous Data Based on a Multimodal Neural Network". Cancers.
- (2017). "2017 2nd International Conference on Communication Systems, Computing and IT Applications (CSCITA)".
- (13 November 2018). "Colorizing and Restoring Old Images with Deep Learning".
- "Shrinkage Fields for Effective Image Restoration".
- Nuñez, Michael. (2023-11-29). "Google DeepMind's materials AI has already discovered 2.2 million new crystals".
- (December 2023). "Scaling deep learning for materials discovery". Nature.
- Peplow, Mark. (2023-11-29). "Google AI and robots join forces to build new materials". Nature.
- "Army researchers develop new algorithms to train robots".
- (2019-02-01). "Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations". Journal of Computational Physics.
- (2020-03-01). "Physics-informed neural networks for high-speed flows". Computer Methods in Applied Mechanics and Engineering.
- (2020-02-28). "Hidden fluid mechanics: Learning velocity and pressure fields from flow visualizations". Science.
- Huang, Yunfei and Greenberg, David S. "[https://arxiv.org/pdf/2506.05513 Geometric and Physical Constraints Synergistically Enhance Neural PDE Surrogates]." Proceedings of the 42th international conference on Machine learning. ACM, 2025.
- (2018). "Solving high-dimensional partial differential equations using deep learning". Proceedings of the National Academy of Sciences.
- (2021). "High-Resolution Multi-Spectral Imaging With Diffractive Lenses and Learned Reconstruction". IEEE Transactions on Computational Imaging.
- (December 2020). "Training Variational Networks With Multidomain Simulations: Speed-of-Sound Image Reconstruction". IEEE Transactions on Ultrasonics, Ferroelectrics, and Frequency Control.
- (2023-12-22). "Learning skillful medium-range global weather forecasting". Science.
- Sivakumar, Ramakrishnan. (2023-11-27). "GraphCast: A breakthrough in Weather Forecasting".
- (2020). "DeepMAge: A Methylation Aging Clock Developed with Deep Learning". Aging and Disease.
- (2002). "Many-layered learning". Neural Computation.
- Elman, Jeffrey L.. (1998). ["Rethinking Innateness: A Connectionist Perspective on Development"]({{google books). MIT Press.
- (1996). "Dynamic plasticity influences the emergence of function in a simple cortical array". Neural Networks.
- (1997). "The neural basis of cognitive development: A constructivist manifesto". Behavioral and Brain Sciences.
- S. Blakeslee, "In brain's early growth, timetable may be critical", ''The New York Times, Science Section'', pp. B5–B6, 1995.
- (15 May 1991). "A more biologically plausible learning rule for neural networks.". Proceedings of the National Academy of Sciences.
- O'Reilly, Randall C.. (1 July 1996). "Biologically Plausible Error-Driven Learning Using Local Activation Differences: The Generalized Recirculation Algorithm". Neural Computation.
- (2016). "Probabilistic Models and Generative Neural Networks: Towards an Unified Framework for Modeling Normal and Impaired Neurocognitive Functions". Frontiers in Computational Neuroscience.
- (September 2017). "Letter perception emerges from unsupervised deep learning and recycling of natural image features". Nature Human Behaviour.
- (3 November 2011). "Neural Dynamics as Sampling: A Model for Stochastic Computation in Recurrent Networks of Spiking Neurons". PLOS Computational Biology.
- (February 1999). "Linear summation of excitatory inputs by CA1 pyramidal neurons". Neuron.
- (1 August 2004). "Sparse coding of sensory inputs". Current Opinion in Neurobiology.
- (March 2016). "Using goal-driven deep learning models to understand sensory cortex". Nature Neuroscience.
- (19 February 2018). "An emergentist perspective on the origin of number sense". Phil. Trans. R. Soc. B.
- (8 July 2015). "Deep Neural Networks Reveal a Gradient in the Complexity of Neural Representations across the Ventral Stream". Journal of Neuroscience.
- Metz, C.. (12 December 2013). "Facebook's 'Deep Learning' Guru Reveals the Future of AI".
- (2016). "Google AI algorithm masters ancient game of Go". Nature.
- (28 January 2016). "Mastering the game of Go with deep neural networks and tree search". [[Nature (journal).
- "A Google DeepMind Algorithm Uses Deep Learning and More to Master the Game of Go {{!}} MIT Technology Review".
- Metz, Cade. (6 November 2017). "A.I. Researchers Leave Elon Musk Lab to Begin Robotics Start-Up". The New York Times.
- (2008). "2008 7th IEEE International Conference on Development and Learning".
- (16 May 2018). "Talk to the Algorithms: AI Becomes a Faster Learner".
- Marcus, Gary. (14 January 2018). "In defense of skepticism about deep learning".
- Knight, Will. (14 March 2017). "DARPA is funding projects that will try to open up AI's black boxes".
- (17 June 2015). "Inceptionism: Going Deeper into Neural Networks". Google Research Blog.
- Alex Hern. (18 June 2015). "Yes, androids do dream of electric sheep". The Guardian.
- (2023-03-24). "Deep learning diffusion by search trend: a country-level analysis". Future Studies Research Journal: Trends and Strategies.
- Goertzel, Ben. (2015). "Are there Deep Reasons Underlying the Pathologies of Today's Deep Learning Algorithms?".
- (2014). "Deep Neural Networks are Easily Fooled: High Confidence Predictions for Unrecognizable Images".
- (2013). "Intriguing properties of neural networks".
- (2006). "A stochastic grammar of images". Found. Trends Comput. Graph. Vis..
- Miller, G. A., and N. Chomsky. "Pattern conception". Paper for Conference on pattern detection, University of Michigan. 1957.
- Eisner, Jason. "Deep Learning of Recursive Structure: Grammar Induction".
- (11 September 2017). "Hackers Have Already Started to Weaponize Artificial Intelligence".
- (18 June 2018). "How hackers can force AI to make dumb mistakes".
- (10 October 2017). "AI Is Easy to Fool—Why That Needs to Change". Singularity Hub.
- Gibney, Elizabeth. (2017). "The scientist who spots fake videos". Nature.
- Tubaro, Paola. (2020). "Whose intelligence is artificial intelligence?". Global Dialogue.
- Mühlhoff, Rainer. (6 November 2019). "Human-aided artificial intelligence: Or, how to run large computations in human brains? Toward a media sociology of machine learning". New Media & Society.
This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.
Ask Mako anything about Deep learning — get instant answers, deeper analysis, and related topics.
Research with MakoFree with your Surf account
Create a free account to save articles, ask Mako questions, and organize your research.
Sign up freeThis content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.
Report