Skip to content
Surf Wiki
Save to docs
science/mathematics

From Surf Wiki (app.surf) — the open knowledge base

Neural network (machine learning)

Computational model used in machine learning, based on connected, hierarchical functions

Neural network (machine learning)

Summary

Computational model used in machine learning, based on connected, hierarchical functions

An artificial neural network is an interconnected group of nodes, inspired by a simplification of [[neuron]]s in a [[brain]]. Here, each circular node represents an [[artificial neuron]] and an arrow represents a connection from the output of one artificial neuron to the input of another.

In machine learning, a neural network (NN) or neural net, also called an artificial neural network (ANN), is a computational model inspired by the structure and functions of biological neural networks.

A neural network consists of connected units or nodes called artificial neurons, which loosely model the neurons in the brain. Artificial neuron models that mimic biological neurons more closely have also been recently investigated and shown to significantly improve performance. These are connected by edges, which model the synapses in the brain. Each artificial neuron receives signals from connected neurons, then processes them and sends a signal to other connected neurons. The "signal" is a real number, and the output of each neuron is computed by some non-linear function of the totality of its inputs, called the activation function. The strength of the signal at each connection is determined by a weight, which adjusts during the learning process.

Typically, neurons are aggregated into layers. Different layers may perform different transformations on their inputs. Signals travel from the first layer (the input layer) to the last layer (the output layer), possibly passing through multiple intermediate layers (hidden layers). A network is typically called a deep neural network if it has at least two hidden layers.

Artificial neural networks are used for various tasks, including predictive modeling, adaptive control, and solving problems in artificial intelligence. They can learn from experience, and can derive conclusions from a complex and seemingly unrelated set of information.

Training

Neural networks are typically trained through empirical risk minimization, which is based on the idea of optimizing the network's parameters to minimize the difference, or empirical risk, between the predicted output and the actual target values in a given dataset. Gradient-based methods such as backpropagation are usually used to estimate the parameters of the network. During the training phase, ANNs learn from labeled training data by iteratively updating their parameters to minimize a defined loss function. This method allows the network to generalize to unseen data.{{multiple image In reality, textures and outlines would not be represented by single nodes, but rather by associated weight patterns of multiple nodes.}}

History

Main article: History of artificial neural networks

Early work

Today's deep neural networks are based on early work in statistics over 200 years ago. The simplest kind of feedforward neural network (FNN) is a linear network, which consists of a single layer of output nodes with linear activation functions; the inputs are fed directly to the outputs via a series of weights. The sum of the products of the weights and the inputs is calculated at each node. The mean squared errors between these calculated outputs and the given target values are minimized by creating an adjustment to the weights. This technique has been known for over two centuries as the method of least squares or linear regression. It was used as a means of finding a good rough linear fit to a set of points by Legendre (1805) and Gauss (1795) for the prediction of planetary movement.

Historically, digital computers such as the von Neumann model operate via the execution of explicit instructions with access to memory by a number of processors. Some neural networks, on the other hand, originated from efforts to model information processing in biological systems through the framework of connectionism. Unlike the von Neumann model, connectionist computing does not separate memory and processing.

Warren McCulloch and Walter Pitts This model paved the way for research to split into two approaches. One approach focused on biological processes while the other focused on the application of neural networks to artificial intelligence.

In the late 1940s, D. O. Hebb proposed a learning hypothesis based on the mechanism of neural plasticity that became known as Hebbian learning. It was used in many early neural networks, such as Rosenblatt's perceptron and the Hopfield network. Farley and Clark (1954) used computational machines to simulate a Hebbian network. Other neural network computational machines were created by Rochester, Holland, Habit and Duda (1956).

In 1958, psychologist Frank Rosenblatt described the perceptron, one of the first implemented artificial neural networks, funded by the United States Office of Naval Research. R. D. Joseph (1960) mentions an even earlier perceptron-like device by Farley and Clark: "Farley and Clark of MIT Lincoln Laboratory actually preceded Rosenblatt in the development of a perceptron-like device." However, "they dropped the subject." The perceptron raised public excitement for research in Artificial Neural Networks, causing the US government to drastically increase funding. This contributed to "the Golden Age of AI" fueled by the optimistic claims made by computer scientists regarding the ability of perceptrons to emulate human intelligence.

The first perceptrons did not have adaptive hidden units. However, Joseph (1960) also discussed multilayer perceptrons with an adaptive hidden layer. Rosenblatt (1962) cited and adopted these ideas, also crediting work by H. D. Block and B. W. Knight. Unfortunately, these early efforts did not lead to a working learning algorithm for hidden units, i.e., deep learning.

Deep learning breakthroughs in the 1960s and 1970s

Fundamental research was conducted on ANNs in the 1960s and 1970s. 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 the Soviet Union (1965). They regarded it as a form of polynomial regression, or a generalization of Rosenblatt's perceptron. 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.

Nevertheless, research stagnated in the United States following the work of Minsky and Papert (1969), who emphasized that basic perceptrons were incapable of processing the exclusive-or circuit. This insight was irrelevant for the deep networks of Ivakhnenko (1965) and Amari (1967).

In 1976 transfer learning was introduced in neural networks learning.

Deep learning architectures for convolutional neural networks (CNNs) with convolutional layers and downsampling layers and weight replication began with the neocognitron introduced by Kunihiko Fukushima in 1979, though not trained by backpropagation.

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. In 1970, Seppo Linnainmaa published the modern form of backpropagation in his Master's 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.

Convolutional neural networks

Kunihiko Fukushima's convolutional neural network (CNN) architecture of 1979 also introduced max pooling, a popular downsampling procedure for CNNs. CNNs have become an essential tool for computer vision.

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 32×32 pixel images.

From 1988 onward, the use of neural networks transformed the field of protein structure prediction, in particular when the first cascading networks were trained on profiles (matrices) produced by multiple sequence alignments.

Recurrent neural networks

One origin of RNN was statistical mechanics. In 1972, Shun'ichi Amari proposed to modify the weights of an Ising model by Hebbian learning rule as a model of associative memory, adding in the component of learning. This was popularized as the Hopfield network by John Hopfield (1982). Another origin of RNN was neuroscience. The word "recurrent" is used to describe loop-like structures in anatomy. In 1901, Cajal observed "recurrent semicircles" in the cerebellar cortex. Hebb considered "reverberating circuit" as an explanation for short-term memory. The McCulloch and Pitts paper (1943) considered neural networks that contain cycles, and noted that the current activity of such networks can be affected by activity indefinitely far in the past.

In 1982 a recurrent neural network with an array architecture (rather than a multilayer perceptron architecture), namely a Crossbar Adaptive Array,Bozinovski S. (1995) "Neuro genetic agents and structural theory of self-reinforcement learning systems". CMPSCI Technical Report 95-107, University of Massachusetts at Amherst https://web.cs.umass.edu/publication/docs/1995/UM-CS-1995-107.pdf used direct recurrent connections from the output to the supervisor (teaching) inputs. In addition of computing actions (decisions), it computed internal state evaluations (emotions) of the consequence situations. Eliminating the external supervisor, it introduced the self-learning method in neural networks.

In cognitive psychology, the journal American Psychologist in early 1980's carried out a debate on the relation between cognition and emotion. Zajonc in 1980 stated that emotion is computed first and is independent from cognition, while Lazarus in 1982 stated that cognition is computed first and is inseparable from emotion. In 1982 the Crossbar Adaptive Array gave a neural network model of cognition-emotion relation. It was an example of a debate where an AI system, a recurrent neural network, contributed to an issue in the same time addressed by cognitive psychology.

Two early influential works were the Jordan network (1986) and the Elman network (1990), which applied RNN to study cognitive psychology.

In the 1980s, backpropagation did not work well for deep RNNs. To overcome this problem, in 1991, Jürgen Schmidhuber proposed the "neural sequence chunker" or "neural history compressor" which introduced the important concepts of self-supervised pre-training (the "P" in ChatGPT) and neural knowledge distillation.

In 1991, Sepp Hochreiter's diploma thesis identified and analyzed the vanishing gradient problem and proposed recurrent residual connections to solve it. He and Schmidhuber introduced long short-term memory (LSTM), which set accuracy records in multiple applications domains. This was not yet the modern version of LSTM, which required the forget gate, which was introduced in 1999. It became the default choice for RNN architecture.

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.

Deep learning

Between 2009 and 2012, ANNs began winning prizes in image recognition contests, approaching human level performance on various tasks, initially in pattern recognition and handwriting recognition. 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 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.

In 2012, Ng and Dean created a network that learned to recognize higher-level concepts, such as cats, only from watching unlabeled images. Unsupervised pre-training and increased computing power from GPUs and distributed computing allowed the use of larger networks, particularly in image and visual recognition problems, which became known as "deep learning".

Radial basis function and wavelet networks were introduced in 2013. These can be shown to offer best approximation properties and have been applied in nonlinear system identification and classification applications.

Generative adversarial network (GAN) (Ian Goodfellow et al., 2014) became state of the art in generative modeling during 2014–2018 period. The GAN principle was originally published in 1991 by Jürgen Schmidhuber who called it "artificial curiosity": two neural networks 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. 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 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 December 2015. ResNet behaves like an open-gated Highway Net.

Main article: Transformer (deep learning architecture)#History

During the 2010s, the seq2seq model was developed, and attention mechanisms were added. It led to the modern Transformer architecture in 2017 in Attention Is All You Need. It requires computation time that is quadratic in the size of the context window. Jürgen Schmidhuber's fast weight controller (1992) scales linearly and was later shown to be equivalent to the unnormalized linear Transformer. Transformers have increasingly become the model of choice for natural language processing. Many modern large language models such as ChatGPT, GPT-4, and BERT use this architecture.

Models

ANNs began as an attempt to exploit the architecture of the human brain to perform tasks that conventional algorithms had little success with. They soon reoriented towards improving empirical results, abandoning attempts to remain true to their biological precursors. ANNs have the ability to learn and model non-linearities and complex relationships. This is achieved by neurons being connected in various patterns, allowing the output of some neurons to become the input of others. The network forms a directed, weighted graph.

An artificial neural network consists of simulated neurons. Each neuron is connected to other nodes via links like a biological axon-synapse-dendrite connection. All the nodes connected by links take in some data and use it to perform specific operations and tasks on the data. Each link has a weight, determining the strength of one node's influence on another, allowing weights to choose the signal between neurons.

Artificial neurons

Main article: Artificial neuron

ANNs are composed of artificial neurons which are conceptually derived from biological neurons. Each artificial neuron has inputs and produces a single output which can be sent to multiple other neurons. The inputs can be the feature values of a sample of external data, such as images or documents, or they can be the outputs of other neurons. The outputs of the final output neurons of the neural net accomplish the task, such as recognizing an object in an image.

To find the output of the neuron we take the weighted sum of all the inputs, weighted by the weights of the connections from the inputs to the neuron. We add a bias term to this sum. This weighted sum is sometimes called the activation. This weighted sum is then passed through a (usually nonlinear) activation function to produce the output. The initial inputs are external data, such as images and documents. The ultimate outputs accomplish the task, such as recognizing an object in an image.

Organization

The neurons are typically organized into multiple layers, especially in deep learning. Neurons of one layer connect only to neurons of the immediately preceding and immediately following layers. The layer that receives external data is the input layer. The layer that produces the ultimate result is the output layer. In between them are zero or more hidden layers. Single layer and unlayered networks are also used. Between two layers, multiple connection patterns are possible. They can be 'fully connected', with every neuron in one layer connecting to every neuron in the next layer. They can be pooling, where a group of neurons in one layer connects to a single neuron in the next layer, thereby reducing the number of neurons in that layer. Neurons with only such connections form a directed acyclic graph and are known as feedforward networks. Alternatively, networks that allow connections between neurons in the same or previous layers are known as recurrent networks.

Hyperparameter

Main article: Hyperparameter (machine learning)

A hyperparameter is a constant parameter defining any configurable part of the learning process, whose value is set prior to training. Examples of hyperparameters include learning rate, batch size and regularization parameters.. The performance of a neural network is strongly influenced by the choice of hyperparameter values, and thus the hyperparameters are often optimized as part of the training process, a process called hyperparameter tuning or hyperparameter optimization.

Learning

Learning is the adaptation of the network to better handle a task by considering sample observations. Learning involves adjusting the weights (and optional thresholds) of the network to improve the accuracy of the result. This is done by minimizing the observed errors. Learning is complete when examining additional observations does not usefully reduce the error rate. Even after learning, the error rate typically does not reach 0. If after learning, the error rate is too high, the network typically must be redesigned. Practically this is done by defining a cost function that is evaluated periodically during learning. As long as its output continues to decline, learning continues. The cost is frequently defined as a statistic whose value can only be approximated. The outputs are actually numbers, so when the error is low, the difference between the output (almost certainly a cat) and the correct answer (cat) is small. Learning attempts to reduce the total of the differences across the observations. Most learning models can be viewed as a straightforward application of optimization theory and statistical estimation.

Learning rate

Main article: Learning rate

The learning rate defines the size of the corrective steps that the model takes to adjust for errors in each observation. A high learning rate shortens the training time, but with lower ultimate accuracy, while a lower learning rate takes longer, but with the potential for greater accuracy. Optimizations such as Quickprop are primarily aimed at speeding up error minimization, while other improvements mainly try to increase reliability. In order to avoid oscillation inside the network such as alternating connection weights, and to improve the rate of convergence, refinements use an adaptive learning rate that increases or decreases as appropriate. The concept of momentum allows the balance between the gradient and the previous change to be weighted such that the weight adjustment depends to some degree on the previous change. A momentum close to 0 emphasizes the gradient, while a value close to 1 emphasizes the last change.

Cost function

While it is possible to define a cost function ad hoc, frequently the choice is determined by the function's desirable properties (such as convexity) because it arises from the model (e.g. in a probabilistic model, the model's posterior probability can be used as an inverse cost).

Backpropagation

Main article: Backpropagation

Backpropagation is a method used to adjust the connection weights to compensate for each error found during learning. The error amount is effectively divided among the connections. Technically, backpropagation calculates the gradient (the derivative) of the cost function associated with a given state with respect to the weights. The weight updates can be done via stochastic gradient descent or other methods, such as extreme learning machines, "no-prop" networks, training without backtracking, "weightless" networks, and non-connectionist neural networks.

Learning paradigms

Machine learning is commonly separated into three main learning paradigms, supervised learning, unsupervised learning and reinforcement learning. Each corresponds to a particular learning task.

Supervised learning

Supervised learning uses a set of paired inputs and desired outputs. The learning task is to produce the desired output for each input. In this case, the cost function is related to eliminating incorrect deductions. A commonly used cost is the mean-squared error, which tries to minimize the average squared error between the network's output and the desired output. Tasks suited for supervised learning are pattern recognition (also known as classification) and regression (also known as function approximation). Supervised learning is also applicable to sequential data (e.g., for handwriting, speech and gesture recognition). This can be thought of as learning with a "teacher", in the form of a function that provides continuous feedback on the quality of solutions obtained thus far.

Unsupervised learning

In unsupervised learning, input data is given along with the cost function, some function of the data \textstyle x and the network's output. The cost function is dependent on the task (the model domain) and any a priori assumptions (the implicit properties of the model, its parameters and the observed variables). As a trivial example, consider the model \textstyle f(x) = a where \textstyle a is a constant and the cost \textstyle C=E[(x - f(x))^2]. Minimizing this cost produces a value of \textstyle a that is equal to the mean of the data. The cost function can be much more complicated. Its form depends on the application: for example, in compression it could be related to the mutual information between \textstyle x and \textstyle f(x), whereas in statistical modeling, it could be related to the posterior probability of the model given the data (note that in both of those examples, those quantities would be maximized rather than minimized). Tasks that fall within the paradigm of unsupervised learning are in general estimation problems; the applications include clustering, the estimation of statistical distributions, compression and filtering.

Reinforcement learning

Main article: Reinforcement learning

In applications such as playing video games, an actor takes a string of actions, receiving a generally unpredictable response from the environment after each one. The goal is to win the game, i.e., generate the most positive (lowest cost) responses. In reinforcement learning, the aim is to weight the network (devise a policy) to perform actions that minimize long-term (expected cumulative) cost. At each point in time the agent performs an action and the environment generates an observation and an instantaneous cost, according to some (usually unknown) rules. The rules and the long-term cost usually only can be estimated. At any juncture, the agent decides whether to explore new actions to uncover their costs or to exploit prior learning to proceed more quickly.

Formally, the environment is modeled as a Markov decision process (MDP) with states \textstyle {s_1,...,s_n}\in S and actions \textstyle {a_1,...,a_m} \in A. Because the state transitions are not known, probability distributions are used instead: the instantaneous cost distribution \textstyle P(c_t|s_t), the observation distribution \textstyle P(x_t|s_t) and the transition distribution \textstyle P(s_{t+1}|s_t, a_t), while a policy is defined as the conditional distribution over actions given the observations. Taken together, the two define a Markov chain (MC). The aim is to discover the lowest-cost MC.

ANNs serve as the learning component in such applications. Dynamic programming coupled with ANNs (giving neurodynamic programming) has been applied to problems such as those involved in vehicle routing, video games, natural resource management and medicine because of ANNs ability to mitigate losses of accuracy even when reducing the discretization grid density for numerically approximating the solution of control problems. Tasks that fall within the paradigm of reinforcement learning are control problems, games and other sequential decision making tasks.

Self-learning

Self-learning in neural networks was introduced in 1982 along with a neural network capable of self-learning named crossbar adaptive array (CAA). It is a system with only one input, situation s, and only one output, action (or behavior) a. It has neither external advice input nor external reinforcement input from the environment. The CAA computes, in a crossbar fashion, both decisions about actions and emotions (feelings) about encountered situations. The system is driven by the interaction between cognition and emotion. Given the memory matrix, W =||w(a,s)||, the crossbar self-learning algorithm in each iteration performs the following computation: In situation s perform action a; Receive consequence situation s'; Compute emotion of being in consequence situation v(s'); Update crossbar memory w'(a,s) = w(a,s) + v(s').

The backpropagated value (secondary reinforcement) is the emotion toward the consequence situation. The CAA exists in two environments, one is behavioral environment where it behaves, and the other is genetic environment, where from it receives initial emotions (only once) about to be encountered situations in the behavioral environment. Having received the genome vector (species vector) from the genetic environment, the CAA will learn a goal-seeking behavior, in the behavioral environment that contains both desirable and undesirable situations.

Neuroevolution

Main article: Neuroevolution

Neuroevolution can create neural network topologies and weights using evolutionary computation. It is competitive with sophisticated gradient descent approaches. One advantage of neuroevolution is that it may be less prone to get caught in "dead ends".{{cite news|date=10 January 2018|title=Artificial intelligence can 'evolve' to solve problems| work=Science AAAS|url=https://www.science.org/content/article/artificial-intelligence-can-evolve-solve-problems|access-date=7 February 2018|archive-date=9 December 2021|archive-url=https://web.archive.org/web/20211209231714/https://www.science.org/content/article/artificial-intelligence-can-evolve-solve-problems|url-status=live}}

Stochastic neural network

Stochastic neural networks originating from Sherrington–Kirkpatrick models are a type of artificial neural network built by introducing random variations into the network, either by giving the network's artificial neurons stochastic transfer functions , or by giving them stochastic weights. This makes them useful tools for optimization problems, since the random fluctuations help the network escape from local minima. Stochastic neural networks trained using a Bayesian approach are known as Bayesian neural networks.

Topological deep learning

Topological deep learning, first introduced in 2017, is an emerging approach in machine learning that integrates topology with deep neural networks to address highly intricate and high-order data. Initially rooted in algebraic topology, TDL has since evolved into a versatile framework incorporating tools from other mathematical disciplines, such as differential topology and geometric topology. As a successful example of mathematical deep learning, TDL continues to inspire advancements in mathematical artificial intelligence, fostering a mutually beneficial relationship between AI and mathematics.

Other

In a Bayesian framework, a distribution over the set of allowed models is chosen to minimize the cost. Evolutionary methods, gene expression programming, simulated annealing, expectation–maximization, non-parametric methods and particle swarm optimization are other learning algorithms. Convergent recursion is a learning algorithm for cerebellar model articulation controller (CMAC) neural networks.

Modes

Two modes of learning are available: stochastic and batch. In stochastic learning, each input creates a weight adjustment. In batch learning, weights are adjusted based on a batch of inputs, accumulating errors over the batch. Stochastic learning introduces "noise" into the process, using the local gradient calculated from one data point; this reduces the chance of the network getting stuck in local minima. However, batch learning typically yields a faster, more stable descent to a local minimum, since each update is performed in the direction of the batch's average error. A common compromise is to use "mini-batches", small batches with samples in each batch selected stochastically from the entire data set.

Types

Main article: Types of artificial neural networks

ANNs have evolved into a broad family of techniques that have advanced the state of the art across multiple domains. The simplest types have one or more static components, including number of units, number of layers, unit weights and topology. Dynamic types allow one or more of these to evolve via learning. The latter is much more complicated but can shorten learning periods and produce better results. Some types allow/require learning to be "supervised" by the operator, while others operate independently. Some types operate purely in hardware, while others are purely software and run on general purpose computers.

Some of the main breakthroughs include:

  • Convolutional neural networks that have proven particularly successful in processing visual and other two-dimensional data; where long short-term memory avoids the vanishing gradient problem and can handle signals that have a mix of low and high frequency components aiding large-vocabulary speech recognition, text-to-speech synthesis, and photo-real talking heads.Convolutional Neural Networks have also been applied to fraud detection.
  • Competitive networks such as generative adversarial networks in which multiple networks (of varying structure) compete with each other, on tasks such as winning a game or on deceiving the opponent about the authenticity of an input.

Network design

Using artificial neural networks requires an understanding of their characteristics.

  • Choice of model: This depends on the data representation and the application. Model parameters include the number, type, and connectedness of network layers, as well as the size of each and the connection type (full, pooling, etc.). Overly complex models learn slowly.
  • Learning algorithm: Numerous trade-offs exist between learning algorithms. Almost any algorithm will work well with the correct hyperparameters for training on a particular data set. However, selecting and tuning an algorithm for training on unseen data requires significant experimentation.
  • Robustness: If the model, cost function and learning algorithm are selected appropriately, the resulting ANN can become robust.

Neural architecture search (NAS) uses machine learning to automate ANN design. Various approaches to NAS have designed networks that compare well with hand-designed systems. The basic search algorithm is to propose a candidate model, evaluate it against a dataset, and use the results as feedback to teach the NAS network. Available systems include AutoML and AutoKeras. scikit-learn library provides functions to help with building a deep network from scratch. We can then implement a deep network with TensorFlow or Keras.

Hyperparameters must also be defined as part of the design (they are not learned), governing matters such as how many neurons are in each layer, learning rate, step, stride, depth, receptive field and padding (for CNNs), etc.

PYTHON3
def train(X, y, n_hidden, learning_rate, n_iter):
    """Training function.

    Args:
      X: Argument X.
      y: Argument y.
      n_hidden: The number of hidden layer units.
      learning_rate: The learning rate.
      n_iter: The number of iterations.

    Returns:
      dict: A dictionary.
    """
    m, n_input = X.shape

    # 1. random initialize weights and biases
    w1 = np.random.randn(n_input, n_hidden)
    b1 = np.zeros((1, n_hidden))
    w2 = np.random.randn(n_hidden, 1)
    b2 = np.zeros((1, 1))

    # 2. in each iteration, feed all layers with the latest weights and biases
    for i in range(n_iter + 1):
        z2 = np.dot(X, w1) + b1
        a2 = sigmoid(z2)
        z3 = np.dot(a2, w2) + b2
        a3 = z3
        dz3 = a3 - y
        dw2 = np.dot(a2.T, dz3)
        db2 = np.sum(dz3, axis=0, keepdims=True)
        dz2 = np.dot(dz3, w2.T) * sigmoid_derivative(z2)
        dw1 = np.dot(X.Y, dz2)
        db1 = np.sum(dz2, axis=0)

        # 3. update weights and biases with gradients
        w1 -= learning_rate * dw1 / m
        w2 -= learning_rate * dw2 / m
        b1 -= learning_rate * db1 / m
        b2 -= learning_rate * db2 / m

        if i % 1000 == 0:
            print("Epoch", i, "loss: ", np.mean(np.square(dz3)))

    model = {"w1": w1, "b1": b1, "w2": w2, "b2": b2}
    return model

Monitoring and concept drift detection of ANNs

When neural networks are deployed in real-world applications, the statistical properties of the input data may change over time, a phenomenon known as concept drift or non-stationarity. Drift can reduce predictive accuracy and lead to unreliable or biased decisions if it is not detected and corrected. In practice, this means that the model's accuracy in deployment may differ substantially from the levels observed during training or cross-validation.

Several strategies have been developed to monitor neural networks for drift and degradation:

  • Error-based monitoring: comparing current predictions against ground-truth labels when they become available. This approach directly quantifies predictive performance but may be impractical when labels are delayed or costly to obtain.
  • Data distribution monitoring: detecting changes in the input data distribution using statistical tests, divergence measures, or density-ratio estimation.
  • Representation monitoring: tracking the distribution of internal embeddings or hidden-layer features. Shifts in the latent representation can indicate nonstationarity even when labels are unavailable. Statistical methods such as statistical process control charts have been adapted for this purpose.{{cite journal |doi-access=free}}

Applications

Because of their ability to model and reproduce nonlinear processes, artificial neural networks have found applications in many disciplines. These include:

  • Function approximation, or regression analysis, (including time series prediction, fitness approximation, and modeling)
  • Data processing (including filtering, clustering, blind source separation, and compression)
  • Nonlinear system identification and control (including vehicle control, trajectory prediction, adaptive control, process control, and natural resource management)
  • Pattern recognition (including radar systems, face identification, signal classification, novelty detection, 3D reconstruction, object recognition, and sequential decision making)
  • Sequence recognition (including gesture, speech, and handwritten and printed text recognition)
  • Sensor data analysis (including image analysis)
  • Robotics (including directing manipulators and prostheses)
  • Data mining (including knowledge discovery in databases)
  • Finance (such as ex-ante models for specific financial long-run forecasts and artificial financial markets)
  • Quantum chemistry
  • General game playing
  • Generative AI
  • Data visualization
  • Machine translation
  • Social network filtering
  • E-mail spam filtering
  • Medical diagnosis

ANNs have been used to diagnose several types of cancers and to distinguish highly invasive cancer cell lines from less invasive lines using only cell shape information.

ANNs have been used to accelerate reliability analysis of infrastructures subject to natural disasters and to predict foundation settlements. It can also be useful to mitigate flood by the use of ANNs for modelling rainfall-runoff. ANNs have also been used for building black-box models in geoscience: hydrology, ocean modelling and coastal engineering, and geomorphology. ANNs have been employed in cybersecurity, with the objective to discriminate between legitimate activities and malicious ones. For example, machine learning has been used for classifying Android malware, for identifying domains belonging to threat actors and for detecting URLs posing a security risk. Research is underway on ANN systems designed for penetration testing, for detecting botnets, credit cards frauds and network intrusions.

ANNs have been proposed as a tool to solve partial differential equations in physics and simulate the properties of many-body open quantum systems. In brain research ANNs have studied short-term behavior of individual neurons, the dynamics of neural circuitry arise from interactions between individual neurons and how behavior can arise from abstract neural modules that represent complete subsystems. Studies considered long-and short-term plasticity of neural systems and their relation to learning and memory from the individual neuron to the system level.

It is possible to create a profile of a user's interests from pictures, using artificial neural networks trained for object recognition.

Beyond their traditional applications, artificial neural networks are increasingly being utilized in interdisciplinary research, such as materials science. For instance, graph neural networks (GNNs) have demonstrated their capability in scaling deep learning for the discovery of new stable materials by efficiently predicting the total energy of crystals. This application underscores the adaptability and potential of ANNs in tackling complex problems beyond the realms of predictive modeling and artificial intelligence, opening new pathways for scientific discovery and innovation.

Theoretical properties

Computational power

The multilayer perceptron is a universal function approximator, as proven by the universal approximation theorem. However, the proof is not constructive regarding the number of neurons required, the network topology, the weights and the learning parameters.

A specific recurrent architecture with rational-valued weights (as opposed to full precision real number-valued weights) has the power of a universal Turing machine, using a finite number of neurons and standard linear connections. Further, the use of irrational values for weights results in a machine with super-Turing power.

Capacity

A model's "capacity" property corresponds to its ability to model any given function. It is related to the amount of information that can be stored in the network and to the notion of complexity. Two notions of capacity are known by the community. The information capacity and the VC Dimension. The information capacity of a perceptron is intensively discussed in Sir David MacKay's book which summarizes work by Thomas Cover. The capacity of a network of standard neurons (not convolutional) can be derived by four rules that derive from understanding a neuron as an electrical element. The information capacity captures the functions modelable by the network given any data as input. The second notion, is the VC dimension. VC Dimension uses the principles of measure theory and finds the maximum capacity under the best possible circumstances. This is, given input data in a specific form. As noted in, the VC Dimension for arbitrary inputs is half the information capacity of a perceptron. The VC Dimension for arbitrary points is sometimes referred to as Memory Capacity.

Convergence

Models may not consistently converge on a single solution, firstly because local minima may exist, depending on the cost function and the model. Secondly, the optimization method used might not guarantee to converge when it begins far from any local minimum. Thirdly, for sufficiently large data or parameters, some methods become impractical.

Another issue worthy to mention is that training may cross some saddle point which may lead the convergence to the wrong direction.

The convergence behavior of certain types of ANN architectures are more understood than others. When the width of network approaches to infinity, the ANN is well described by its first order Taylor expansion throughout training, and so inherits the convergence behavior of affine models. Another example is when parameters are small, it is observed that ANNs often fit target functions from low to high frequencies. This behavior is referred to as the spectral bias, or frequency principle, of neural networks. This phenomenon is the opposite to the behavior of some well studied iterative numerical schemes such as Jacobi method. Deeper neural networks have been observed to be more biased towards low frequency functions.

Generalization and statistics

Applications whose goal is to create a system that generalizes well to unseen examples, face the possibility of over-training. This arises in convoluted or over-specified systems when the network capacity significantly exceeds the needed free parameters.

Two approaches address over-training. The first is to use cross-validation and similar techniques to check for the presence of over-training and to select hyperparameters to minimize the generalization error. The second is to use some form of regularization. This concept emerges in a probabilistic (Bayesian) framework, where regularization can be performed by selecting a larger prior probability over simpler models; but also in statistical learning theory, where the goal is to minimize over two quantities: the 'empirical risk' and the 'structural risk', which roughly corresponds to the error over the training set and the predicted error in unseen data due to overfitting.

Confidence analysis of a neural network

Supervised neural networks that use a mean squared error (MSE) cost function can use formal statistical methods to determine the confidence of the trained model. The MSE on a validation set can be used as an estimate for variance. This value can then be used to calculate the confidence interval of network output, assuming a normal distribution. A confidence analysis made this way is statistically valid as long as the output probability distribution stays the same and the network is not modified.

By assigning a softmax activation function, a generalization of the logistic function, on the output layer of the neural network (or a softmax component in a component-based network) for categorical target variables, the outputs can be interpreted as posterior probabilities. This is useful in classification as it gives a certainty measure on classifications.

The softmax activation function is:

:y_i=\frac{e^{x_i}}{\sum_{j=1}^c e^{x_j}}

Criticism

Training

A common criticism of neural networks, particularly in robotics, is that they require too many training samples for real-world operation. Any learning machine needs sufficient representative examples in order to capture the underlying structure that allows it to generalize to new cases. Potential solutions include randomly shuffling training examples, by using a numerical optimization algorithm that does not take too large steps when changing the network connections following an example, grouping examples in so-called mini-batches and/or introducing a recursive least squares algorithm for CMAC. Dean Pomerleau uses a neural network to train a robotic vehicle to drive on multiple types of roads (single lane, multi-lane, dirt, etc.), and a large amount of his research is devoted to extrapolating multiple training scenarios from a single training experience, and preserving past training diversity so that the system does not become overtrained (if, for example, it is presented with a series of right turns—it should not learn to always turn right).

Theory

A central claim of ANNs is that they embody new and powerful general principles for processing information. These principles are ill-defined. This allows simple statistical association (the basic function of artificial neural networks) to be described as learning or recognition. In 1997, Alexander Dewdney, a former Scientific American columnist, commented that as a result, artificial neural networks have a

Technology writer Roger Bridgman commented:

In spite of his emphatic declaration that science is not technology, Dewdney seems here to pillory neural nets as bad science when most of those devising them are just trying to be good engineers. An unreadable table that a useful machine could read would still be well worth having.

Although it is true that analyzing what has been learned by an artificial neural network is difficult, it is much easier to do so than to analyze what has been learned by a biological neural network. Moreover, recent emphasis on the explainability of AI has contributed towards the development of methods, notably those based on attention mechanisms, for visualizing and explaining learned neural networks. Furthermore, researchers involved in exploring learning algorithms for neural networks are gradually uncovering generic principles that allow a learning machine to be successful. For example, Bengio and LeCun (2007) wrote an article regarding local vs non-local learning, as well as shallow vs deep architecture.

Biological brains use both shallow and deep circuits as reported by brain anatomy, displaying a wide variety of invariance. Weng argued that the brain self-wires largely according to signal statistics and therefore, a serial cascade cannot catch all major statistical dependencies.

Hardware

Large and effective neural networks require considerable computing resources. While the brain has hardware tailored to the task of processing signals through a graph of neurons, simulating even a simplified neuron on von Neumann architecture may consume vast amounts of memory and storage. Furthermore, the designer often needs to transmit signals through many of these connections and their associated neurons which require enormous CPU power and time.

Some argue that the resurgence of neural networks in the twenty-first century is largely attributable to advances in hardware: from 1991 to 2015, computing power, especially as delivered by GPGPUs (on GPUs), has increased around a million-fold, making the standard backpropagation algorithm feasible for training networks that are several layers deeper than before. The use of accelerators such as FPGAs and GPUs can reduce training times from months to days.

Neuromorphic engineering or a physical neural network addresses the hardware difficulty directly, by constructing non-von-Neumann chips to directly implement neural networks in circuitry. Another type of chip optimized for neural network processing is called a Tensor Processing Unit, or TPU.

Practical counterexamples

Analyzing what has been learned by an ANN is much easier than analyzing what has been learned by a biological neural network. Furthermore, researchers involved in exploring learning algorithms for neural networks are gradually uncovering general principles that allow a learning machine to be successful. For example, local vs. non-local learning and shallow vs. deep architecture.

Hybrid approaches

Advocates of hybrid models (combining neural networks and symbolic approaches) say that such a mixture can better capture the mechanisms of the human mind.

Dataset bias

Neural networks are dependent on the quality of the data they are trained on, thus low quality data with imbalanced representativeness can lead to the model learning and perpetuating societal biases. These inherited biases become especially critical when the ANNs are integrated into real-world scenarios where the training data may be imbalanced due to the scarcity of data for a specific race, gender or other attribute. This imbalance can result in the model having inadequate representation and understanding of underrepresented groups, leading to discriminatory outcomes that exacerbate societal inequalities, especially in applications like facial recognition, hiring processes, and law enforcement. For example, in 2018, Amazon had to scrap a recruiting tool because the model favored men over women for jobs in software engineering due to the higher number of male workers in the field. The program would penalize any resume with the word "woman" or the name of any women's college. However, the use of synthetic data can help reduce dataset bias and increase representation in datasets.

Recent advancements and future directions

Artificial neural networks (ANNs) have undergone significant advancements, particularly in their ability to model complex systems, handle large data sets, and adapt to various types of applications. Their evolution over the past few decades has been marked by a broad range of applications in fields such as image processing, speech recognition, natural language processing, finance, and medicine.

Image processing

In the realm of image processing, ANNs are employed in tasks such as image classification, object recognition, and image segmentation. For instance, deep convolutional neural networks (CNNs) have been important in handwritten digit recognition, achieving state-of-the-art performance. This demonstrates the ability of ANNs to effectively process and interpret complex visual information, leading to advancements in fields ranging from automated surveillance to medical imaging.

Speech recognition

By modeling speech signals, ANNs are used for tasks like speaker identification and speech-to-text conversion. Deep neural network architectures have introduced significant improvements in large vocabulary continuous speech recognition, outperforming traditional techniques. These advancements have enabled the development of more accurate and efficient voice-activated systems, enhancing user interfaces in technology products.

Natural language processing

In natural language processing, ANNs are used for tasks such as text classification, sentiment analysis, and machine translation. They have enabled the development of models that can accurately translate between languages, understand the context and sentiment in textual data, and categorize text based on content. This has implications for automated customer service, content moderation, and language understanding technologies.

Control systems

In the domain of control systems, ANNs are used to model dynamic systems for tasks such as system identification, control design, and optimization. For instance, deep feedforward neural networks are important in system identification and control applications.

Finance

ANNs are used for stock market prediction and credit scoring:

  • In investing, ANNs can process vast amounts of financial data, recognize complex patterns, and forecast stock market trends, aiding investors and risk managers in making informed decisions.
  • In credit scoring, ANNs offer data-driven, personalized assessments of creditworthiness, improving the accuracy of default predictions and automating the lending process. ANNs require high-quality data and careful tuning, and their "black-box" nature can pose challenges in interpretation. Nevertheless, ongoing advancements suggest that ANNs continue to play a role in finance, offering valuable insights and enhancing risk management strategies.

Medicine

ANNs are able to process and analyze vast medical datasets. They enhance diagnostic accuracy, especially by interpreting complex medical imaging for early disease detection, and by predicting patient outcomes for personalized treatment planning. In drug discovery, ANNs speed up the identification of potential drug candidates and predict their efficacy and safety, significantly reducing development time and costs. Additionally, their application in personalized medicine and healthcare data analysis allows tailored therapies and efficient patient care management. Ongoing research is aimed at addressing remaining challenges such as data privacy and model interpretability, as well as expanding the scope of ANN applications in medicine.

Content creation

ANNs such as generative adversarial networks (GAN) and transformers are used for content creation across numerous industries. This is because deep learning models are able to learn the style of an artist or musician from huge datasets and generate completely new artworks and music compositions. For instance, DALL-E is a deep neural network trained on 650 million pairs of images and texts across the internet that can create artworks based on text entered by the user. In the field of music, transformers are used to create original music for commercials and documentaries through companies such as AIVA and Jukedeck. In the marketing industry, generative models are used to create personalized advertisements for consumers. Additionally, major film companies are partnering with technology companies to analyze the financial success of a film, such as the partnership between Warner Bros and technology company Cinelytic established in 2020. Furthermore, neural networks have found uses in video game creation, where non-player characters (NPCs) can make decisions based on all the characters currently in the game.

References

Bibliography

  • PDF

    • created for National Science Foundation, Contract Number EET-8716324, and Defense Advanced Research Projects Agency (DOD), ARPA Order No. 4976 under Contract F33615-87-C-1499.

References

  1. Hardesty, Larry. (14 April 2017). "Explained: Neural networks". MIT News Office.
  2. (2014). "Comprehensive Biomedical Physics". Elsevier.
  3. Bishop, Christopher M.. (17 August 2006). "Pattern Recognition and Machine Learning". Springer.
  4. (1998). "The nature of statistical learning theory". Springer.
  5. Ian Goodfellow and Yoshua Bengio and Aaron Courville. (2016). "Deep Learning". MIT Press.
  6. Ferrie, C.. (2019). "Neural Networks for Babies". Sourcebooks.
  7. Mansfield Merriman, "A List of Writings Relating to the Method of Least Squares"
  8. Stigler, Stephen M.. (1981). "Gauss and the Invention of Least Squares". Ann. Stat..
  9. Bretscher, Otto. (1995). "Linear Algebra With Applications". Prentice Hall.
  10. Kleene, S.C.. (1956). "Representation of Events in Nerve Nets and Finite Automata". Princeton University Press.
  11. Hebb, Donald. (2005). ["The Organization of Behavior"]({{google books). Taylor & Francis.
  12. Farley, B.G.. (1954). "Simulation of Self-Organizing Systems by Digital Computer". IRE Transactions on Information Theory.
  13. Rochester, N.. (1956). "Tests on a cell assembly theory of the action of the brain, using a large digital computer". IRE Transactions on Information Theory.
  14. Haykin (2008) Neural Networks and Learning Machines, 3rd edition
  15. Rosenblatt, F.. (1958). "The Perceptron: A Probabilistic Model For Information Storage And Organization in the Brain". Psychological Review.
  16. Werbos, P.J.. (1975). ["Beyond Regression: New Tools for Prediction and Analysis in the Behavioral Sciences"]({{google books).
  17. Rosenblatt, Frank. (1957). "The Perceptron—a perceiving and recognizing automaton". Cornell Aeronautical Laboratory.
  18. Olazaran, Mikel. (1996). "A Sociological Study of the Official History of the Perceptrons Controversy". Social Studies of Science.
  19. Joseph, R. D.. (1960). "Contributions to Perceptron Theory, Cornell Aeronautical Laboratory Report No. VG-11 96--G-7, Buffalo".
  20. Russel, Stuart. (2010). "Artificial Intelligence A Modern Approach". Pearson Education.
  21. Rosenblatt, Frank. (1962). "Principles of Neurodynamics". Spartan, New York.
  22. (1967). ["Cybernetics and Forecasting Techniques"]({{google books). American Elsevier Publishing Co..
  23. Ivakhnenko, A.G.. (March 1970). "Heuristic self-organization in problems of engineering cybernetics". Automatica.
  24. Ivakhnenko, Alexey. (1971). "Polynomial theory of complex systems". IEEE Transactions on Systems, Man, and Cybernetics.
  25. Schmidhuber, Jürgen. (2022). "Annotated History of Modern AI and Deep Learning".
  26. (1951). "A Stochastic Approximation Method". The Annals of Mathematical Statistics.
  27. (1967). "A theory of adaptive pattern classifier". IEEE Transactions.
  28. (1969). "Visual feature extraction by a multilayered network of analog threshold elements". IEEE Transactions on Systems Science and Cybernetics.
  29. (2017). "Neural network with unbounded activation functions is universal approximator". Applied and Computational Harmonic Analysis.
  30. (16 October 2017). "Searching for Activation Functions".
  31. (1969). ["Perceptrons: An Introduction to Computational Geometry"]({{google books). MIT Press.
  32. Bozinovski S. and Fulgosi A. (1976). "The influence of pattern similarity and transfer learning on the base perceptron training" (original in Croatian) Proceedings of Symposium Informatica 3-121-5, Bled.
  33. Bozinovski S.(2020) "Reminder of the first paper on transfer learning in neural networks, 1976". Informatica 44: 291–302.
  34. (1979). "Neural network model for a mechanism of pattern recognition unaffected by shift in position—Neocognitron". Trans. IECE (In Japanese).
  35. (1980). "Neocognitron: A self-organizing neural network model for a mechanism of pattern recognition unaffected by shift in position". Biol. Cybern..
  36. 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.
  37. (1960). "Gradient theory of optimal flight paths". ARS Journal.
  38. 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.
  39. (1976). "Taylor expansion of the accumulated rounding error". BIT Numerical Mathematics.
  40. 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.
  41. Werbos, Paul. (1982). "System modeling and optimization". Springer.
  42. (2000). "Talking Nets: An Oral History of Neural Networks". The MIT Press.
  43. Werbos, Paul J.. (1994). "The Roots of Backpropagation: From Ordered Derivatives to Neural Networks and Political Forecasting". John Wiley & Sons.
  44. Schmidhuber, Juergen. (25 October 2014). "Who Invented Backpropagation?". IDSIA, Switzerland.
  45. (October 1986). "Learning representations by back-propagating errors". Nature.
  46. (1 January 1982). "Neocognitron: A new algorithm for pattern recognition tolerant of deformations and shifts in position". Pattern Recognition.
  47. (December 1987). "Phoneme Recognition Using Time-Delay Neural Networks".
  48. [[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] {{Webarchive. link. (11 December 2024 '' IEEE Transactions on Acoustics, Speech, and Signal Processing, Volume 37, No. 3, pp. 328. – 339 March 1989.)
  49. Zhang, Wei. (1988). "Shift-invariant pattern recognition neural network and its optical architecture". Proceedings of Annual Conference of the Japan Society of Applied Physics.
  50. LeCun ''et al.'', "Backpropagation Applied to Handwritten Zip Code Recognition", ''Neural Computation'', 1, pp. 541–551, 1989.
  51. Zhang, Wei. (1990). "Parallel distributed processing model with local space-invariant interconnections and its optical architecture". Applied Optics.
  52. Zhang, Wei. (1991). "Image processing of human corneal endothelium based on a learning network". Applied Optics.
  53. Zhang, Wei. (1994). "Computerized detection of clustered microcalcifications in digital mammograms using a shift-invariant artificial neural network". Medical Physics.
  54. LeCun, Yann. (1998). "Gradient-based learning applied to document recognition". Proceedings of the IEEE.
  55. Qian, Ning, and Terrence J. Sejnowski. "Predicting the secondary structure of globular proteins using neural network models." ''Journal of molecular biology'' 202, no. 4 (1988): 865–884.
  56. Bohr, Henrik, Jakob Bohr, Søren Brunak, Rodney MJ Cotterill, Benny Lautrup, Leif Nørskov, Ole H. Olsen, and Steffen B. Petersen. "Protein secondary structure and homology by neural networks The α-helices in rhodopsin." ''FEBS letters'' 241, (1988): 223–228
  57. Rost, Burkhard, and Chris Sander. "Prediction of protein secondary structure at better than 70% accuracy." ''Journal of molecular biology'' 232, no. 2 (1993): 584–599.
  58. Amari, S.-I.. (November 1972). "Learning Patterns and Pattern Sequences by Self-Organizing Nets of Threshold Elements". IEEE Transactions on Computers.
  59. (1982). "Neural networks and physical systems with emergent collective computational abilities". Proceedings of the National Academy of Sciences.
  60. (5 July 2023). "The Importance of Cajal's and Lorente de Nó's Neuroscience to the Birth of Cybernetics". The Neuroscientist.
  61. "reverberating circuit".
  62. (December 1943). "A logical calculus of the ideas immanent in nervous activity". The Bulletin of Mathematical Biophysics.
  63. Bozinovski, S. (1982). "A self-learning system using secondary reinforcement". In Trappl, Robert (ed.). Cybernetics and Systems Research: Proceedings of the Sixth European Meeting on Cybernetics and Systems Research. North-Holland. pp. 397–402. ISBN 978-0-444-86488-8
  64. Zajonc, R.. (1980). "Feeling and thinking: Preferences need no inferences". American Psychologist.
  65. Lazarus R. (1982) "Thoughts on the relations between emotion and cognition" American Psychologist 37 (9): 1019-1024
  66. Bozinovski, S. (2014) "Modeling mechanisms of cognition-emotion interaction in artificial neural networks, since 1981" Procedia Computer Science p. 255-263 (https://core.ac.uk/download/pdf/81973924.pdf {{Webarchive. link. (23 March 2019 ))
  67. (April 1991). "Neural Sequence Chunkers". TR FKI-148, TU Munich.
  68. (1992). "Learning complex, extended sequences using the principle of history compression (based on TR FKI-148, 1991)". Neural Computation.
  69. Schmidhuber, Jürgen. (1993). "Habilitation thesis: System modeling and optimization".
  70. S. Hochreiter., "[http://people.idsia.ch/~juergen/SeppHochreiter1991ThesisAdvisorSchmidhuber.pdf Untersuchungen zu dynamischen neuronalen Netzen]", {{Webarchive. link. (6 March 2015, ''Diploma thesis. Institut f. Informatik, Technische Univ. Munich. Advisor: J. Schmidhuber'', 1991.)
  71. Hochreiter, S.. (15 January 2001). "A Field Guide to Dynamical Recurrent Networks". John Wiley & Sons.
  72. {{Cite Q. Q98967430
  73. (1 November 1997). "Long Short-Term Memory". Neural Computation.
  74. (1999). "9th International Conference on Artificial Neural Networks: ICANN '99".
  75. (1 January 1985). "A learning algorithm for boltzmann machines". Cognitive Science.
  76. Smolensky, Paul. (1986). "Parallel Distributed Processing: Explorations in the Microstructure of Cognition, Volume 1: Foundations". MIT Press.
  77. (26 May 1995). "The wake-sleep algorithm for unsupervised neural networks". Science.
  78. [http://www.kurzweilai.net/how-bio-inspired-deep-learning-keeps-winning-competitions 2012 Kurzweil AI Interview] {{Webarchive. link. (31 August 2018 with Juergen Schmidhuber on the eight competitions won by his Deep Learning team 2009–2012)
  79. "How bio-inspired deep learning keeps winning competitions {{!}} KurzweilAI".
  80. (21 September 2010). "Deep, Big, Simple Neural Nets for Handwritten Digit Recognition". Neural Computation.
  81. (2011). "Flexible, High Performance Convolutional Neural Networks for Image Classification". International Joint Conference on Artificial Intelligence.
  82. Schmidhuber, J.. (2015). "Deep Learning in Neural Networks: An Overview". Neural Networks.
  83. (2012). "Advances in Neural Information Processing Systems 25". Curran Associates, Inc..
  84. (2013). "Medical Image Computing and Computer-Assisted Intervention – MICCAI 2013".
  85. (2012). "2012 IEEE Conference on Computer Vision and Pattern Recognition".
  86. (2012). "ImageNet Classification with Deep Convolutional Neural Networks". NIPS 2012: Neural Information Processing Systems, Lake Tahoe, Nevada.
  87. (2014). "Very Deep Convolution Networks for Large Scale Image Recognition".
  88. Szegedy, Christian. (2015). "Going deeper with convolutions". Cvpr2015.
  89. (2012). "Building High-level Features Using Large Scale Unsupervised Learning".
  90. (2014). "Generative Adversarial Networks".
  91. (1991). "A possibility for implementing curiosity and boredom in model-building neural controllers". MIT Press/Bradford Books.
  92. Schmidhuber, Jürgen. (2020). "Generative Adversarial Networks are Special Cases of Artificial Curiosity (1990) and also Closely Related to Predictability Minimization (1991)". Neural Networks.
  93. (14 December 2018). "GAN 2.0: NVIDIA's Hyperrealistic Face Generator".
  94. (26 February 2018). "Progressive Growing of GANs for Improved Quality, Stability, and Variation".
  95. "Prepare, Don't Panic: Synthetic Media and Deepfakes". witness.org.
  96. (1 June 2015). "Deep Unsupervised Learning using Nonequilibrium Thermodynamics". PMLR.
  97. (10 April 2015). "Very Deep Convolutional Networks for Large-Scale Image Recognition".
  98. (2016). "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification".
  99. (10 December 2015). "Deep Residual Learning for Image Recognition".
  100. (2 May 2015). "Highway Networks".
  101. (2016). "2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)". IEEE.
  102. Linn, Allison. (10 December 2015). "Microsoft researchers win ImageNet computer vision challenge".
  103. (12 June 2017). "Attention Is All You Need".
  104. (1992). "Learning to control fast-weight memories: an alternative to recurrent nets.". Neural Computation.
  105. (2020). "Transformers are RNNs: Fast autoregressive Transformers with linear attention". PMLR.
  106. (2021). "Linear Transformers Are Secretly Fast Weight Programmers". Springer.
  107. (2020). "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations".
  108. Zell, Andreas. (2003). "Simulation neuronaler Netze". Addison-Wesley.
  109. (1992). "Artificial intelligence". Addison-Wesley Pub. Co.
  110. (2007). "Application of Artificial Intelligence to the Management of Urological Cancer". The Journal of Urology.
  111. (1998). "An artificial neural network approach to rainfall-runoff modelling". Hydrological Sciences Journal.
  112. "The Machine Learning Dictionary".
  113. Ciresan, Dan. (2011). "Flexible, High Performance Convolutional Neural Networks for Image Classification". Proceedings of the Twenty-Second International Joint Conference on Artificial Intelligence-Volume Volume Two.
  114. Zell, Andreas. (1994). "Simulation Neuronaler Netze". Addison-Wesley.
  115. Miljanovic, Milos. (February–March 2012). "Comparative analysis of Recurrent and Finite Impulse Response Neural Networks in Time Series Prediction". Indian Journal of Computer and Engineering.
  116. (23 July 2024). "What Is Hyperparameter Tuning? IBM".
  117. (2016). "Deep learning". The MIT press.
  118. (March 2023). "Hyperparameter optimization: Foundations, algorithms, best practices, and open challenges". WIREs Data Mining and Knowledge Discovery.
  119. (2020). "Fundamentals of machine learning for predictive data analytics: algorithms, worked examples, and case studies". The MIT Press.
  120. Wei, Jiakai. (26 April 2019). "Forget the Learning Rate, Decay Loss".
  121. (1 June 2009). "2009 International Conference on Computational Intelligence and Natural Computing".
  122. (2006). "Extreme learning machine: theory and applications". Neurocomputing.
  123. (2013). "The no-prop algorithm: A new learning algorithm for multilayer neural networks". Neural Networks.
  124. (2015). "Training recurrent networks without backtracking".
  125. Hinton, G. E.. (2010). "A Practical Guide to Training Restricted Boltzmann Machines". Tech. Rep. UTML TR 2010-003.
  126. ESANN. 2009.{{full citation needed. (June 2022)
  127. (2021). "Introduction to machine learning". Wolfram Media.
  128. (2021). "Introduction to machine learning". Wolfram Media.
  129. (2021). "Introduction to Machine Learning". Wolfram Media Inc.
  130. (1 April 2017). "Metaheuristic design of feedforward neural networks: A review of two decades of research". Engineering Applications of Artificial Intelligence.
  131. Dominic, S.. (July 1991). "Genetic reinforcement learning for neural networks". IEEE.
  132. Hoskins, J.C.. (1992). "Process control via artificial neural networks and reinforcement learning". Computers & Chemical Engineering.
  133. (1996). "Neuro-dynamic programming". Athena Scientific.
  134. Secomandi, Nicola. (2000). "Comparing neuro-dynamic programming algorithms for the vehicle routing problem with stochastic demands". Computers & Operations Research.
  135. de Rigo, D.. (2001). "Neuro-dynamic programming for the efficient management of reservoir networks". Modelling and Simulation Society of Australia and New Zealand.
  136. Damas, M.. (2000). "Genetic algorithms and neuro-dynamic programming: application to water supply networks". IEEE.
  137. Deng, Geng. (2008). "Optimization in Medicine".
  138. Bozinovski, S. (1982). "A self-learning system using secondary reinforcement". In R. Trappl (ed.) Cybernetics and Systems Research: Proceedings of the Sixth European Meeting on Cybernetics and Systems Research. North Holland. pp. 397–402. {{ISBN. 978-0-444-86488-8.
  139. Bozinovski, S. (2014) "[https://core.ac.uk/download/pdf/81973924.pdf Modeling mechanisms of cognition-emotion interaction in artificial neural networks, since 1981] {{Webarchive. link. (23 March 2019 ." Procedia Computer Science p. 255-263)
  140. (2001). "Self-learning agents: A connectionist theory of emotion based on crossbar value judgment". Cybernetics and Systems.
  141. (7 September 2017). "Evolution Strategies as a Scalable Alternative to Reinforcement Learning".
  142. (20 April 2018). "Deep Neuroevolution: Genetic Algorithms Are a Competitive Alternative for Training Deep Neural Networks for Reinforcement Learning".
  143. Turchetti, Claudio. (2004). "Stochastic Models of Neural Networks". IOS Press.
  144. (2022). "Hands-On Bayesian Neural Networks—A Tutorial for Deep Learning Users".
  145. (27 July 2017). "TopologyNet: Topology based deep convolutional and multi-task neural networks for biomolecular property predictions". PLOS Computational Biology.
  146. (January 2005). "A selective improvement technique for fastening Neuro-Dynamic Programming in Water Resources Network Management". IFAC.
  147. Ferreira, C.. (2006). "Applied Soft Computing Technologies: The Challenge of Complexity". Springer-Verlag.
  148. Da, Y.. (July 2005). "An improved PSO-based ANN with simulated annealing technique". Elsevier.
  149. Wu, J.. (May 2009). "A Novel Nonparametric Regression Ensemble for Rainfall Forecasting Using Particle Swarm Optimization Technique Coupled with Artificial Neural Network". Springer.
  150. (2004). "A learning algorithm of CMAC based on RLS". Neural Processing Letters.
  151. (2005). "Continuous CMAC-QRLS and its systolic array". Neural Processing Letters.
  152. (1989). "Backpropagation Applied to Handwritten Zip Code Recognition". Neural Computation.
  153. [[Yann LeCun]] (2016). Slides on Deep Learning [https://indico.cern.ch/event/510372/ Online] {{Webarchive. link. (23 April 2016)
  154. (1 November 1997). "Long Short-Term Memory". Neural Computation.
  155. (2014). "Long Short-Term Memory recurrent neural network architectures for large scale acoustic modeling".
  156. (15 October 2014). "Constructing Long Short-Term Memory based Deep Recurrent Neural Networks for Large Vocabulary Speech Recognition".
  157. (2014). "TTS synthesis with bidirectional LSTM based Recurrent Neural Networks". Proceedings of the Annual Conference of the International Speech Communication Association, Interspeech.
  158. (2015). "Deep Learning". Scholarpedia.
  159. (2015). "Unidirectional Long Short-Term Memory Recurrent Neural Network with Recurrent Output Layer for Low-Latency Speech Synthesis". ICASSP.
  160. (2015). "Photo-Real Talking Head with Deep Bidirectional LSTM". Proceedings of ICASSP.
  161. (2024-11-29). "2024 IEEE International Conference on Data Mining Workshops (ICDMW)".
  162. (2025-02-22). "Explainable AI for Fraud Detection: An Attention-Based Ensemble of CNNs, GNNs, and A Confidence-Driven Gating Mechanism".
  163. (5 December 2017). "Mastering Chess and Shogi by Self-Play with a General Reinforcement Learning Algorithm".
  164. (26 February 2018). "Tunability: Importance of Hyperparameters of Machine Learning Algorithms". J. Mach. Learn. Res..
  165. (4 November 2016). "Neural Architecture Search with Reinforcement Learning".
  166. (2019). "Auto-keras: An efficient neural architecture search system". ACM.
  167. (2015). "Hyperparameter Search in Machine Learning".
  168. (1990). "Handbook of Applied Mathematics". Springer US.
  169. (2019). "A Concise Guide to Market Research". Springer Berlin Heidelberg.
  170. (December 2016). "2016 IEEE Symposium Series on Computational Intelligence (SSCI)".
  171. (2019). "Dynamic Data Assimilation – Beating the Uncertainties".
  172. (2013). "2013 International Conference Oriental COCOSDA held jointly with 2013 Conference on Asian Spoken Language Research and Evaluation (O-COCOSDA/CASLRE)". IEEE.
  173. Billings, S. A.. (2013). "Nonlinear System Identification: NARMAX Methods in the Time, Frequency, and Spatio-Temporal Domains". Wiley.
  174. (October 2015). "A cloud based architecture capable of perceiving and predicting multiple vessel behaviour". Applied Soft Computing.
  175. Sengupta, Nandini. (August 2016). "Lung sound classification using cepstral-based statistical features". Computers in Biology and Medicine.
  176. Choy, Christopher B., et al. "[https://arxiv.org/abs/1604.00449 3d-r2n2: A unified approach for single and multi-view 3d object reconstruction] {{Webarchive. link. (26 July 2020 ." European conference on computer vision. Springer, Cham, 2016.)
  177. Turek, Fred D.. (March 2007). "Introduction to Neural Net Machine Vision". Vision Systems Design.
  178. (August 2015). "2015 13th International Conference on Document Analysis and Recognition (ICDAR)".
  179. Gessler, Josef. (August 2021). "Sensor for food analysis applying impedance spectroscopy and artificial neural networks". RiuNet UPV.
  180. (2016). "The time traveller's CAPM". Investment Analysts Journal.
  181. (2009). "Neural network approach to quantum-chemistry data: Accurate prediction of density functional theory energies". [[J. Chem. Phys.]].
  182. (2016). "Mastering the game of Go with deep neural networks and tree search". Nature.
  183. Pasick, Adam. (27 March 2023). "Artificial Intelligence Glossary: Neural Networks and Other Terms Explained". The New York Times.
  184. Schechner, Sam. (15 June 2017). "Facebook Boosts A.I. to Block Terrorist Propaganda". [[The Wall Street Journal]].
  185. (2024). "Introduction to Artificial Intelligence: from data analysis to generative AI". Intellisemantic Editions.
  186. Ganesan, N. (2010). "Application of Neural Networks in Diagnosing Cancer Disease Using Demographic Data". International Journal of Computer Applications.
  187. Bottaci, Leonardo. (1997). "Artificial Neural Networks Applied to Outcome Prediction for Colorectal Cancer Patients in Separate Institutions". The Lancet.
  188. (2016). "Measuring systematic changes in invasive cancer cell shape using Zernike moments". Integrative Biology.
  189. (2016). "Changes in cell shape are correlated with metastatic potential in murine". Biology Open.
  190. (28 August 2017). "Deep Learning for Accelerated Reliability Analysis of Infrastructure Networks". Computer-Aided Civil and Infrastructure Engineering.
  191. (2018). "Accelerating Stochastic Assessment of Post-Earthquake Transportation Network Connectivity via Machine-Learning-Based Surrogates". Transportation Research Board 97th Annual Meeting.
  192. (September 2018). "Use of artificial neural networks to predict 3-D elastic settlement of foundations on soils with inclined bedrock". Soils and Foundations.
  193. "Artificial Neural Network for Modelling Rainfall-Runoff". Pertanika Journal of Science & Technology.
  194. Govindaraju, Rao S.. (1 April 2000). "Artificial Neural Networks in Hydrology. I: Preliminary Concepts". Journal of Hydrologic Engineering.
  195. Govindaraju, Rao S.. (1 April 2000). "Artificial Neural Networks in Hydrology. II: Hydrologic Applications". Journal of Hydrologic Engineering.
  196. (1 October 2015). "Significant wave height record extension by neural networks and reanalysis wind data". Ocean Modelling.
  197. (2013). "Review on Applications of Neural Network in Coastal Engineering". Artificial Intelligent Systems and Machine Learning.
  198. (1 March 2005). "Artificial Neural Networks applied to landslide susceptibility assessment". Geomorphology.
  199. (May 2017). "2017 International Joint Conference on Neural Networks (IJCNN)".
  200. "Detecting Malicious URLs".
  201. (2018). "BoTShark: A Deep Learning Approach for Botnet Traffic Detection". Springer International Publishing.
  202. (January 1994). "Proceedings of the Twenty-Seventh Hawaii International Conference on System Sciences HICSS-94".
  203. Ananthaswamy, Anil. (19 April 2021). "Latest Neural Nets Solve World's Hardest Equations Faster Than Ever Before".
  204. "AI has cracked a key mathematical puzzle for understanding our world".
  205. "Caltech Open-Sources AI for Solving Partial Differential Equations".
  206. (28 June 2019). "Variational Quantum Monte Carlo Method with a Neural-Network Ansatz for Open Quantum Systems". [[Physical Review Letters]].
  207. (28 June 2019). "Constructing neural stationary states for open quantum many-body systems". Physical Review B.
  208. (28 June 2019). "Neural-Network Approach to Dissipative Quantum Many-Body Dynamics". Physical Review Letters.
  209. (28 June 2019). "Variational Neural-Network Ansatz for Steady States in Open Quantum Systems". Physical Review Letters.
  210. Forrest MD. (April 2015). "Simulation of alcohol action upon a detailed Purkinje neuron model and a simpler surrogate model that runs >400 times faster". BMC Neuroscience.
  211. (2018). "Semantic Image-Based Profiling of Users' Interests with Neural Networks". Studies on the Semantic Web.
  212. (December 2023). "Scaling deep learning for materials discovery". Nature.
  213. (1991). "Turing computability with neural nets". Appl. Math. Lett..
  214. Bains, Sunny. (3 November 1998). "Analog computer trumps Turing model". EE Times.
  215. (July 1997). "Computational Power of Neural Networks: A Kolmogorov Complexity Characterization". IEEE Transactions on Information Theory.
  216. MacKay, David J.C.. (2003). "Information Theory, Inference, and Learning Algorithms". [[Cambridge University Press]].
  217. Cover, Thomas. (1965). "Geometrical and Statistical Properties of Systems of Linear Inequalities with Applications in Pattern Recognition". [[IEEE]].
  218. Gerald, Friedland. (2019). "Proceedings of the 27th ACM International Conference on Multimedia". [[Association for Computing Machinery.
  219. "Stop tinkering, start measuring! Predictable experimental design of Neural Network experiments".
  220. (2020). "Wide neural networks of any depth evolve as linear models under gradient descent". Journal of Statistical Mechanics: Theory and Experiment.
  221. (2018). "Neural Tangent Kernel: Convergence and Generalization in Neural Networks".
  222. (2019). "Neural Information Processing". Springer, Cham.
  223. (2019). "On the Spectral Bias of Neural Networks". Proceedings of the 36th International Conference on Machine Learning.
  224. (2020). "Frequency Principle: Fourier Analysis Sheds Light on Deep Neural Networks". Communications in Computational Physics.
  225. (2019). "Theory of the Frequency Principle for General Deep Neural Networks".
  226. (18 May 2021). "Deep Frequency Principle Towards Understanding Why Deeper Learning is Faster". Proceedings of the AAAI Conference on Artificial Intelligence.
  227. (1 May 2019). "Continual lifelong learning with neural networks: A review". Neural Networks.
  228. Dean Pomerleau, "Knowledge-based Training of Artificial Neural Networks for Autonomous Robot Driving"
  229. Dewdney, A. K.. (1 April 1997). ["Yes, we have no neutrons: an eye-opening tour through the twists and turns of bad science"]({{google books). Wiley.
  230. [http://www.nasa.gov/centers/dryden/news/NewsReleases/2003/03-49.html NASA – Dryden Flight Research Center – News Room: News Releases: NASA NEURAL NETWORK PROJECT PASSES MILESTONE] {{Webarchive. link. (2 April 2010 . Nasa.gov. Retrieved on 20 November 2013.)
  231. "Roger Bridgman's defence of neural networks".
  232. "Scaling Learning Algorithms towards {AI} – LISA – Publications – Aigaion 2.0".
  233. D. J. Felleman and D. C. Van Essen, "[https://archive.today/20150120022056/http://cercor.oxfordjournals.org/content/1/1/1.1.full.pdf+html Distributed hierarchical processing in the primate cerebral cortex]," ''Cerebral Cortex'', 1, pp. 1–47, 1991.
  234. J. Weng, "[https://www.amazon.com/Natural-Artificial-Intelligence-Introduction-Computational/dp/0985875720 Natural and Artificial Intelligence: Introduction to Computational Brain-Mind] {{Webarchive. link. (19 May 2024 ," BMI Press, {{ISBN). 978-0-9858757-2-5, 2012.
  235. (25 June 2015). "Growing pains for deep learning". Communications of the ACM.
  236. Sutton, Rich. (March 13, 2019). "The Bitter Lesson".
  237. Cade Metz. (18 May 2016). "Google Built Its Very Own Chips to Power Its AI Bots". Wired.
  238. "Scaling Learning Algorithms towards AI".
  239. (2012). "A hybrid neural networks-fuzzy logic-genetic algorithm for grade estimation". Computers & Geosciences.
  240. Sun and Bookman, 1990
  241. (October 2021). "Addressing bias in big data and AI for health care: A call for open science". Patterns.
  242. Carina, Wang. (27 October 2022). "Failing at Face Value: The Effect of Biased Facial Recognition Technology on Racial Discrimination in Criminal Justice". Scientific and Social Research.
  243. Chang, Xinyu. (13 September 2023). "Gender Bias in Hiring: An Analysis of the Impact of Amazon's Recruiting Algorithm". Advances in Economics, Management and Political Sciences.
  244. (June 2019). "2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW)". IEEE.
  245. Huang, Yanbo. (2009). "Advances in Artificial Neural Networks – Methodological Development and Application". Algorithms.
  246. (2023). "Exploring the Advancements and Future Research Directions of Artificial Neural Networks: A Text Mining Approach". Applied Sciences.
  247. Staff, Coursera. (2024-09-26). "What Is an Artificial Neural Network, and Why Does It Matter for AI?".
  248. (2025-01-01). "Deep networks for system identification: A survey". Automatica.
  249. (3 July 2023). "Generative AI and ChatGPT: Applications, challenges, and AI-human collaboration". Journal of Information Technology Case and Application Research.
  250. "DALL-E 2's Failures Are the Most Interesting Thing About It – IEEE Spectrum".
  251. Briot, Jean-Pierre. (January 2021). "From artificial neural networks to deep learning for music generation: history, concepts and trends". Neural Computing and Applications.
  252. Chow, Pei-Sze. (6 July 2020). "Ghost in the (Hollywood) machine: Emergent applications of artificial intelligence in the film industry". NECSUS_European Journal of Media Studies.
  253. (June 2010). "The 3rd International Conference on Information Sciences and Interaction Sciences". IEEE.
Wikipedia Source

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.

Want to explore this topic further?

Ask Mako anything about Neural network (machine learning) — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This 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