Skip to main content

Google Created an AI That Can Learn Almost as Fast as a Human


Deep Learning, Fast

Deep learning machines have been generating incredible amounts of buzz in recent months. Their extensive abilities can allow them to play video games, recognize faces, and, most importantly, learn. However, these systems learn 10 times more slowly than humans, which has allowed us to keep the creeping fears of a complete artificial intelligence (AI) takeover at bay. Now, Google has developed an AI that is capable of learning almost as quickly as a human being.

Claims of this advancement in speed come from Google’s DeepMind subsidiary in London. They say that not only can their machine assimilate and act on new experiences much more quickly than previous AI models, it will soon reach human-level speeds.

If you’re unfamiliar with how deep learning works, it uses layers of neural networks to locate trends or patterns in data. If one layer identifies a pattern, that information will be sent to the next layer. This process continues until all the information is collected.

Systems can be taught to learn differently depending on many different variables, such as the strength of the connection between layers. Significant changes in one layer can dramatically change how information is transmitted in other layers, or how it is “learned.” Deep neural networks have many layers, so when changes are present, the process of learning can take an incredibly long time.

However, Alexander Pritzel, one of the researchers at Google DeepMind, and his colleagues seem to have figured out a way around this issue. They call it “neural episodic control.”

“Neural episodic control demonstrates dramatic improvements on the speed of learning for a wide range of environments,” the team told MIT Technology Review. “Critically, our agent is able to rapidly latch onto highly successful strategies as soon as they are experienced, instead of waiting for many steps of optimization.” Their method mimics the processes of learning that occur in human and animal brains, replicating what happens first in the prefrontal cortex and then, as a backup, in the hippocampus.

Comments

Popular posts from this blog

7 Online AI Chatbots to Chat

We are living in a century where technology dominates lifestyle; artificial intelligence (AI) is one such example. It is an intelligence exhibited by machines or software to help make humans’ life easy. Apple brought its AI assistant SIRI into our daily lives, and Google and Microsoft have also came up with their own version of AI known as ‘Google Now’ and ‘Cortana’ respectively. The concept and application of AI is evolving. It can also be seen in some of the famous movies and shows like ‘Her’ directed by Spike Jonze, ‘Artificial Intelligence’ by Steven Spielberg, and many more. It shows how science is impacting our lives and accelerating a change in the lifestyle of people. Such websites are designed on the AI algorithm where you can interact with the machine in your leisure time for fun . Some of such AI chatbots are listed below. Breeze through them, you might just feel the urge of trying out one! Cleverbot Cleverbot is an AI, designed to have convers

Perceptron: the main component of neural networks

In machine learning, the perceptron is an algorithm for supervised learning of binary classifiers. It is a type of linear classifier, i.e. a classification algorithm that makes its predictions based on a linear predictor function combining a set of weights with the feature vector. The Perceptron, also known as the Rosenblatt’s Perceptron . Perceptrons are the most primitive classifiers, akin to the base neurons in a deep-learning system. What is Perceptron  A Single Neuron The basic unit of computation in a neural network is the neuron , often called a node or unit . It receives input from some other nodes, or from an external source and computes an output. Each input has an associated weight  (w), which is assigned on the basis of its relative importance to other inputs. The node applies a function  f (defined below) to the weighted sum of its inputs as shown in Figure 1 below: Basic elements of Perceptron Inputs : X1, X2 Bias : b Synaptic Weights :

Neural Network - Introduction

In neuroscience, a neural network is a series of interconnected neurons whose activation defines a recognizable linear pathway. The interface through which neurons interact with their neighbors usually consists of several axon terminals connected via synapses to dendrites on other neurons. If the sum of the input signals into one neuron surpasses a certain threshold, the neuron sends an action potential (AP) at the axon hillock and transmits this electrical signal along the axon. But in terms of AI, neural network refers to Artificial Neural Network. So, what is Artificial Neural Network  The simplest definition of a neural network, more properly referred to as an 'artificial' neural network (ANN), is provided by the inventor of one of the first neurocomputers, Dr. Robert Hecht-Nielsen. He defines a neural network as: a computing system made up of a number of simple, highly interconnected processing elements, which process information by their dynami