AI legend Yann LeCun, one of the godfathers of deep learning, sees self-supervised learning as the ... [+] key to AI's future.
The field of artificial intelligence moves fast. It has only been 8 years since the modern era of deep learning began at the 2012 ImageNet competition. Progress in the field since then has been breathtaking and relentless.
If anything, this breakneck pace is only accelerating. Five years from now, the field of AI will look very different than it does today. Methods that are currently considered cutting-edge will have become outdated; methods that today are nascent or on the fringes will be mainstream.
What will the next generation of artificial intelligence look like? Which novel AI approaches will unlock currently unimaginable possibilities in technology and business? This article highlights three emerging areas within AI that are poised to redefine the fieldand societyin the years ahead. Study up now.
The dominant paradigm in the world of AI today is supervised learning. In supervised learning, AI models learn from datasets that humans have curated and labeled according to predefined categories. (The term supervised learning comes from the fact that human supervisors prepare the data in advance.)
While supervised learning has driven remarkable progress in AI over the past decade, from autonomous vehicles to voice assistants, it has serious limitations.
The process of manually labeling thousands or millions of data points can be enormously expensive and cumbersome. The fact that humans must label data by hand before machine learning models can ingest it has become a major bottleneck in AI.
At a deeper level, supervised learning represents a narrow and circumscribed form of learning. Rather than being able to explore and absorb all the latent information, relationships and implications in a given dataset, supervised algorithms orient only to the concepts and categories that researchers have identified ahead of time.
In contrast, unsupervised learning is an approach to AI in which algorithms learn from data without human-provided labels or guidance.
Many AI leaders see unsupervised learning as the next great frontier in artificial intelligence. In the words of AI legend Yann LeCun: The next AI revolution will not be supervised. UC Berkeley professor Jitenda Malik put it even more colorfully: Labels are the opium of the machine learning researcher.
How does unsupervised learning work? In a nutshell, the system learns about some parts of the world based on other parts of the world. By observing the behavior of, patterns among, and relationships between entitiesfor example, words in a text or people in a videothe system bootstraps an overall understanding of its environment. Some researchers sum this up with the phrase predicting everything from everything else.
Unsupervised learning more closely mirrors the way that humans learn about the world: through open-ended exploration and inference, without a need for the training wheels of supervised learning. One of its fundamental advantages is that there will always be far more unlabeled data than labeled data in the world (and the former is much easier to come by).
In the words of LeCun, who prefers the closely related term self-supervised learning: In self-supervised learning, a portion of the input is used as a supervisory signal to predict the remaining portion of the input....More knowledge about the structure of the world can be learned through self-supervised learning than from [other AI paradigms], because the data is unlimited and the amount of feedback provided by each example is huge.
Unsupervised learning is already having a transformative impact in natural language processing. NLP has seen incredible progress recently thanks to a new unsupervised learning architecture known as the Transformer, which originated at Google about three years ago. (See #3 below for more on Transformers.)
Efforts to apply unsupervised learning to other areas of AI remain at earlier stages, but rapid progress is being made. To take one example, a startup named Helm.ai is seeking to use unsupervised learning to leapfrog the leaders in the autonomous vehicle industry.
Many researchers see unsupervised learning as the key to developing human-level AI. According to LeCun, mastering unsupervised learning is the greatest challenge in ML and AI of the next few years.
One of the overarching challenges of the digital era is data privacy. Because data is the lifeblood of modern artificial intelligence, data privacy issues play a significant (and often limiting) role in AIs trajectory.
Privacy-preserving artificial intelligencemethods that enable AI models to learn from datasets without compromising their privacyis thus becoming an increasingly important pursuit. Perhaps the most promising approach to privacy-preserving AI is federated learning.
The concept of federated learning was first formulated by researchers at Google in early 2017. Over the past year, interest in federated learning has exploded: more than 1,000 research papers on federated learning were published in the first six months of 2020, compared to just 180 in all 2018.
The standard approach to building machine learning models today is to gather all the training data in one place, often in the cloud, and then to train the model on the data. But this approach is not practicable for much of the worlds data, which for privacy and security reasons cannot be moved to a central data repository. This makes it off-limits to traditional AI techniques.
Federated learning solves this problem by flipping the conventional approach to AI on its head.
Rather than requiring one unified dataset to train a model, federated learning leaves the data where it is, distributed across numerous devices and servers on the edge. Instead, many versions of the model are sent outone to each device with training dataand trained locally on each subset of data. The resulting model parameters, but not the training data itself, are then sent back to the cloud. When all these mini-models are aggregated, the result is one overall model that functions as if it had been trained on the entire dataset at once.
The original federated learning use case was to train AI models on personal data distributed across billions of mobile devices. As those researchers summarized: Modern mobile devices have access to a wealth of data suitable for machine learning models....However, this rich data is often privacy sensitive, large in quantity, or both, which may preclude logging to the data center....We advocate an alternative that leaves the training data distributed on the mobile devices, and learns a shared model by aggregating locally-computed updates.
More recently, healthcare has emerged as a particularly promising field for the application of federated learning.
It is easy to see why. On one hand, there are an enormous number of valuable AI use cases in healthcare. On the other hand, healthcare data, especially patients personally identifiable information, is extremely sensitive; a thicket of regulations like HIPAA restrict its use and movement. Federated learning could enable researchers to develop life-saving healthcare AI tools without ever moving sensitive health records from their source or exposing them to privacy breaches.
A host of startups has emerged to pursue federated learning in healthcare. The most established is Paris-based Owkin; earlier-stage players include Lynx.MD, Ferrum Health and Secure AI Labs.
Beyond healthcare, federated learning may one day play a central role in the development of any AI application that involves sensitive data: from financial services to autonomous vehicles, from government use cases to consumer products of all kinds. Paired with other privacy-preserving techniques like differential privacy and homomorphic encryption, federated learning may provide the key to unlocking AIs vast potential while mitigating the thorny challenge of data privacy.
The wave of data privacy legislation being enacted worldwide today (starting with GDPR and CCPA, with many similar laws coming soon) will only accelerate the need for these privacy-preserving techniques. Expect federated learning to become an important part of the AI technology stack in the years ahead.
We have entered a golden era for natural language processing.
OpenAIs release of GPT-3, the most powerful language model ever built, captivated the technology world this summer. It has set a new standard in NLP: it can write impressive poetry, generate functioning code, compose thoughtful business memos, write articles about itself, and so much more.
GPT-3 is just the latest (and largest) in a string of similarly architected NLP modelsGoogles BERT, OpenAIs GPT-2, Facebooks RoBERTa and othersthat are redefining what is possible in NLP.
The key technology breakthrough underlying this revolution in language AI is the Transformer.
Transformers were introduced in a landmark 2017 research paper. Previously, state-of-the-art NLP methods had all been based on recurrent neural networks (e.g., LSTMs). By definition, recurrent neural networks process data sequentiallythat is, one word at a time, in the order that the words appear.
Transformers great innovation is to make language processing parallelized: all the tokens in a given body of text are analyzed at the same time rather than in sequence. In order to support this parallelization, Transformers rely heavily on an AI mechanism known as attention. Attention enables a model to consider the relationships between words regardless of how far apart they are and to determine which words and phrases in a passage are most important to pay attention to.
Why is parallelization so valuable? Because it makes Transformers vastly more computationally efficient than RNNs, meaning they can be trained on much larger datasets. GPT-3 was trained on roughly 500 billion words and consists of 175 billion parameters, dwarfing any RNN in existence.
Transformers have been associated almost exclusively with NLP to date, thanks to the success of models like GPT-3. But just this month, a groundbreaking new paper was released that successfully applies Transformers to computer vision. Many AI researchers believe this work could presage a new era in computer vision. (As well-known ML researcher Oriol Vinyals put it simply, My take is: farewell convolutions.)
While leading AI companies like Google and Facebook have begun to put Transformer-based models into production, most organizations remain in the early stages of productizing and commercializing this technology. OpenAI has announced plans to make GPT-3 commercially accessible via API, which could seed an entire ecosystem of startups building applications on top of it.
Expect Transformers to serve as the foundation for a whole new generation of AI capabilities in the years ahead, starting with natural language. As exciting as the past decade has been in the field of artificial intelligence, it may prove to be just a prelude to the decade ahead.
See original here:
The Next Generation Of Artificial Intelligence - Forbes
- A crewless boat is recreating the Mayflower's 400-year-old journey, with the help of artificial intelligence - CBS News - December 26th, 2020
- Artificial Intelligence (AI): Is It All Just Costly Hype? - Dice Insights - December 26th, 2020
- 7 Types of Artificial Intelligence: Propelling the Technology Development - Analytics Insight - December 26th, 2020
- Artificial intelligence will go mainstream in 2021 The Manila Times - The Manila Times - December 26th, 2020
- Top 7 Amazing Artificial Intelligence Applications that Are Unfamiliar - Analytics Insight - December 26th, 2020
- NASCAR Team up with the World Poker Tour while Artificial Intelligence Breaks New Barriers - HighstakesDB - December 26th, 2020
- Youve heard of Elf on the Shelf; in New Haven theres elf with artificial intelligence - New Haven Register - December 26th, 2020
- How is Artificial Intelligence Transforming the lives of People with Disabilities? - Analytics Insight - December 26th, 2020
- How Bad Is Your Spotify? There's Artificial Intelligence to Judge Your Taste - Distractify - December 26th, 2020
- Artificial intelligence measure included in must-pass government funding deal - Homeland Preparedness News - December 26th, 2020
- PetrSU joined the fight for leadership in the field of artificial intelligence applications in Russia and in the world - India Education Diary - December 26th, 2020
- Why not enlist the help of artificial intelligence to nudge people to mask up? - Houston Chronicle - December 22nd, 2020
- Congress wants an inventory of all AI projects at the Pentagon - C4ISRNet - December 22nd, 2020
- The influence of artificial intelligence on the banking industry - Latest Digital Transformation Trends | Cloud News - Wire19 - December 22nd, 2020
- Application of artificial intelligence in the field of treatment and medicine - Tehran Times - December 22nd, 2020
- Using Artificial Intelligence To Transform An Industry? Nominations For The 2021 AI 50 List Are Open - Forbes - December 22nd, 2020
- Delivering Proactive Mental Healthcare With Artificial Intelligence - HealthITAnalytics.com - December 22nd, 2020
- Artificial intelligence is intertwined in precision agriculture - AGDAILY - December 22nd, 2020
- Spin Announces Cutting Edge On-Vehicle Artificial Intelligence (AI) Platform To Bring Sidewalk Riding and Parking Detection Technology to Cities... - December 22nd, 2020
- UC convenes Artificial Intelligence Working Group to harness innovative technology, establish guardrails for equitable and ethical use - University of... - December 22nd, 2020
- Automotive Artificial Intelligence Market Research Report by Technology, by Process, by Offerings, by Application - Global Forecast to 2025 -... - December 22nd, 2020
- Artificial Intelligence, Contactless Solutions Set to Provide Safety Protocols to Enable Reopening of Live Events in 2021 - PRNewswire - December 22nd, 2020
- Employing artificial intelligence to spot infrastructure issues - Construction Dive - December 22nd, 2020
- CPPI and HSDF Release Report from Virtual Symposium: Artificial Intelligence: Transforming the Government Mission - PRNewswire - December 22nd, 2020
- Top 10 AI and machine learning stories of 2020 - Healthcare IT News - December 17th, 2020
- The 8 Best Books About Artificial Intelligence to Read Now - WIRED - December 17th, 2020
- KODA AUTO wins Pioneer Award for its use of artificial intelligence and Sound Analyser app - Automotive World - December 17th, 2020
- Artificial Intelligences Are Power Hungry, But Not How You Think - Nextgov - December 17th, 2020
- Now is the time to ensure artificial intelligence works for Europeans - EU News - December 17th, 2020
- Currux Vision LLC Announces Industry Leading Accuracy of Artificial Intelligence Smart City Traffic Platform Testing with the City of San Jos - PR Web - December 17th, 2020
- Leveraging artificial intelligence to reach fathers and support child nutrition in India during COVID-19 - World Bank Group - December 17th, 2020
- How artificial intelligence helped me overcome my dyslexia - The Guardian - December 17th, 2020
- Artificial Intelligence Advances Showcased at the Virtual 2020 AACC Annual Scientific Meeting Could Help to Integrate This Technology Into Everyday... - December 17th, 2020
- Global Artificial Intelligence in Supply Chain Management Market was Valued at US$ 1549.5 Mn in 2019 Growing at a CAGR of 25.12% over the Forecast... - December 17th, 2020
- Are AI and job automation good for society? Globally, views are mixed - Pew Research Center - December 17th, 2020
- Landmark artificial intelligence legislation advances toward becoming law Defense bill awaits possible presidential veto and Congressional override;... - December 17th, 2020
- St. Louis Is Grappling With Artificial Intelligence's Promise And Potential Peril - St. Louis Public Radio - October 16th, 2020
- Looper column: Artificial intelligence, humanity and the future - SouthCoastToday.com - October 16th, 2020
- For artificial intelligence to flourish, governments need to think ahead about its responsible use - Firstpost - October 16th, 2020
- MediFind Selected as Finalist for Best in Artificial Intelligence in the Shorty Social Good Awards - The Wellsboro Gazette - October 16th, 2020
- The relentless threat of artificial intelligence taking our jobs away - Mint - October 16th, 2020
- Will artificial intelligence technology change the dairy industry - positivelyosceola.com - October 16th, 2020
- Penn Medicine researchers use artificial intelligence to identify early signs of Alzheimer's Disease - Express Computer - October 16th, 2020
- Futurism Reinforces Its Next-Gen Business Commerce Platform With Advanced Machine Learning and Artificial Intelligence Capabilities - Yahoo Finance - October 16th, 2020
- SparkCognition Advances the Science of Artificial Intelligence with 85 Patents - PRNewswire - October 16th, 2020
- Dont Be Afraid, BMW Promises To Keep Artificial Intelligence (AI) On A Tight Leash With These 7 Principles - CarScoops - October 16th, 2020
- Artificial Intelligence in Government: Global Markets 2020-2025 - ResearchAndMarkets.com - Business Wire - August 31st, 2020
- Import Screening Pilot Unleashes the Power of Data - FDA.gov - August 31st, 2020
- Supercharge vegetation management and outage prediction with artificial intelligence - Utility Dive - August 31st, 2020
- Automation, artificial intelligence to be central in the post-Covid world - Economic Times - August 31st, 2020
- Artificial Intelligence Is the Next Top Gun - Bloomberg - August 31st, 2020
- Defense Innovation Unit Teaching Artificial Intelligence to Detect Cancer - Department of Defense - August 31st, 2020
- Toward a machine learning model that can reason about everyday actions - MIT News - August 31st, 2020
- How Artificial Intelligence is changing the way we search and find online - ITProPortal - August 31st, 2020
- TikTok Assets Cant Be Sold Without Chinas Approval - Bloomberg - August 31st, 2020
- Artificial Intelligence in Oil and Gas Market Global Size, Growth and Demand 2020 to 2030 - The News Brok - August 31st, 2020
- Rage Against the Algorithm: the Risks of Overestimating Military Artificial Intelligence - Chatham House - August 31st, 2020
- U of I to lead two of seven new national artificial intelligence institutes - University of Illinois News - August 31st, 2020
- Holocaust survivors will be able to share their stories after death thanks to a new project - 60 Minutes - CBS News - August 31st, 2020
- Funding boost for artificial intelligence in NHS to speed up diagnosis of deadly diseases - GOV.UK - August 31st, 2020
- Artificial Intelligence Identifies 80,000 Spiral Galaxies Promises More Astronomical Discoveries in the Future - SciTechDaily - August 31st, 2020
- Is Artificial intelligence the Future of IT Help Desk? - Analytics Insight - August 10th, 2020
- Experts Are Divided Over Future Of Artificial Intelligence But Agree On Its Growing Impact - Outlook India - August 10th, 2020
- "Artificial Intelligence Will Make Medicine Better in the Long Run" - Biophotonics.World - August 10th, 2020
- How machine learning and artificial intelligence can drive clinical innovation - PharmaLive - August 10th, 2020
- Top Artificial Intelligence and Robotics Investments in July 2020 - Analytics Insight - August 10th, 2020
- Job interviews: Recruiters are using artificial intelligence to analyse what you say to find the right hire - TechRepublic - August 10th, 2020
- The next frontier of human-robot relationships is building trust - Scroll.in - August 8th, 2020
- Game-Changing Artificial Intelligence Solution by PhotoShelter to Revolutionize Social Media Workflow as Premier Lacrosse League Returns to the Field... - August 8th, 2020
- How Artificial Intelligence is Helping to Fight against Coronavirus in India? - Analytics Insight - August 8th, 2020
- BLOG: How to capitalise on the Artificial Intelligence theme - Your Money - Your Money - August 8th, 2020
- Artificial Intelligence and Its Partners - Modern Diplomacy - August 8th, 2020
- Artificial intelligence isnt destroying jobs, its making them more inclusive - The Globe and Mail - August 8th, 2020
- RadNet and Hologic Announce Collaboration to Advance the Development of Artificial Intelligence Tools in Breast Health - GlobeNewswire - August 7th, 2020
- COVID-19 Impacts: Artificial Intelligence-as-a-Service (AIaaS) Market Will Accelerate at a CAGR of Over 48% Through 2020-2024|Growing Adoption of... - August 7th, 2020
- Artificial Intelligence in Business: The New Normal in Testing Times - Analytics Insight - August 7th, 2020
- VIEW: Digitisation in pathology and the promise of artificial intelligence - CNBCTV18 - August 7th, 2020
- What It Means to Be Human in the Age of Artificial Intelligence - Medium - August 7th, 2020
- Not so Artificial Intelligence When is AI really AI? - EFTM - August 3rd, 2020
- IMD to explore artificial intelligence to improve forecasting, predict extreme weather events - Firstpost - August 3rd, 2020