Word Cloud for a Website

Word Cloud for a Website

A Wordcloud (or Tag cloud) is a visual representation of text data. It displays a list of words, the importance of each beeing shown with font size or color.

In this document, we are going to learn

  1. Web scraping
  2. Use of regular expression to clean text
  3. NLTK Tokenization
  4. Use of STOP WORDS
  5. Get the word frequencies
  6. Create WordCloud
  7. Plot WordCloud with the help of Matplotlib

Extract data from a website

Import modules

In [1]:
from bs4 import BeautifulSoup
from urllib.request import Request, urlopen
import re

Web scraping

The urllib.request module defines functions and classes which help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.

urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None): Open the URL url, which can be either a string or a Request object.

In [2]:
url = "https://en.wikipedia.org/wiki/Machine_learning"
headers = {'User-Agent': 'Mozilla/5.0'}
In [3]:
req = Request(url, headers = headers )
page = urlopen(req)
page
Out[3]:
<http.client.HTTPResponse at 0x7f2dc0238310>

Scrape information from web page

Beautiful Soup is a library that makes it easy to scrape information from web pages.

In [4]:
soup = BeautifulSoup(page, 'html.parser')
print(soup.get_text().encode("utf-8")[:100])
b'\n\n\n\nMachine learning - Wikipedia\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMachine learning\n\nFrom Wik'

Remove script and style elements from scraped information

In [5]:
# kill all script and style elements
for script in soup(["script", "style"]):
    script.extract()    

Get text of web page

In [6]:
text = soup.get_text().strip()
print(text[:100])
Machine learning - Wikipedia









































Machine learning

From Wikiped

Clean text

Remove all spaces from left and right and then make all words lower

In [7]:
#remove extra space from left and right and make it lower
text = text.strip()
text = text.lower()
text[:100]
Out[7]:
'machine learning - wikipedia\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nmachine learning\n\nfrom wikiped'

Clean text with the help of regular expression

In [8]:
#\w: returns the alpha numeric words
text = re.sub(r'[^\w]+',' ', text)

#remove digits
text = re.sub('\d+', ' ', text)
print(text[:1000])
machine learning wikipedia machine learning from wikipedia the free encyclopedia jump to navigation jump to search study of algorithms that improve automatically through experience for the journal see machine learning journal statistical learning redirects here for statistical learning in linguistics see statistical learning in language acquisition part of a series onmachine learningand data mining problems classification clustering regression anomaly detection data cleaning automl association rules reinforcement learning structured prediction feature engineering feature learning online learning semi supervised learning unsupervised learning learning to rank grammar induction supervised learning classification regression decision trees ensembles bagging boosting random forest k nn linear regression naive bayes artificial neural networks logistic regression perceptron relevance vector machine rvm support vector machine svm clustering birch cure hierarchical k means expectation maximizat

Word Tokenize

Tokenization is the process of converting a sequence of characters into a sequence of tokens.

The tok-tok tokenizer is a simple, general tokenizer, where the input has one sentence per line; thus only final period is tokenized.

In [9]:
import collections
from nltk.tokenize.toktok import ToktokTokenizer
from nltk.corpus import stopwords
In [10]:
#Tokenizers divide strings into lists of substrings.
tokenizer = ToktokTokenizer()
tokens = tokenizer.tokenize(text)
print(tokens)
['machine', 'learning', 'wikipedia', 'machine', 'learning', 'from', 'wikipedia', 'the', 'free', 'encyclopedia', 'jump', 'to', 'navigation', 'jump', 'to', 'search', 'study', 'of', 'algorithms', 'that', 'improve', 'automatically', 'through', 'experience', 'for', 'the', 'journal', 'see', 'machine', 'learning', 'journal', 'statistical', 'learning', 'redirects', 'here', 'for', 'statistical', 'learning', 'in', 'linguistics', 'see', 'statistical', 'learning', 'in', 'language', 'acquisition', 'part', 'of', 'a', 'series', 'onmachine', 'learningand', 'data', 'mining', 'problems', 'classification', 'clustering', 'regression', 'anomaly', 'detection', 'data', 'cleaning', 'automl', 'association', 'rules', 'reinforcement', 'learning', 'structured', 'prediction', 'feature', 'engineering', 'feature', 'learning', 'online', 'learning', 'semi', 'supervised', 'learning', 'unsupervised', 'learning', 'learning', 'to', 'rank', 'grammar', 'induction', 'supervised', 'learning', 'classification', 'regression', 'decision', 'trees', 'ensembles', 'bagging', 'boosting', 'random', 'forest', 'k', 'nn', 'linear', 'regression', 'naive', 'bayes', 'artificial', 'neural', 'networks', 'logistic', 'regression', 'perceptron', 'relevance', 'vector', 'machine', 'rvm', 'support', 'vector', 'machine', 'svm', 'clustering', 'birch', 'cure', 'hierarchical', 'k', 'means', 'expectation', 'maximization', 'em', 'dbscan', 'optics', 'mean', 'shift', 'dimensionality', 'reduction', 'factor', 'analysis', 'cca', 'ica', 'lda', 'nmf', 'pca', 'pgd', 't', 'sne', 'structured', 'prediction', 'graphical', 'models', 'bayes', 'net', 'conditional', 'random', 'field', 'hidden', 'markov', 'anomaly', 'detection', 'k', 'nn', 'local', 'outlier', 'factor', 'artificial', 'neural', 'network', 'autoencoder', 'cognitive', 'computing', 'deep', 'learning', 'deepdream', 'multilayer', 'perceptron', 'rnn', 'lstm', 'gru', 'esn', 'restricted', 'boltzmann', 'machine', 'gan', 'som', 'convolutional', 'neural', 'network', 'u', 'net', 'transformer', 'vision', 'spiking', 'neural', 'network', 'memtransistor', 'electrochemical', 'ram', 'ecram', 'reinforcement', 'learning', 'q', 'learning', 'sarsa', 'temporal', 'difference', 'td', 'theory', 'kernel', 'machines', 'bias', 'variance', 'tradeoff', 'computational', 'learning', 'theory', 'empirical', 'risk', 'minimization', 'occam', 'learning', 'pac', 'learning', 'statistical', 'learning', 'vc', 'theory', 'machine', 'learning', 'venues', 'neurips', 'icml', 'ml', 'jmlr', 'arxiv', 'cs', 'lg', 'related', 'articles', 'glossary', 'of', 'artificial', 'intelligence', 'list', 'of', 'datasets', 'for', 'machine', 'learning', 'research', 'outline', 'of', 'machine', 'learning', 'vte', 'part', 'of', 'a', 'series', 'onartificial', 'intelligence', 'major', 'goals', 'artificial', 'general', 'intelligence', 'planning', 'computer', 'vision', 'general', 'game', 'playing', 'knowledge', 'reasoning', 'machine', 'learning', 'natural', 'language', 'processing', 'robotics', 'approaches', 'symbolic', 'deep', 'learning', 'bayesian', 'networks', 'evolutionary', 'algorithms', 'philosophy', 'chinese', 'room', 'friendly', 'ai', 'control', 'problem', 'takeover', 'ethics', 'existential', 'risk', 'turing', 'test', 'history', 'timeline', 'progress', 'ai', 'winter', 'technology', 'applications', 'projects', 'programming', 'languages', 'glossary', 'glossary', 'vte', 'machine', 'learning', 'ml', 'is', 'the', 'study', 'of', 'computer', 'algorithms', 'that', 'can', 'improve', 'automatically', 'through', 'experience', 'and', 'by', 'the', 'use', 'of', 'data', 'it', 'is', 'seen', 'as', 'a', 'part', 'of', 'artificial', 'intelligence', 'machine', 'learning', 'algorithms', 'build', 'a', 'model', 'based', 'on', 'sample', 'data', 'known', 'as', 'training', 'data', 'in', 'order', 'to', 'make', 'predictions', 'or', 'decisions', 'without', 'being', 'explicitly', 'programmed', 'to', 'do', 'so', 'machine', 'learning', 'algorithms', 'are', 'used', 'in', 'a', 'wide', 'variety', 'of', 'applications', 'such', 'as', 'in', 'medicine', 'email', 'filtering', 'speech', 'recognition', 'and', 'computer', 'vision', 'where', 'it', 'is', 'difficult', 'or', 'unfeasible', 'to', 'develop', 'conventional', 'algorithms', 'to', 'perform', 'the', 'needed', 'tasks', 'a', 'subset', 'of', 'machine', 'learning', 'is', 'closely', 'related', 'to', 'computational', 'statistics', 'which', 'focuses', 'on', 'making', 'predictions', 'using', 'computers', 'but', 'not', 'all', 'machine', 'learning', 'is', 'statistical', 'learning', 'the', 'study', 'of', 'mathematical', 'optimization', 'delivers', 'methods', 'theory', 'and', 'application', 'domains', 'to', 'the', 'field', 'of', 'machine', 'learning', 'data', 'mining', 'is', 'a', 'related', 'field', 'of', 'study', 'focusing', 'on', 'exploratory', 'data', 'analysis', 'through', 'unsupervised', 'learning', 'some', 'implementations', 'of', 'machine', 'learning', 'use', 'data', 'and', 'neural', 'networks', 'in', 'a', 'way', 'that', 'mimics', 'the', 'working', 'of', 'a', 'biological', 'brain', 'in', 'its', 'application', 'across', 'business', 'problems', 'machine', 'learning', 'is', 'also', 'referred', 'to', 'as', 'predictive', 'analytics', 'contents', 'overview', 'history', 'and', 'relationships', 'to', 'other', 'fields', 'artificial', 'intelligence', 'data', 'mining', 'optimization', 'generalization', 'statistics', 'theory', 'approaches', 'supervised', 'learning', 'unsupervised', 'learning', 'semi', 'supervised', 'learning', 'reinforcement', 'learning', 'dimensionality', 'reduction', 'other', 'types', 'self', 'learning', 'feature', 'learning', 'sparse', 'dictionary', 'learning', 'anomaly', 'detection', 'robot', 'learning', 'association', 'rules', 'models', 'artificial', 'neural', 'networks', 'decision', 'trees', 'support', 'vector', 'machines', 'regression', 'analysis', 'bayesian', 'networks', 'genetic', 'algorithms', 'training', 'models', 'federated', 'learning', 'applications', 'limitations', 'bias', 'overfitting', 'other', 'limitations', 'model', 'assessments', 'ethics', 'hardware', 'neuromorphic', 'physical', 'neural', 'networks', 'embedded', 'machine', 'learning', 'software', 'free', 'and', 'open', 'source', 'software', 'proprietary', 'software', 'with', 'free', 'and', 'open', 'source', 'editions', 'proprietary', 'software', 'journals', 'conferences', 'see', 'also', 'references', 'sources', 'further', 'reading', 'external', 'links', 'overview', 'edit', 'learning', 'algorithms', 'work', 'on', 'the', 'basis', 'that', 'strategies', 'algorithms', 'and', 'inferences', 'that', 'worked', 'well', 'in', 'the', 'past', 'are', 'likely', 'to', 'continue', 'working', 'well', 'in', 'the', 'future', 'these', 'inferences', 'can', 'be', 'obvious', 'such', 'as', 'since', 'the', 'sun', 'rose', 'every', 'morning', 'for', 'the', 'last', 'days', 'it', 'will', 'probably', 'rise', 'tomorrow', 'morning', 'as', 'well', 'they', 'can', 'be', 'nuanced', 'such', 'as', 'x', 'of', 'families', 'have', 'geographically', 'separate', 'species', 'with', 'color', 'variants', 'so', 'there', 'is', 'a', 'y', 'chance', 'that', 'undiscovered', 'black', 'swans', 'exist', 'machine', 'learning', 'programs', 'can', 'perform', 'tasks', 'without', 'being', 'explicitly', 'programmed', 'to', 'do', 'so', 'it', 'involves', 'computers', 'learning', 'from', 'data', 'provided', 'so', 'that', 'they', 'carry', 'out', 'certain', 'tasks', 'for', 'simple', 'tasks', 'assigned', 'to', 'computers', 'it', 'is', 'possible', 'to', 'program', 'algorithms', 'telling', 'the', 'machine', 'how', 'to', 'execute', 'all', 'steps', 'required', 'to', 'solve', 'the', 'problem', 'at', 'hand', 'on', 'the', 'computer', 's', 'part', 'no', 'learning', 'is', 'needed', 'for', 'more', 'advanced', 'tasks', 'it', 'can', 'be', 'challenging', 'for', 'a', 'human', 'to', 'manually', 'create', 'the', 'needed', 'algorithms', 'in', 'practice', 'it', 'can', 'turn', 'out', 'to', 'be', 'more', 'effective', 'to', 'help', 'the', 'machine', 'develop', 'its', 'own', 'algorithm', 'rather', 'than', 'having', 'human', 'programmers', 'specify', 'every', 'needed', 'step', 'the', 'discipline', 'of', 'machine', 'learning', 'employs', 'various', 'approaches', 'to', 'teach', 'computers', 'to', 'accomplish', 'tasks', 'where', 'no', 'fully', 'satisfactory', 'algorithm', 'is', 'available', 'in', 'cases', 'where', 'vast', 'numbers', 'of', 'potential', 'answers', 'exist', 'one', 'approach', 'is', 'to', 'label', 'some', 'of', 'the', 'correct', 'answers', 'as', 'valid', 'this', 'can', 'then', 'be', 'used', 'as', 'training', 'data', 'for', 'the', 'computer', 'to', 'improve', 'the', 'algorithm', 's', 'it', 'uses', 'to', 'determine', 'correct', 'answers', 'for', 'example', 'to', 'train', 'a', 'system', 'for', 'the', 'task', 'of', 'digital', 'character', 'recognition', 'the', 'mnist', 'dataset', 'of', 'handwritten', 'digits', 'has', 'often', 'been', 'used', 'history', 'and', 'relationships', 'to', 'other', 'fields', 'edit', 'see', 'also', 'timeline', 'of', 'machine', 'learning', 'the', 'term', 'machine', 'learning', 'was', 'coined', 'in', 'by', 'arthur', 'samuel', 'an', 'american', 'ibmer', 'and', 'pioneer', 'in', 'the', 'field', 'of', 'computer', 'gaming', 'and', 'artificial', 'intelligence', 'also', 'the', 'synonym', 'self', 'teaching', 'computers', 'was', 'used', 'in', 'this', 'time', 'period', 'a', 'representative', 'book', 'of', 'the', 'machine', 'learning', 'research', 'during', 'the', 's', 'was', 'the', 'nilsson', 's', 'book', 'on', 'learning', 'machines', 'dealing', 'mostly', 'with', 'machine', 'learning', 'for', 'pattern', 'classification', 'interest', 'related', 'to', 'pattern', 'recognition', 'continued', 'into', 'the', 's', 'as', 'described', 'by', 'duda', 'and', 'hart', 'in', 'in', 'a', 'report', 'was', 'given', 'on', 'using', 'teaching', 'strategies', 'so', 'that', 'a', 'neural', 'network', 'learns', 'to', 'recognize', 'characters', 'letters', 'digits', 'and', 'special', 'symbols', 'from', 'a', 'computer', 'terminal', 'tom', 'm', 'mitchell', 'provided', 'a', 'widely', 'quoted', 'more', 'formal', 'definition', 'of', 'the', 'algorithms', 'studied', 'in', 'the', 'machine', 'learning', 'field', 'a', 'computer', 'program', 'is', 'said', 'to', 'learn', 'from', 'experience', 'e', 'with', 'respect', 'to', 'some', 'class', 'of', 'tasks', 't', 'and', 'performance', 'measure', 'p', 'if', 'its', 'performance', 'at', 'tasks', 'in', 't', 'as', 'measured', 'by', 'p', 'improves', 'with', 'experience', 'e', 'this', 'definition', 'of', 'the', 'tasks', 'in', 'which', 'machine', 'learning', 'is', 'concerned', 'offers', 'a', 'fundamentally', 'operational', 'definition', 'rather', 'than', 'defining', 'the', 'field', 'in', 'cognitive', 'terms', 'this', 'follows', 'alan', 'turing', 's', 'proposal', 'in', 'his', 'paper', 'computing', 'machinery', 'and', 'intelligence', 'in', 'which', 'the', 'question', 'can', 'machines', 'think', 'is', 'replaced', 'with', 'the', 'question', 'can', 'machines', 'do', 'what', 'we', 'as', 'thinking', 'entities', 'can', 'do', 'modern', 'day', 'machine', 'learning', 'has', 'two', 'objectives', 'one', 'is', 'to', 'classify', 'data', 'based', 'on', 'models', 'which', 'have', 'been', 'developed', 'the', 'other', 'purpose', 'is', 'to', 'make', 'predictions', 'for', 'future', 'outcomes', 'based', 'on', 'these', 'models', 'a', 'hypothetical', 'algorithm', 'specific', 'to', 'classifying', 'data', 'may', 'use', 'computer', 'vision', 'of', 'moles', 'coupled', 'with', 'supervised', 'learning', 'in', 'order', 'to', 'train', 'it', 'to', 'classify', 'the', 'cancerous', 'moles', 'a', 'machine', 'learning', 'algorithm', 'for', 'stock', 'trading', 'may', 'inform', 'the', 'trader', 'of', 'future', 'potential', 'predictions', 'artificial', 'intelligence', 'edit', 'machine', 'learning', 'as', 'subfield', 'of', 'ai', 'part', 'of', 'machine', 'learning', 'as', 'subfield', 'of', 'ai', 'or', 'part', 'of', 'ai', 'as', 'subfield', 'of', 'machine', 'learning', 'as', 'a', 'scientific', 'endeavor', 'machine', 'learning', 'grew', 'out', 'of', 'the', 'quest', 'for', 'artificial', 'intelligence', 'in', 'the', 'early', 'days', 'of', 'ai', 'as', 'an', 'academic', 'discipline', 'some', 'researchers', 'were', 'interested', 'in', 'having', 'machines', 'learn', 'from', 'data', 'they', 'attempted', 'to', 'approach', 'the', 'problem', 'with', 'various', 'symbolic', 'methods', 'as', 'well', 'as', 'what', 'was', 'then', 'termed', 'neural', 'networks', 'these', 'were', 'mostly', 'perceptrons', 'and', 'other', 'models', 'that', 'were', 'later', 'found', 'to', 'be', 'reinventions', 'of', 'the', 'generalized', 'linear', 'models', 'of', 'statistics', 'probabilistic', 'reasoning', 'was', 'also', 'employed', 'especially', 'in', 'automated', 'medical', 'diagnosis', 'however', 'an', 'increasing', 'emphasis', 'on', 'the', 'logical', 'knowledge', 'based', 'approach', 'caused', 'a', 'rift', 'between', 'ai', 'and', 'machine', 'learning', 'probabilistic', 'systems', 'were', 'plagued', 'by', 'theoretical', 'and', 'practical', 'problems', 'of', 'data', 'acquisition', 'and', 'representation', 'by', 'expert', 'systems', 'had', 'come', 'to', 'dominate', 'ai', 'and', 'statistics', 'was', 'out', 'of', 'favor', 'work', 'on', 'symbolic', 'knowledge', 'based', 'learning', 'did', 'continue', 'within', 'ai', 'leading', 'to', 'inductive', 'logic', 'programming', 'but', 'the', 'more', 'statistical', 'line', 'of', 'research', 'was', 'now', 'outside', 'the', 'field', 'of', 'ai', 'proper', 'in', 'pattern', 'recognition', 'and', 'information', 'retrieval', 'neural', 'networks', 'research', 'had', 'been', 'abandoned', 'by', 'ai', 'and', 'computer', 'science', 'around', 'the', 'same', 'time', 'this', 'line', 'too', 'was', 'continued', 'outside', 'the', 'ai', 'cs', 'field', 'as', 'connectionism', 'by', 'researchers', 'from', 'other', 'disciplines', 'including', 'hopfield', 'rumelhart', 'and', 'hinton', 'their', 'main', 'success', 'came', 'in', 'the', 'mid', 's', 'with', 'the', 'reinvention', 'of', 'backpropagation', 'machine', 'learning', 'ml', 'reorganized', 'as', 'a', 'separate', 'field', 'started', 'to', 'flourish', 'in', 'the', 's', 'the', 'field', 'changed', 'its', 'goal', 'from', 'achieving', 'artificial', 'intelligence', 'to', 'tackling', 'solvable', 'problems', 'of', 'a', 'practical', 'nature', 'it', 'shifted', 'focus', 'away', 'from', 'the', 'symbolic', 'approaches', 'it', 'had', 'inherited', 'from', 'ai', 'and', 'toward', 'methods', 'and', 'models', 'borrowed', 'from', 'statistics', 'and', 'probability', 'theory', 'the', 'difference', 'between', 'ml', 'and', 'ai', 'is', 'frequently', 'misunderstood', 'ml', 'learns', 'and', 'predicts', 'based', 'on', 'passive', 'observations', 'whereas', 'ai', 'implies', 'an', 'agent', 'interacting', 'with', 'the', 'environment', 'to', 'learn', 'and', 'take', 'actions', 'that', 'maximize', 'its', 'chance', 'of', 'successfully', 'achieving', 'its', 'goals', 'as', 'of', 'many', 'sources', 'continue', 'to', 'assert', 'that', 'ml', 'remains', 'a', 'subfield', 'of', 'ai', 'others', 'have', 'the', 'view', 'that', 'not', 'all', 'ml', 'is', 'part', 'of', 'ai', 'but', 'only', 'an', 'intelligent', 'subset', 'of', 'ml', 'should', 'be', 'considered', 'ai', 'data', 'mining', 'edit', 'machine', 'learning', 'and', 'data', 'mining', 'often', 'employ', 'the', 'same', 'methods', 'and', 'overlap', 'significantly', 'but', 'while', 'machine', 'learning', 'focuses', 'on', 'prediction', 'based', 'on', 'known', 'properties', 'learned', 'from', 'the', 'training', 'data', 'data', 'mining', 'focuses', 'on', 'the', 'discovery', 'of', 'previously', 'unknown', 'properties', 'in', 'the', 'data', 'this', 'is', 'the', 'analysis', 'step', 'of', 'knowledge', 'discovery', 'in', 'databases', 'data', 'mining', 'uses', 'many', 'machine', 'learning', 'methods', 'but', 'with', 'different', 'goals', 'on', 'the', 'other', 'hand', 'machine', 'learning', 'also', 'employs', 'data', 'mining', 'methods', 'as', 'unsupervised', 'learning', 'or', 'as', 'a', 'preprocessing', 'step', 'to', 'improve', 'learner', 'accuracy', 'much', 'of', 'the', 'confusion', 'between', 'these', 'two', 'research', 'communities', 'which', 'do', 'often', 'have', 'separate', 'conferences', 'and', 'separate', 'journals', 'ecml', 'pkdd', 'being', 'a', 'major', 'exception', 'comes', 'from', 'the', 'basic', 'assumptions', 'they', 'work', 'with', 'in', 'machine', 'learning', 'performance', 'is', 'usually', 'evaluated', 'with', 'respect', 'to', 'the', 'ability', 'to', 'reproduce', 'known', 'knowledge', 'while', 'in', 'knowledge', 'discovery', 'and', 'data', 'mining', 'kdd', 'the', 'key', 'task', 'is', 'the', 'discovery', 'of', 'previously', 'unknown', 'knowledge', 'evaluated', 'with', 'respect', 'to', 'known', 'knowledge', 'an', 'uninformed', 'unsupervised', 'method', 'will', 'easily', 'be', 'outperformed', 'by', 'other', 'supervised', 'methods', 'while', 'in', 'a', 'typical', 'kdd', 'task', 'supervised', 'methods', 'cannot', 'be', 'used', 'due', 'to', 'the', 'unavailability', 'of', 'training', 'data', 'optimization', 'edit', 'machine', 'learning', 'also', 'has', 'intimate', 'ties', 'to', 'optimization', 'many', 'learning', 'problems', 'are', 'formulated', 'as', 'minimization', 'of', 'some', 'loss', 'function', 'on', 'a', 'training', 'set', 'of', 'examples', 'loss', 'functions', 'express', 'the', 'discrepancy', 'between', 'the', 'predictions', 'of', 'the', 'model', 'being', 'trained', 'and', 'the', 'actual', 'problem', 'instances', 'for', 'example', 'in', 'classification', 'one', 'wants', 'to', 'assign', 'a', 'label', 'to', 'instances', 'and', 'models', 'are', 'trained', 'to', 'correctly', 'predict', 'the', 'pre', 'assigned', 'labels', 'of', 'a', 'set', 'of', 'examples', 'generalization', 'edit', 'the', 'difference', 'between', 'optimization', 'and', 'machine', 'learning', 'arises', 'from', 'the', 'goal', 'of', 'generalization', 'while', 'optimization', 'algorithms', 'can', 'minimize', 'the', 'loss', 'on', 'a', 'training', 'set', 'machine', 'learning', 'is', 'concerned', 'with', 'minimizing', 'the', 'loss', 'on', 'unseen', 'samples', 'characterizing', 'the', 'generalization', 'of', 'various', 'learning', 'algorithms', 'is', 'an', 'active', 'topic', 'of', 'current', 'research', 'especially', 'for', 'deep', 'learning', 'algorithms', 'statistics', 'edit', 'machine', 'learning', 'and', 'statistics', 'are', 'closely', 'related', 'fields', 'in', 'terms', 'of', 'methods', 'but', 'distinct', 'in', 'their', 'principal', 'goal', 'statistics', 'draws', 'population', 'inferences', 'from', 'a', 'sample', 'while', 'machine', 'learning', 'finds', 'generalizable', 'predictive', 'patterns', 'according', 'to', 'michael', 'i', 'jordan', 'the', 'ideas', 'of', 'machine', 'learning', 'from', 'methodological', 'principles', 'to', 'theoretical', 'tools', 'have', 'had', 'a', 'long', 'pre', 'history', 'in', 'statistics', 'he', 'also', 'suggested', 'the', 'term', 'data', 'science', 'as', 'a', 'placeholder', 'to', 'call', 'the', 'overall', 'field', 'leo', 'breiman', 'distinguished', 'two', 'statistical', 'modeling', 'paradigms', 'data', 'model', 'and', 'algorithmic', 'model', 'wherein', 'algorithmic', 'model', 'means', 'more', 'or', 'less', 'the', 'machine', 'learning', 'algorithms', 'like', 'random', 'forest', 'some', 'statisticians', 'have', 'adopted', 'methods', 'from', 'machine', 'learning', 'leading', 'to', 'a', 'combined', 'field', 'that', 'they', 'call', 'statistical', 'learning', 'theory', 'edit', 'main', 'articles', 'computational', 'learning', 'theory', 'and', 'statistical', 'learning', 'theory', 'a', 'core', 'objective', 'of', 'a', 'learner', 'is', 'to', 'generalize', 'from', 'its', 'experience', 'generalization', 'in', 'this', 'context', 'is', 'the', 'ability', 'of', 'a', 'learning', 'machine', 'to', 'perform', 'accurately', 'on', 'new', 'unseen', 'examples', 'tasks', 'after', 'having', 'experienced', 'a', 'learning', 'data', 'set', 'the', 'training', 'examples', 'come', 'from', 'some', 'generally', 'unknown', 'probability', 'distribution', 'considered', 'representative', 'of', 'the', 'space', 'of', 'occurrences', 'and', 'the', 'learner', 'has', 'to', 'build', 'a', 'general', 'model', 'about', 'this', 'space', 'that', 'enables', 'it', 'to', 'produce', 'sufficiently', 'accurate', 'predictions', 'in', 'new', 'cases', 'the', 'computational', 'analysis', 'of', 'machine', 'learning', 'algorithms', 'and', 'their', 'performance', 'is', 'a', 'branch', 'of', 'theoretical', 'computer', 'science', 'known', 'as', 'computational', 'learning', 'theory', 'because', 'training', 'sets', 'are', 'finite', 'and', 'the', 'future', 'is', 'uncertain', 'learning', 'theory', 'usually', 'does', 'not', 'yield', 'guarantees', 'of', 'the', 'performance', 'of', 'algorithms', 'instead', 'probabilistic', 'bounds', 'on', 'the', 'performance', 'are', 'quite', 'common', 'the', 'bias', 'variance', 'decomposition', 'is', 'one', 'way', 'to', 'quantify', 'generalization', 'error', 'for', 'the', 'best', 'performance', 'in', 'the', 'context', 'of', 'generalization', 'the', 'complexity', 'of', 'the', 'hypothesis', 'should', 'match', 'the', 'complexity', 'of', 'the', 'function', 'underlying', 'the', 'data', 'if', 'the', 'hypothesis', 'is', 'less', 'complex', 'than', 'the', 'function', 'then', 'the', 'model', 'has', 'under', 'fitted', 'the', 'data', 'if', 'the', 'complexity', 'of', 'the', 'model', 'is', 'increased', 'in', 'response', 'then', 'the', 'training', 'error', 'decreases', 'but', 'if', 'the', 'hypothesis', 'is', 'too', 'complex', 'then', 'the', 'model', 'is', 'subject', 'to', 'overfitting', 'and', 'generalization', 'will', 'be', 'poorer', 'in', 'addition', 'to', 'performance', 'bounds', 'learning', 'theorists', 'study', 'the', 'time', 'complexity', 'and', 'feasibility', 'of', 'learning', 'in', 'computational', 'learning', 'theory', 'a', 'computation', 'is', 'considered', 'feasible', 'if', 'it', 'can', 'be', 'done', 'in', 'polynomial', 'time', 'there', 'are', 'two', 'kinds', 'of', 'time', 'complexity', 'results', 'positive', 'results', 'show', 'that', 'a', 'certain', 'class', 'of', 'functions', 'can', 'be', 'learned', 'in', 'polynomial', 'time', 'negative', 'results', 'show', 'that', 'certain', 'classes', 'cannot', 'be', 'learned', 'in', 'polynomial', 'time', 'approaches', 'edit', 'machine', 'learning', 'approaches', 'are', 'traditionally', 'divided', 'into', 'three', 'broad', 'categories', 'depending', 'on', 'the', 'nature', 'of', 'the', 'signal', 'or', 'feedback', 'available', 'to', 'the', 'learning', 'system', 'supervised', 'learning', 'the', 'computer', 'is', 'presented', 'with', 'example', 'inputs', 'and', 'their', 'desired', 'outputs', 'given', 'by', 'a', 'teacher', 'and', 'the', 'goal', 'is', 'to', 'learn', 'a', 'general', 'rule', 'that', 'maps', 'inputs', 'to', 'outputs', 'unsupervised', 'learning', 'no', 'labels', 'are', 'given', 'to', 'the', 'learning', 'algorithm', 'leaving', 'it', 'on', 'its', 'own', 'to', 'find', 'structure', 'in', 'its', 'input', 'unsupervised', 'learning', 'can', 'be', 'a', 'goal', 'in', 'itself', 'discovering', 'hidden', 'patterns', 'in', 'data', 'or', 'a', 'means', 'towards', 'an', 'end', 'feature', 'learning', 'reinforcement', 'learning', 'a', 'computer', 'program', 'interacts', 'with', 'a', 'dynamic', 'environment', 'in', 'which', 'it', 'must', 'perform', 'a', 'certain', 'goal', 'such', 'as', 'driving', 'a', 'vehicle', 'or', 'playing', 'a', 'game', 'against', 'an', 'opponent', 'as', 'it', 'navigates', 'its', 'problem', 'space', 'the', 'program', 'is', 'provided', 'feedback', 'that', 's', 'analogous', 'to', 'rewards', 'which', 'it', 'tries', 'to', 'maximize', 'supervised', 'learning', 'edit', 'main', 'article', 'supervised', 'learning', 'a', 'support', 'vector', 'machine', 'is', 'a', 'supervised', 'learning', 'model', 'that', 'divides', 'the', 'data', 'into', 'regions', 'separated', 'by', 'a', 'linear', 'boundary', 'here', 'the', 'linear', 'boundary', 'divides', 'the', 'black', 'circles', 'from', 'the', 'white', 'supervised', 'learning', 'algorithms', 'build', 'a', 'mathematical', 'model', 'of', 'a', 'set', 'of', 'data', 'that', 'contains', 'both', 'the', 'inputs', 'and', 'the', 'desired', 'outputs', 'the', 'data', 'is', 'known', 'as', 'training', 'data', 'and', 'consists', 'of', 'a', 'set', 'of', 'training', 'examples', 'each', 'training', 'example', 'has', 'one', 'or', 'more', 'inputs', 'and', 'the', 'desired', 'output', 'also', 'known', 'as', 'a', 'supervisory', 'signal', 'in', 'the', 'mathematical', 'model', 'each', 'training', 'example', 'is', 'represented', 'by', 'an', 'array', 'or', 'vector', 'sometimes', 'called', 'a', 'feature', 'vector', 'and', 'the', 'training', 'data', 'is', 'represented', 'by', 'a', 'matrix', 'through', 'iterative', 'optimization', 'of', 'an', 'objective', 'function', 'supervised', 'learning', 'algorithms', 'learn', 'a', 'function', 'that', 'can', 'be', 'used', 'to', 'predict', 'the', 'output', 'associated', 'with', 'new', 'inputs', 'an', 'optimal', 'function', 'will', 'allow', 'the', 'algorithm', 'to', 'correctly', 'determine', 'the', 'output', 'for', 'inputs', 'that', 'were', 'not', 'a', 'part', 'of', 'the', 'training', 'data', 'an', 'algorithm', 'that', 'improves', 'the', 'accuracy', 'of', 'its', 'outputs', 'or', 'predictions', 'over', 'time', 'is', 'said', 'to', 'have', 'learned', 'to', 'perform', 'that', 'task', 'types', 'of', 'supervised', 'learning', 'algorithms', 'include', 'active', 'learning', 'classification', 'and', 'regression', 'classification', 'algorithms', 'are', 'used', 'when', 'the', 'outputs', 'are', 'restricted', 'to', 'a', 'limited', 'set', 'of', 'values', 'and', 'regression', 'algorithms', 'are', 'used', 'when', 'the', 'outputs', 'may', 'have', 'any', 'numerical', 'value', 'within', 'a', 'range', 'as', 'an', 'example', 'for', 'a', 'classification', 'algorithm', 'that', 'filters', 'emails', 'the', 'input', 'would', 'be', 'an', 'incoming', 'email', 'and', 'the', 'output', 'would', 'be', 'the', 'name', 'of', 'the', 'folder', 'in', 'which', 'to', 'file', 'the', 'email', 'similarity', 'learning', 'is', 'an', 'area', 'of', 'supervised', 'machine', 'learning', 'closely', 'related', 'to', 'regression', 'and', 'classification', 'but', 'the', 'goal', 'is', 'to', 'learn', 'from', 'examples', 'using', 'a', 'similarity', 'function', 'that', 'measures', 'how', 'similar', 'or', 'related', 'two', 'objects', 'are', 'it', 'has', 'applications', 'in', 'ranking', 'recommendation', 'systems', 'visual', 'identity', 'tracking', 'face', 'verification', 'and', 'speaker', 'verification', 'unsupervised', 'learning', 'edit', 'main', 'article', 'unsupervised', 'learningsee', 'also', 'cluster', 'analysis', 'unsupervised', 'learning', 'algorithms', 'take', 'a', 'set', 'of', 'data', 'that', 'contains', 'only', 'inputs', 'and', 'find', 'structure', 'in', 'the', 'data', 'like', 'grouping', 'or', 'clustering', 'of', 'data', 'points', 'the', 'algorithms', 'therefore', 'learn', 'from', 'test', 'data', 'that', 'has', 'not', 'been', 'labeled', 'classified', 'or', 'categorized', 'instead', 'of', 'responding', 'to', 'feedback', 'unsupervised', 'learning', 'algorithms', 'identify', 'commonalities', 'in', 'the', 'data', 'and', 'react', 'based', 'on', 'the', 'presence', 'or', 'absence', 'of', 'such', 'commonalities', 'in', 'each', 'new', 'piece', 'of', 'data', 'a', 'central', 'application', 'of', 'unsupervised', 'learning', 'is', 'in', 'the', 'field', 'of', 'density', 'estimation', 'in', 'statistics', 'such', 'as', 'finding', 'the', 'probability', 'density', 'function', 'though', 'unsupervised', 'learning', 'encompasses', 'other', 'domains', 'involving', 'summarizing', 'and', 'explaining', 'data', 'features', 'cluster', 'analysis', 'is', 'the', 'assignment', 'of', 'a', 'set', 'of', 'observations', 'into', 'subsets', 'called', 'clusters', 'so', 'that', 'observations', 'within', 'the', 'same', 'cluster', 'are', 'similar', 'according', 'to', 'one', 'or', 'more', 'predesignated', 'criteria', 'while', 'observations', 'drawn', 'from', 'different', 'clusters', 'are', 'dissimilar', 'different', 'clustering', 'techniques', 'make', 'different', 'assumptions', 'on', 'the', 'structure', 'of', 'the', 'data', 'often', 'defined', 'by', 'some', 'similarity', 'metric', 'and', 'evaluated', 'for', 'example', 'by', 'internal', 'compactness', 'or', 'the', 'similarity', 'between', 'members', 'of', 'the', 'same', 'cluster', 'and', 'separation', 'the', 'difference', 'between', 'clusters', 'other', 'methods', 'are', 'based', 'on', 'estimated', 'density', 'and', 'graph', 'connectivity', 'semi', 'supervised', 'learning', 'edit', 'main', 'article', 'semi', 'supervised', 'learning', 'semi', 'supervised', 'learning', 'falls', 'between', 'unsupervised', 'learning', 'without', 'any', 'labeled', 'training', 'data', 'and', 'supervised', 'learning', 'with', 'completely', 'labeled', 'training', 'data', 'some', 'of', 'the', 'training', 'examples', 'are', 'missing', 'training', 'labels', 'yet', 'many', 'machine', 'learning', 'researchers', 'have', 'found', 'that', 'unlabeled', 'data', 'when', 'used', 'in', 'conjunction', 'with', 'a', 'small', 'amount', 'of', 'labeled', 'data', 'can', 'produce', 'a', 'considerable', 'improvement', 'in', 'learning', 'accuracy', 'in', 'weakly', 'supervised', 'learning', 'the', 'training', 'labels', 'are', 'noisy', 'limited', 'or', 'imprecise', 'however', 'these', 'labels', 'are', 'often', 'cheaper', 'to', 'obtain', 'resulting', 'in', 'larger', 'effective', 'training', 'sets', 'reinforcement', 'learning', 'edit', 'main', 'article', 'reinforcement', 'learning', 'reinforcement', 'learning', 'is', 'an', 'area', 'of', 'machine', 'learning', 'concerned', 'with', 'how', 'software', 'agents', 'ought', 'to', 'take', 'actions', 'in', 'an', 'environment', 'so', 'as', 'to', 'maximize', 'some', 'notion', 'of', 'cumulative', 'reward', 'due', 'to', 'its', 'generality', 'the', 'field', 'is', 'studied', 'in', 'many', 'other', 'disciplines', 'such', 'as', 'game', 'theory', 'control', 'theory', 'operations', 'research', 'information', 'theory', 'simulation', 'based', 'optimization', 'multi', 'agent', 'systems', 'swarm', 'intelligence', 'statistics', 'and', 'genetic', 'algorithms', 'in', 'machine', 'learning', 'the', 'environment', 'is', 'typically', 'represented', 'as', 'a', 'markov', 'decision', 'process', 'mdp', 'many', 'reinforcement', 'learning', 'algorithms', 'use', 'dynamic', 'programming', 'techniques', 'reinforcement', 'learning', 'algorithms', 'do', 'not', 'assume', 'knowledge', 'of', 'an', 'exact', 'mathematical', 'model', 'of', 'the', 'mdp', 'and', 'are', 'used', 'when', 'exact', 'models', 'are', 'infeasible', 'reinforcement', 'learning', 'algorithms', 'are', 'used', 'in', 'autonomous', 'vehicles', 'or', 'in', 'learning', 'to', 'play', 'a', 'game', 'against', 'a', 'human', 'opponent', 'dimensionality', 'reduction', 'edit', 'dimensionality', 'reduction', 'is', 'a', 'process', 'of', 'reducing', 'the', 'number', 'of', 'random', 'variables', 'under', 'consideration', 'by', 'obtaining', 'a', 'set', 'of', 'principal', 'variables', 'in', 'other', 'words', 'it', 'is', 'a', 'process', 'of', 'reducing', 'the', 'dimension', 'of', 'the', 'feature', 'set', 'also', 'called', 'number', 'of', 'features', 'most', 'of', 'the', 'dimensionality', 'reduction', 'techniques', 'can', 'be', 'considered', 'as', 'either', 'feature', 'elimination', 'or', 'extraction', 'one', 'of', 'the', 'popular', 'methods', 'of', 'dimensionality', 'reduction', 'is', 'principal', 'component', 'analysis', 'pca', 'pca', 'involves', 'changing', 'higher', 'dimensional', 'data', 'e', 'g', 'd', 'to', 'a', 'smaller', 'space', 'e', 'g', 'd', 'this', 'results', 'in', 'a', 'smaller', 'dimension', 'of', 'data', 'd', 'instead', 'of', 'd', 'while', 'keeping', 'all', 'original', 'variables', 'in', 'the', 'model', 'without', 'changing', 'the', 'data', 'the', 'manifold', 'hypothesis', 'proposes', 'that', 'high', 'dimensional', 'data', 'sets', 'lie', 'along', 'low', 'dimensional', 'manifolds', 'and', 'many', 'dimensionality', 'reduction', 'techniques', 'make', 'this', 'assumption', 'leading', 'to', 'the', 'area', 'of', 'manifold', 'learning', 'and', 'manifold', 'regularization', 'other', 'types', 'edit', 'other', 'approaches', 'have', 'been', 'developed', 'which', 'don', 't', 'fit', 'neatly', 'into', 'this', 'three', 'fold', 'categorisation', 'and', 'sometimes', 'more', 'than', 'one', 'is', 'used', 'by', 'the', 'same', 'machine', 'learning', 'system', 'for', 'example', 'topic', 'modeling', 'meta', 'learning', 'as', 'of', 'deep', 'learning', 'has', 'become', 'the', 'dominant', 'approach', 'for', 'much', 'ongoing', 'work', 'in', 'the', 'field', 'of', 'machine', 'learning', 'self', 'learning', 'edit', 'self', 'learning', 'as', 'a', 'machine', 'learning', 'paradigm', 'was', 'introduced', 'in', 'along', 'with', 'a', 'neural', 'network', 'capable', 'of', 'self', 'learning', 'named', 'crossbar', 'adaptive', 'array', 'caa', 'it', 'is', 'a', 'learning', 'with', 'no', 'external', 'rewards', 'and', 'no', 'external', 'teacher', 'advice', 'the', 'caa', 'self', 'learning', 'algorithm', 'computes', 'in', 'a', 'crossbar', 'fashion', 'both', 'decisions', 'about', 'actions', 'and', 'emotions', 'feelings', 'about', 'consequence', 'situations', 'the', 'system', 'is', 'driven', 'by', 'the', 'interaction', 'between', 'cognition', 'and', 'emotion', 'the', 'self', 'learning', 'algorithm', 'updates', 'a', 'memory', 'matrix', 'w', 'w', 'a', 's', 'such', 'that', 'in', 'each', 'iteration', 'executes', 'the', 'following', 'machine', 'learning', 'routine', 'in', 'situation', 's', 'perform', 'an', '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', 'it', 'is', 'a', 'system', 'with', 'only', 'one', 'input', 'situation', 's', 'and', 'only', 'one', 'output', 'action', 'or', 'behavior', 'a', 'there', 'is', 'neither', 'a', 'separate', 'reinforcement', 'input', 'nor', 'an', 'advice', 'input', 'from', 'the', 'environment', 'the', 'backpropagated', 'value', 'secondary', 'reinforcement', 'is', 'the', 'emotion', 'toward', 'the', 'consequence', 'situation', 'the', 'caa', 'exists', 'in', 'two', 'environments', 'one', 'is', 'the', 'behavioral', 'environment', 'where', 'it', 'behaves', 'and', 'the', 'other', 'is', 'the', 'genetic', 'environment', 'wherefrom', 'it', 'initially', 'and', 'only', 'once', 'receives', 'initial', 'emotions', 'about', 'situations', 'to', 'be', 'encountered', 'in', 'the', 'behavioral', 'environment', 'after', 'receiving', 'the', 'genome', 'species', 'vector', 'from', 'the', 'genetic', 'environment', 'the', 'caa', 'learns', 'a', 'goal', 'seeking', 'behavior', 'in', 'an', 'environment', 'that', 'contains', 'both', 'desirable', 'and', 'undesirable', 'situations', 'feature', 'learning', 'edit', 'main', 'article', 'feature', 'learning', 'several', 'learning', 'algorithms', 'aim', 'at', 'discovering', 'better', 'representations', 'of', 'the', 'inputs', 'provided', 'during', 'training', 'classic', 'examples', 'include', 'principal', 'components', 'analysis', 'and', 'cluster', 'analysis', 'feature', 'learning', 'algorithms', 'also', 'called', 'representation', 'learning', 'algorithms', 'often', 'attempt', 'to', 'preserve', 'the', 'information', 'in', 'their', 'input', 'but', 'also', 'transform', 'it', 'in', 'a', 'way', 'that', 'makes', 'it', 'useful', 'often', 'as', 'a', 'pre', 'processing', 'step', 'before', 'performing', 'classification', 'or', 'predictions', 'this', 'technique', 'allows', 'reconstruction', 'of', 'the', 'inputs', 'coming', 'from', 'the', 'unknown', 'data', 'generating', 'distribution', 'while', 'not', 'being', 'necessarily', 'faithful', 'to', 'configurations', 'that', 'are', 'implausible', 'under', 'that', 'distribution', 'this', 'replaces', 'manual', 'feature', 'engineering', 'and', 'allows', 'a', 'machine', 'to', 'both', 'learn', 'the', 'features', 'and', 'use', 'them', 'to', 'perform', 'a', 'specific', 'task', 'feature', 'learning', 'can', 'be', 'either', 'supervised', 'or', 'unsupervised', 'in', 'supervised', 'feature', 'learning', 'features', 'are', 'learned', 'using', 'labeled', 'input', 'data', 'examples', 'include', 'artificial', 'neural', 'networks', 'multilayer', 'perceptrons', 'and', 'supervised', 'dictionary', 'learning', 'in', 'unsupervised', 'feature', 'learning', 'features', 'are', 'learned', 'with', 'unlabeled', 'input', 'data', 'examples', 'include', 'dictionary', 'learning', 'independent', 'component', 'analysis', 'autoencoders', 'matrix', 'factorization', 'and', 'various', 'forms', 'of', 'clustering', 'manifold', 'learning', 'algorithms', 'attempt', 'to', 'do', 'so', 'under', 'the', 'constraint', 'that', 'the', 'learned', 'representation', 'is', 'low', 'dimensional', 'sparse', 'coding', 'algorithms', 'attempt', 'to', 'do', 'so', 'under', 'the', 'constraint', 'that', 'the', 'learned', 'representation', 'is', 'sparse', 'meaning', 'that', 'the', 'mathematical', 'model', 'has', 'many', 'zeros', 'multilinear', 'subspace', 'learning', 'algorithms', 'aim', 'to', 'learn', 'low', 'dimensional', 'representations', 'directly', 'from', 'tensor', 'representations', 'for', 'multidimensional', 'data', 'without', 'reshaping', 'them', 'into', 'higher', 'dimensional', 'vectors', 'deep', 'learning', 'algorithms', 'discover', 'multiple', 'levels', 'of', 'representation', 'or', 'a', 'hierarchy', 'of', 'features', 'with', 'higher', 'level', 'more', 'abstract', 'features', 'defined', 'in', 'terms', 'of', 'or', 'generating', 'lower', 'level', 'features', 'it', 'has', 'been', 'argued', 'that', 'an', 'intelligent', 'machine', 'is', 'one', 'that', 'learns', 'a', 'representation', 'that', 'disentangles', 'the', 'underlying', 'factors', 'of', 'variation', 'that', 'explain', 'the', 'observed', 'data', 'feature', 'learning', 'is', 'motivated', 'by', 'the', 'fact', 'that', 'machine', 'learning', 'tasks', 'such', 'as', 'classification', 'often', 'require', 'input', 'that', 'is', 'mathematically', 'and', 'computationally', 'convenient', 'to', 'process', 'however', 'real', 'world', 'data', 'such', 'as', 'images', 'video', 'and', 'sensory', 'data', 'has', 'not', 'yielded', 'to', 'attempts', 'to', 'algorithmically', 'define', 'specific', 'features', 'an', 'alternative', 'is', 'to', 'discover', 'such', 'features', 'or', 'representations', 'through', 'examination', 'without', 'relying', 'on', 'explicit', 'algorithms', 'sparse', 'dictionary', 'learning', 'edit', 'main', 'article', 'sparse', 'dictionary', 'learning', 'sparse', 'dictionary', 'learning', 'is', 'a', 'feature', 'learning', 'method', 'where', 'a', 'training', 'example', 'is', 'represented', 'as', 'a', 'linear', 'combination', 'of', 'basis', 'functions', 'and', 'is', 'assumed', 'to', 'be', 'a', 'sparse', 'matrix', 'the', 'method', 'is', 'strongly', 'np', 'hard', 'and', 'difficult', 'to', 'solve', 'approximately', 'a', 'popular', 'heuristic', 'method', 'for', 'sparse', 'dictionary', 'learning', 'is', 'the', 'k', 'svd', 'algorithm', 'sparse', 'dictionary', 'learning', 'has', 'been', 'applied', 'in', 'several', 'contexts', 'in', 'classification', 'the', 'problem', 'is', 'to', 'determine', 'the', 'class', 'to', 'which', 'a', 'previously', 'unseen', 'training', 'example', 'belongs', 'for', 'a', 'dictionary', 'where', 'each', 'class', 'has', 'already', 'been', 'built', 'a', 'new', 'training', 'example', 'is', 'associated', 'with', 'the', 'class', 'that', 'is', 'best', 'sparsely', 'represented', 'by', 'the', 'corresponding', 'dictionary', 'sparse', 'dictionary', 'learning', 'has', 'also', 'been', 'applied', 'in', 'image', 'de', 'noising', 'the', 'key', 'idea', 'is', 'that', 'a', 'clean', 'image', 'patch', 'can', 'be', 'sparsely', 'represented', 'by', 'an', 'image', 'dictionary', 'but', 'the', 'noise', 'cannot', 'anomaly', 'detection', 'edit', 'main', 'article', 'anomaly', 'detection', 'in', 'data', 'mining', 'anomaly', 'detection', 'also', 'known', 'as', 'outlier', 'detection', 'is', 'the', 'identification', 'of', 'rare', 'items', 'events', 'or', 'observations', 'which', 'raise', 'suspicions', 'by', 'differing', 'significantly', 'from', 'the', 'majority', 'of', 'the', 'data', 'typically', 'the', 'anomalous', 'items', 'represent', 'an', 'issue', 'such', 'as', 'bank', 'fraud', 'a', 'structural', 'defect', 'medical', 'problems', 'or', 'errors', 'in', 'a', 'text', 'anomalies', 'are', 'referred', 'to', 'as', 'outliers', 'novelties', 'noise', 'deviations', 'and', 'exceptions', 'in', 'particular', 'in', 'the', 'context', 'of', 'abuse', 'and', 'network', 'intrusion', 'detection', 'the', 'interesting', 'objects', 'are', 'often', 'not', 'rare', 'objects', 'but', 'unexpected', 'bursts', 'of', 'inactivity', 'this', 'pattern', 'does', 'not', 'adhere', 'to', 'the', 'common', 'statistical', 'definition', 'of', 'an', 'outlier', 'as', 'a', 'rare', 'object', 'and', 'many', 'outlier', 'detection', 'methods', 'in', 'particular', 'unsupervised', 'algorithms', 'will', 'fail', 'on', 'such', 'data', 'unless', 'it', 'has', 'been', 'aggregated', 'appropriately', 'instead', 'a', 'cluster', 'analysis', 'algorithm', 'may', 'be', 'able', 'to', 'detect', 'the', 'micro', 'clusters', 'formed', 'by', 'these', 'patterns', 'three', 'broad', 'categories', 'of', 'anomaly', 'detection', 'techniques', 'exist', 'unsupervised', 'anomaly', 'detection', 'techniques', 'detect', 'anomalies', 'in', 'an', 'unlabeled', 'test', 'data', 'set', 'under', 'the', 'assumption', 'that', 'the', 'majority', 'of', 'the', 'instances', 'in', 'the', 'data', 'set', 'are', 'normal', 'by', 'looking', 'for', 'instances', 'that', 'seem', 'to', 'fit', 'least', 'to', 'the', 'remainder', 'of', 'the', 'data', 'set', 'supervised', 'anomaly', 'detection', 'techniques', 'require', 'a', 'data', 'set', 'that', 'has', 'been', 'labeled', 'as', 'normal', 'and', 'abnormal', 'and', 'involves', 'training', 'a', 'classifier', 'the', 'key', 'difference', 'to', 'many', 'other', 'statistical', 'classification', 'problems', 'is', 'the', 'inherently', 'unbalanced', 'nature', 'of', 'outlier', 'detection', 'semi', 'supervised', 'anomaly', 'detection', 'techniques', 'construct', 'a', 'model', 'representing', 'normal', 'behavior', 'from', 'a', 'given', 'normal', 'training', 'data', 'set', 'and', 'then', 'test', 'the', 'likelihood', 'of', 'a', 'test', 'instance', 'to', 'be', 'generated', 'by', 'the', 'model', 'robot', 'learning', 'edit', 'robot', 'learning', 'is', 'inspired', 'by', 'a', 'multitude', 'of', 'machine', 'learning', 'methods', 'starting', 'from', 'supervised', 'learning', 'reinforcement', 'learning', 'and', 'finally', 'meta', 'learning', 'e', 'g', 'maml', 'association', 'rules', 'edit', 'main', 'article', 'association', 'rule', 'learningsee', 'also', 'inductive', 'logic', 'programming', 'association', 'rule', 'learning', 'is', 'a', 'rule', 'based', 'machine', 'learning', 'method', 'for', 'discovering', 'relationships', 'between', 'variables', 'in', 'large', 'databases', 'it', 'is', 'intended', 'to', 'identify', 'strong', 'rules', 'discovered', 'in', 'databases', 'using', 'some', 'measure', 'of', 'interestingness', 'rule', 'based', 'machine', 'learning', 'is', 'a', 'general', 'term', 'for', 'any', 'machine', 'learning', 'method', 'that', 'identifies', 'learns', 'or', 'evolves', 'rules', 'to', 'store', 'manipulate', 'or', 'apply', 'knowledge', 'the', 'defining', 'characteristic', 'of', 'a', 'rule', 'based', 'machine', 'learning', 'algorithm', 'is', 'the', 'identification', 'and', 'utilization', 'of', 'a', 'set', 'of', 'relational', 'rules', 'that', 'collectively', 'represent', 'the', 'knowledge', 'captured', 'by', 'the', 'system', 'this', 'is', 'in', 'contrast', 'to', 'other', 'machine', 'learning', 'algorithms', 'that', 'commonly', 'identify', 'a', 'singular', 'model', 'that', 'can', 'be', 'universally', 'applied', 'to', 'any', 'instance', 'in', 'order', 'to', 'make', 'a', 'prediction', 'rule', 'based', 'machine', 'learning', 'approaches', 'include', 'learning', 'classifier', 'systems', 'association', 'rule', 'learning', 'and', 'artificial', 'immune', 'systems', 'based', 'on', 'the', 'concept', 'of', 'strong', 'rules', 'rakesh', 'agrawal', 'tomasz', 'imieliński', 'and', 'arun', 'swami', 'introduced', 'association', 'rules', 'for', 'discovering', 'regularities', 'between', 'products', 'in', 'large', 'scale', 'transaction', 'data', 'recorded', 'by', 'point', 'of', 'sale', 'pos', 'systems', 'in', 'supermarkets', 'for', 'example', 'the', 'rule', 'o', 'n', 'i', 'o', 'n', 's', 'p', 'o', 't', 'a', 't', 'o', 'e', 's', 'b', 'u', 'r', 'g', 'e', 'r', 'displaystyle', 'mathrm', 'onions', 'potatoes', 'rightarrow', 'mathrm', 'burger', 'found', 'in', 'the', 'sales', 'data', 'of', 'a', 'supermarket', 'would', 'indicate', 'that', 'if', 'a', 'customer', 'buys', 'onions', 'and', 'potatoes', 'together', 'they', 'are', 'likely', 'to', 'also', 'buy', 'hamburger', 'meat', 'such', 'information', 'can', 'be', 'used', 'as', 'the', 'basis', 'for', 'decisions', 'about', 'marketing', 'activities', 'such', 'as', 'promotional', 'pricing', 'or', 'product', 'placements', 'in', 'addition', 'to', 'market', 'basket', 'analysis', 'association', 'rules', 'are', 'employed', 'today', 'in', 'application', 'areas', 'including', 'web', 'usage', 'mining', 'intrusion', 'detection', 'continuous', 'production', 'and', 'bioinformatics', 'in', 'contrast', 'with', 'sequence', 'mining', 'association', 'rule', 'learning', 'typically', 'does', 'not', 'consider', 'the', 'order', 'of', 'items', 'either', 'within', 'a', 'transaction', 'or', 'across', 'transactions', 'learning', 'classifier', 'systems', 'lcs', 'are', 'a', 'family', 'of', 'rule', 'based', 'machine', 'learning', 'algorithms', 'that', 'combine', 'a', 'discovery', 'component', 'typically', 'a', 'genetic', 'algorithm', 'with', 'a', 'learning', 'component', 'performing', 'either', 'supervised', 'learning', 'reinforcement', 'learning', 'or', 'unsupervised', 'learning', 'they', 'seek', 'to', 'identify', 'a', 'set', 'of', 'context', 'dependent', 'rules', 'that', 'collectively', 'store', 'and', 'apply', 'knowledge', 'in', 'a', 'piecewise', 'manner', 'in', 'order', 'to', 'make', 'predictions', 'inductive', 'logic', 'programming', 'ilp', 'is', 'an', 'approach', 'to', 'rule', 'learning', 'using', 'logic', 'programming', 'as', 'a', 'uniform', 'representation', 'for', 'input', 'examples', 'background', 'knowledge', 'and', 'hypotheses', 'given', 'an', 'encoding', 'of', 'the', 'known', 'background', 'knowledge', 'and', 'a', 'set', 'of', 'examples', 'represented', 'as', 'a', 'logical', 'database', 'of', 'facts', 'an', 'ilp', 'system', 'will', 'derive', 'a', 'hypothesized', 'logic', 'program', 'that', 'entails', 'all', 'positive', 'and', 'no', 'negative', 'examples', 'inductive', 'programming', 'is', 'a', 'related', 'field', 'that', 'considers', 'any', 'kind', 'of', 'programming', 'language', 'for', 'representing', 'hypotheses', 'and', 'not', 'only', 'logic', 'programming', 'such', 'as', 'functional', 'programs', 'inductive', 'logic', 'programming', 'is', 'particularly', 'useful', 'in', 'bioinformatics', 'and', 'natural', 'language', 'processing', 'gordon', 'plotkin', 'and', 'ehud', 'shapiro', 'laid', 'the', 'initial', 'theoretical', 'foundation', 'for', 'inductive', 'machine', 'learning', 'in', 'a', 'logical', 'setting', 'shapiro', 'built', 'their', 'first', 'implementation', 'model', 'inference', 'system', 'in', 'a', 'prolog', 'program', 'that', 'inductively', 'inferred', 'logic', 'programs', 'from', 'positive', 'and', 'negative', 'examples', 'the', 'term', 'inductive', 'here', 'refers', 'to', 'philosophical', 'induction', 'suggesting', 'a', 'theory', 'to', 'explain', 'observed', 'facts', 'rather', 'than', 'mathematical', 'induction', 'proving', 'a', 'property', 'for', 'all', 'members', 'of', 'a', 'well', 'ordered', 'set', 'models', 'edit', 'performing', 'machine', 'learning', 'involves', 'creating', 'a', 'model', 'which', 'is', 'trained', 'on', 'some', 'training', 'data', 'and', 'then', 'can', 'process', 'additional', 'data', 'to', 'make', 'predictions', 'various', 'types', 'of', 'models', 'have', 'been', 'used', 'and', 'researched', 'for', 'machine', 'learning', 'systems', 'artificial', 'neural', 'networks', 'edit', 'main', 'article', 'artificial', 'neural', 'networksee', 'also', 'deep', 'learning', 'an', 'artificial', 'neural', 'network', 'is', 'an', 'interconnected', 'group', 'of', 'nodes', 'akin', 'to', 'the', 'vast', 'network', 'of', 'neurons', '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', 'artificial', 'neural', 'networks', 'anns', 'or', 'connectionist', 'systems', 'are', 'computing', 'systems', 'vaguely', 'inspired', 'by', 'the', 'biological', 'neural', 'networks', 'that', 'constitute', 'animal', 'brains', 'such', 'systems', 'learn', 'to', 'perform', 'tasks', 'by', 'considering', 'examples', 'generally', 'without', 'being', 'programmed', 'with', 'any', 'task', 'specific', 'rules', 'an', 'ann', 'is', 'a', 'model', 'based', 'on', 'a', 'collection', 'of', 'connected', 'units', 'or', 'nodes', 'called', 'artificial', 'neurons', 'which', 'loosely', 'model', 'the', 'neurons', 'in', 'a', 'biological', 'brain', 'each', 'connection', 'like', 'the', 'synapses', 'in', 'a', 'biological', 'brain', 'can', 'transmit', 'information', 'a', 'signal', 'from', 'one', 'artificial', 'neuron', 'to', 'another', 'an', 'artificial', 'neuron', 'that', 'receives', 'a', 'signal', 'can', 'process', 'it', 'and', 'then', 'signal', 'additional', 'artificial', 'neurons', 'connected', 'to', 'it', 'in', 'common', 'ann', 'implementations', 'the', 'signal', 'at', 'a', 'connection', 'between', 'artificial', 'neurons', 'is', 'a', 'real', 'number', 'and', 'the', 'output', 'of', 'each', 'artificial', 'neuron', 'is', 'computed', 'by', 'some', 'non', 'linear', 'function', 'of', 'the', 'sum', 'of', 'its', 'inputs', 'the', 'connections', 'between', 'artificial', 'neurons', 'are', 'called', 'edges', 'artificial', 'neurons', 'and', 'edges', 'typically', 'have', 'a', 'weight', 'that', 'adjusts', 'as', 'learning', 'proceeds', 'the', 'weight', 'increases', 'or', 'decreases', 'the', 'strength', 'of', 'the', 'signal', 'at', 'a', 'connection', 'artificial', 'neurons', 'may', 'have', 'a', 'threshold', 'such', 'that', 'the', 'signal', 'is', 'only', 'sent', 'if', 'the', 'aggregate', 'signal', 'crosses', 'that', 'threshold', 'typically', 'artificial', 'neurons', 'are', 'aggregated', 'into', 'layers', 'different', 'layers', 'may', 'perform', 'different', 'kinds', 'of', 'transformations', 'on', 'their', 'inputs', 'signals', 'travel', 'from', 'the', 'first', 'layer', 'the', 'input', 'layer', 'to', 'the', 'last', 'layer', 'the', 'output', 'layer', 'possibly', 'after', 'traversing', 'the', 'layers', 'multiple', 'times', 'the', 'original', 'goal', 'of', 'the', 'ann', 'approach', 'was', 'to', 'solve', 'problems', 'in', 'the', 'same', 'way', 'that', 'a', 'human', 'brain', 'would', 'however', 'over', 'time', 'attention', 'moved', 'to', 'performing', 'specific', 'tasks', 'leading', 'to', 'deviations', 'from', 'biology', 'artificial', 'neural', 'networks', 'have', 'been', 'used', 'on', 'a', 'variety', 'of', 'tasks', 'including', 'computer', 'vision', 'speech', 'recognition', 'machine', 'translation', 'social', 'network', 'filtering', 'playing', 'board', 'and', 'video', 'games', 'and', 'medical', 'diagnosis', 'deep', 'learning', 'consists', 'of', 'multiple', 'hidden', 'layers', 'in', 'an', 'artificial', 'neural', 'network', 'this', 'approach', 'tries', 'to', 'model', 'the', 'way', 'the', 'human', 'brain', 'processes', 'light', 'and', 'sound', 'into', 'vision', 'and', 'hearing', 'some', 'successful', 'applications', 'of', 'deep', 'learning', 'are', 'computer', 'vision', 'and', 'speech', 'recognition', 'decision', 'trees', 'edit', 'main', 'article', 'decision', 'tree', 'learning', 'decision', 'tree', 'learning', 'uses', 'a', 'decision', 'tree', 'as', 'a', 'predictive', 'model', 'to', 'go', 'from', 'observations', 'about', 'an', 'item', 'represented', 'in', 'the', 'branches', 'to', 'conclusions', 'about', 'the', 'item', 's', 'target', 'value', 'represented', 'in', 'the', 'leaves', 'it', 'is', 'one', 'of', 'the', 'predictive', 'modeling', 'approaches', 'used', 'in', 'statistics', 'data', 'mining', 'and', 'machine', 'learning', 'tree', 'models', 'where', 'the', 'target', 'variable', 'can', 'take', 'a', 'discrete', 'set', 'of', 'values', 'are', 'called', 'classification', 'trees', 'in', 'these', 'tree', 'structures', 'leaves', 'represent', 'class', 'labels', 'and', 'branches', 'represent', 'conjunctions', 'of', 'features', 'that', 'lead', 'to', 'those', 'class', 'labels', 'decision', 'trees', 'where', 'the', 'target', 'variable', 'can', 'take', 'continuous', 'values', 'typically', 'real', 'numbers', 'are', 'called', 'regression', 'trees', 'in', 'decision', 'analysis', 'a', 'decision', 'tree', 'can', 'be', 'used', 'to', 'visually', 'and', 'explicitly', 'represent', 'decisions', 'and', 'decision', 'making', 'in', 'data', 'mining', 'a', 'decision', 'tree', 'describes', 'data', 'but', 'the', 'resulting', 'classification', 'tree', 'can', 'be', 'an', 'input', 'for', 'decision', 'making', 'support', 'vector', 'machines', 'edit', 'main', 'article', 'support', 'vector', 'machine', 'support', 'vector', 'machines', 'svms', 'also', 'known', 'as', 'support', 'vector', 'networks', 'are', 'a', 'set', 'of', 'related', 'supervised', 'learning', 'methods', 'used', 'for', 'classification', 'and', 'regression', 'given', 'a', 'set', 'of', 'training', 'examples', 'each', 'marked', 'as', 'belonging', 'to', 'one', 'of', 'two', 'categories', 'an', 'svm', 'training', 'algorithm', 'builds', 'a', 'model', 'that', 'predicts', 'whether', 'a', 'new', 'example', 'falls', 'into', 'one', 'category', 'or', 'the', 'other', 'an', 'svm', 'training', 'algorithm', 'is', 'a', 'non', 'probabilistic', 'binary', 'linear', 'classifier', 'although', 'methods', 'such', 'as', 'platt', 'scaling', 'exist', 'to', 'use', 'svm', 'in', 'a', 'probabilistic', 'classification', 'setting', 'in', 'addition', 'to', 'performing', 'linear', 'classification', 'svms', 'can', 'efficiently', 'perform', 'a', 'non', 'linear', 'classification', 'using', 'what', 'is', 'called', 'the', 'kernel', 'trick', 'implicitly', 'mapping', 'their', 'inputs', 'into', 'high', 'dimensional', 'feature', 'spaces', 'illustration', 'of', 'linear', 'regression', 'on', 'a', 'data', 'set', 'regression', 'analysis', 'edit', 'main', 'article', 'regression', 'analysis', 'regression', 'analysis', 'encompasses', 'a', 'large', 'variety', 'of', 'statistical', 'methods', 'to', 'estimate', 'the', 'relationship', 'between', 'input', 'variables', 'and', 'their', 'associated', 'features', 'its', 'most', 'common', 'form', 'is', 'linear', 'regression', 'where', 'a', 'single', 'line', 'is', 'drawn', 'to', 'best', 'fit', 'the', 'given', 'data', 'according', 'to', 'a', 'mathematical', 'criterion', 'such', 'as', 'ordinary', 'least', 'squares', 'the', 'latter', 'is', 'often', 'extended', 'by', 'regularization', 'mathematics', 'methods', 'to', 'mitigate', 'overfitting', 'and', 'bias', 'as', 'in', 'ridge', 'regression', 'when', 'dealing', 'with', 'non', 'linear', 'problems', 'go', 'to', 'models', 'include', 'polynomial', 'regression', 'for', 'example', 'used', 'for', 'trendline', 'fitting', 'in', 'microsoft', 'excel', 'logistic', 'regression', 'often', 'used', 'in', 'statistical', 'classification', 'or', 'even', 'kernel', 'regression', 'which', 'introduces', 'non', 'linearity', 'by', 'taking', 'advantage', 'of', 'the', 'kernel', 'trick', 'to', 'implicitly', 'map', 'input', 'variables', 'to', 'higher', 'dimensional', 'space', 'bayesian', 'networks', 'edit', 'main', 'article', 'bayesian', 'network', 'a', 'simple', 'bayesian', 'network', 'rain', 'influences', 'whether', 'the', 'sprinkler', 'is', 'activated', 'and', 'both', 'rain', 'and', 'the', 'sprinkler', 'influence', 'whether', 'the', 'grass', 'is', 'wet', 'a', 'bayesian', 'network', 'belief', 'network', 'or', 'directed', 'acyclic', 'graphical', 'model', 'is', 'a', 'probabilistic', 'graphical', 'model', 'that', 'represents', 'a', 'set', 'of', 'random', 'variables', 'and', 'their', 'conditional', 'independence', 'with', 'a', 'directed', 'acyclic', 'graph', 'dag', 'for', 'example', 'a', 'bayesian', 'network', 'could', 'represent', 'the', 'probabilistic', 'relationships', 'between', 'diseases', 'and', 'symptoms', 'given', 'symptoms', 'the', 'network', 'can', 'be', 'used', 'to', 'compute', 'the', 'probabilities', 'of', 'the', 'presence', 'of', 'various', 'diseases', 'efficient', 'algorithms', 'exist', 'that', 'perform', 'inference', 'and', 'learning', 'bayesian', 'networks', 'that', 'model', 'sequences', 'of', 'variables', 'like', 'speech', 'signals', 'or', 'protein', 'sequences', 'are', 'called', 'dynamic', 'bayesian', 'networks', 'generalizations', 'of', 'bayesian', 'networks', 'that', 'can', 'represent', 'and', 'solve', 'decision', 'problems', 'under', 'uncertainty', 'are', 'called', 'influence', 'diagrams', 'genetic', 'algorithms', 'edit', 'main', 'article', 'genetic', 'algorithm', 'a', 'genetic', 'algorithm', 'ga', 'is', 'a', 'search', 'algorithm', 'and', 'heuristic', 'technique', 'that', 'mimics', 'the', 'process', 'of', 'natural', 'selection', 'using', 'methods', 'such', 'as', 'mutation', 'and', 'crossover', 'to', 'generate', 'new', 'genotypes', 'in', 'the', 'hope', 'of', 'finding', 'good', 'solutions', 'to', 'a', 'given', 'problem', 'in', 'machine', 'learning', 'genetic', 'algorithms', 'were', 'used', 'in', 'the', 's', 'and', 's', 'conversely', 'machine', 'learning', 'techniques', 'have', 'been', 'used', 'to', 'improve', 'the', 'performance', 'of', 'genetic', 'and', 'evolutionary', 'algorithms', 'training', 'models', 'edit', 'typically', 'machine', 'learning', 'models', 'require', 'a', 'high', 'quantity', 'of', 'reliable', 'data', 'in', 'order', 'for', 'the', 'models', 'to', 'perform', 'accurate', 'predictions', 'when', 'training', 'a', 'machine', 'learning', 'model', 'machine', 'learning', 'engineers', 'need', 'to', 'target', 'and', 'collect', 'a', 'large', 'and', 'representative', 'sample', 'of', 'data', 'data', 'from', 'the', 'training', 'set', 'can', 'be', 'as', 'varied', 'as', 'a', 'corpus', 'of', 'text', 'a', 'collection', 'of', 'images', 'sensor', 'data', 'and', 'data', 'collected', 'from', 'individual', 'users', 'of', 'a', 'service', 'overfitting', 'is', 'something', 'to', 'watch', 'out', 'for', 'when', 'training', 'a', 'machine', 'learning', 'model', 'trained', 'models', 'derived', 'from', 'biased', 'or', 'non', 'evaluated', 'data', 'can', 'result', 'in', 'skewed', 'or', 'undesired', 'predictions', 'bias', 'models', 'may', 'result', 'in', 'detrimental', 'outcomes', 'thereby', 'furthering', 'the', 'negative', 'impacts', 'to', 'society', 'or', 'objectives', 'algorithmic', 'bias', 'is', 'a', 'potential', 'result', 'from', 'data', 'not', 'fully', 'prepared', 'for', 'training', 'machine', 'learning', 'ethics', 'is', 'becoming', 'a', 'field', 'of', 'study', 'and', 'notably', 'be', 'integrated', 'within', 'machine', 'learning', 'engineering', 'teams', 'federated', 'learning', 'edit', 'main', 'article', 'federated', 'learning', 'federated', 'learning', 'is', 'an', 'adapted', 'form', 'of', 'distributed', 'artificial', 'intelligence', 'to', 'training', 'machine', 'learning', 'models', 'that', 'decentralizes', 'the', 'training', 'process', 'allowing', 'for', 'users', 'privacy', 'to', 'be', 'maintained', 'by', 'not', 'needing', 'to', 'send', 'their', 'data', 'to', 'a', 'centralized', 'server', 'this', 'also', 'increases', 'efficiency', 'by', 'decentralizing', 'the', 'training', 'process', 'to', 'many', 'devices', 'for', 'example', 'gboard', 'uses', 'federated', 'machine', 'learning', 'to', 'train', 'search', 'query', 'prediction', 'models', 'on', 'users', 'mobile', 'phones', 'without', 'having', 'to', 'send', 'individual', 'searches', 'back', 'to', 'google', 'applications', 'edit', 'there', 'are', 'many', 'applications', 'for', 'machine', 'learning', 'including', 'agriculture', 'anatomy', 'adaptive', 'website', 'affective', 'computing', 'astronomy', 'banking', 'bioinformatics', 'brain', 'machine', 'interfaces', 'cheminformatics', 'citizen', 'science', 'climate', 'science', 'computer', 'networks', 'computer', 'vision', 'credit', 'card', 'fraud', 'detection', 'data', 'quality', 'dna', 'sequence', 'classification', 'economics', 'financial', 'market', 'analysis', 'general', 'game', 'playing', 'handwriting', 'recognition', 'information', 'retrieval', 'insurance', 'internet', 'fraud', 'detection', 'knowledge', 'graph', 'embedding', 'linguistics', 'machine', 'learning', 'control', 'machine', 'perception', 'machine', 'translation', 'marketing', 'medical', 'diagnosis', 'natural', 'language', 'processing', 'natural', 'language', 'understanding', 'online', 'advertising', 'optimization', 'recommender', 'systems', 'robot', 'locomotion', 'search', 'engines', 'sentiment', 'analysis', 'sequence', 'mining', 'software', 'engineering', 'speech', 'recognition', 'structural', 'health', 'monitoring', 'syntactic', 'pattern', 'recognition', 'telecommunication', 'theorem', 'proving', 'time', 'series', 'forecasting', 'user', 'behavior', 'analytics', 'behaviorism', 'in', 'the', 'media', 'services', 'provider', 'netflix', 'held', 'the', 'first', 'netflix', 'prize', 'competition', 'to', 'find', 'a', 'program', 'to', 'better', 'predict', 'user', 'preferences', 'and', 'improve', 'the', 'accuracy', 'of', 'its', 'existing', 'cinematch', 'movie', 'recommendation', 'algorithm', 'by', 'at', 'least', 'a', 'joint', 'team', 'made', 'up', 'of', 'researchers', 'from', 'at', 't', 'labs', 'research', 'in', 'collaboration', 'with', 'the', 'teams', 'big', 'chaos', 'and', 'pragmatic', 'theory', 'built', 'an', 'ensemble', 'model', 'to', 'win', 'the', 'grand', 'prize', 'in', 'for', 'million', 'shortly', 'after', 'the', 'prize', 'was', 'awarded', 'netflix', 'realized', 'that', 'viewers', 'ratings', 'were', 'not', 'the', 'best', 'indicators', 'of', 'their', 'viewing', 'patterns', 'everything', 'is', 'a', 'recommendation', 'and', 'they', 'changed', 'their', 'recommendation', 'engine', 'accordingly', 'in', 'the', 'wall', 'street', 'journal', 'wrote', 'about', 'the', 'firm', 'rebellion', 'research', 'and', 'their', 'use', 'of', 'machine', 'learning', 'to', 'predict', 'the', 'financial', 'crisis', 'in', 'co', 'founder', 'of', 'sun', 'microsystems', 'vinod', 'khosla', 'predicted', 'that', 'of', 'medical', 'doctors', 'jobs', 'would', 'be', 'lost', 'in', 'the', 'next', 'two', 'decades', 'to', 'automated', 'machine', 'learning', 'medical', 'diagnostic', 'software', 'in', 'it', 'was', 'reported', 'that', 'a', 'machine', 'learning', 'algorithm', 'had', 'been', 'applied', 'in', 'the', 'field', 'of', 'art', 'history', 'to', 'study', 'fine', 'art', 'paintings', 'and', 'that', 'it', 'may', 'have', 'revealed', 'previously', 'unrecognized', 'influences', 'among', 'artists', 'in', 'springer', 'nature', 'published', 'the', 'first', 'research', 'book', 'created', 'using', 'machine', 'learning', 'in', 'machine', 'learning', 'technology', 'was', 'used', 'to', 'help', 'make', 'diagnoses', 'and', 'aid', 'researchers', 'in', 'developing', 'a', 'cure', 'for', 'covid', 'machine', 'learning', 'is', 'recently', 'applied', 'to', 'predict', 'the', 'green', 'behavior', 'of', 'human', 'being', 'recently', 'machine', 'learning', 'technology', 'is', 'also', 'applied', 'to', 'optimise', 'smartphone', 's', 'performance', 'and', 'thermal', 'behaviour', 'based', 'on', 'the', 'user', 's', 'interaction', 'with', 'the', 'phone', 'limitations', 'edit', 'although', 'machine', 'learning', 'has', 'been', 'transformative', 'in', 'some', 'fields', 'machine', 'learning', 'programs', 'often', 'fail', 'to', 'deliver', 'expected', 'results', 'reasons', 'for', 'this', 'are', 'numerous', 'lack', 'of', 'suitable', 'data', 'lack', 'of', 'access', 'to', 'the', 'data', 'data', 'bias', 'privacy', 'problems', 'badly', 'chosen', 'tasks', 'and', 'algorithms', 'wrong', 'tools', 'and', 'people', 'lack', 'of', 'resources', 'and', 'evaluation', 'problems', 'in', 'a', 'self', 'driving', 'car', 'from', 'uber', 'failed', 'to', 'detect', 'a', 'pedestrian', 'who', 'was', 'killed', 'after', 'a', 'collision', 'attempts', 'to', 'use', 'machine', 'learning', 'in', 'healthcare', 'with', 'the', 'ibm', 'watson', 'system', 'failed', 'to', 'deliver', 'even', 'after', 'years', 'of', 'time', 'and', 'billions', 'of', 'dollars', 'invested', 'machine', 'learning', 'has', 'been', 'used', 'as', 'a', 'strategy', 'to', 'update', 'the', 'evidence', 'related', 'to', 'systematic', 'review', 'and', 'increased', 'reviewer', 'burden', 'related', 'to', 'the', 'growth', 'of', 'biomedical', 'literature', 'while', 'it', 'has', 'improved', 'with', 'training', 'sets', 'it', 'has', 'not', 'yet', 'developed', 'sufficiently', 'to', 'reduce', 'the', 'workload', 'burden', 'without', 'limiting', 'the', 'necessary', 'sensitivity', 'for', 'the', 'findings', 'research', 'themselves', 'bias', 'edit', 'main', 'article', 'algorithmic', 'bias', 'machine', 'learning', 'approaches', 'in', 'particular', 'can', 'suffer', 'from', 'different', 'data', 'biases', 'a', 'machine', 'learning', 'system', 'trained', 'specifically', 'on', 'current', 'customers', 'may', 'not', 'be', 'able', 'to', 'predict', 'the', 'needs', 'of', 'new', 'customer', 'groups', 'that', 'are', 'not', 'represented', 'in', 'the', 'training', 'data', 'when', 'trained', 'on', 'man', 'made', 'data', 'machine', 'learning', 'is', 'likely', 'to', 'pick', 'up', 'the', 'constitutional', 'and', 'unconscious', 'biases', 'already', 'present', 'in', 'society', 'language', 'models', 'learned', 'from', 'data', 'have', 'been', 'shown', 'to', 'contain', 'human', 'like', 'biases', 'machine', 'learning', 'systems', 'used', 'for', 'criminal', 'risk', 'assessment', 'have', 'been', 'found', 'to', 'be', 'biased', 'against', 'black', 'people', 'in', 'google', 'photos', 'would', 'often', 'tag', 'black', 'people', 'as', 'gorillas', 'and', 'in', 'this', 'still', 'was', 'not', 'well', 'resolved', 'but', 'google', 'reportedly', 'was', 'still', 'using', 'the', 'workaround', 'to', 'remove', 'all', 'gorillas', 'from', 'the', 'training', 'data', 'and', 'thus', 'was', 'not', 'able', 'to', 'recognize', 'real', 'gorillas', 'at', 'all', 'similar', 'issues', 'with', 'recognizing', 'non', 'white', 'people', 'have', 'been', 'found', 'in', 'many', 'other', 'systems', 'in', 'microsoft', 'tested', 'a', 'chatbot', 'that', 'learned', 'from', 'twitter', 'and', 'it', 'quickly', 'picked', 'up', 'racist', 'and', 'sexist', 'language', 'because', 'of', 'such', 'challenges', 'the', 'effective', 'use', 'of', 'machine', 'learning', 'may', 'take', 'longer', 'to', 'be', 'adopted', 'in', 'other', 'domains', 'concern', 'for', 'fairness', 'in', 'machine', 'learning', 'that', 'is', 'reducing', 'bias', 'in', 'machine', 'learning', 'and', 'propelling', 'its', 'use', 'for', 'human', 'good', 'is', 'increasingly', 'expressed', 'by', 'artificial', 'intelligence', 'scientists', 'including', 'fei', 'fei', 'li', 'who', 'reminds', 'engineers', 'that', 'there', 's', 'nothing', 'artificial', 'about', 'ai', 'it', 's', 'inspired', 'by', 'people', 'it', 's', 'created', 'by', 'people', 'and', 'most', 'importantly', 'it', 'impacts', 'people', 'it', 'is', 'a', 'powerful', 'tool', 'we', 'are', 'only', 'just', 'beginning', 'to', 'understand', 'and', 'that', 'is', 'a', 'profound', 'responsibility', 'overfitting', 'edit', 'main', 'article', 'overfitting', 'the', 'blue', 'line', 'could', 'be', 'an', 'example', 'of', 'overfitting', 'a', 'linear', 'function', 'due', 'to', 'random', 'noise', 'settling', 'on', 'a', 'bad', 'overly', 'complex', 'theory', 'gerrymandered', 'to', 'fit', 'all', 'the', 'past', 'training', 'data', 'is', 'known', 'as', 'overfitting', 'many', 'systems', 'attempt', 'to', 'reduce', 'overfitting', 'by', 'rewarding', 'a', 'theory', 'in', 'accordance', 'with', 'how', 'well', 'it', 'fits', 'the', 'data', 'but', 'penalizing', 'the', 'theory', 'in', 'accordance', 'with', 'how', 'complex', 'the', 'theory', 'is', 'other', 'limitations', 'edit', 'learners', 'can', 'also', 'disappoint', 'by', 'learning', 'the', 'wrong', 'lesson', 'a', 'toy', 'example', 'is', 'that', 'an', 'image', 'classifier', 'trained', 'only', 'on', 'pictures', 'of', 'brown', 'horses', 'and', 'black', 'cats', 'might', 'conclude', 'that', 'all', 'brown', 'patches', 'are', 'likely', 'to', 'be', 'horses', 'a', 'real', 'world', 'example', 'is', 'that', 'unlike', 'humans', 'current', 'image', 'classifiers', 'often', 'don', 't', 'primarily', 'make', 'judgments', 'from', 'the', 'spatial', 'relationship', 'between', 'components', 'of', 'the', 'picture', 'and', 'they', 'learn', 'relationships', 'between', 'pixels', 'that', 'humans', 'are', 'oblivious', 'to', 'but', 'that', 'still', 'correlate', 'with', 'images', 'of', 'certain', 'types', 'of', 'real', 'objects', 'modifying', 'these', 'patterns', 'on', 'a', 'legitimate', 'image', 'can', 'result', 'in', 'adversarial', 'images', 'that', 'the', 'system', 'misclassifies', 'adversarial', 'vulnerabilities', 'can', 'also', 'result', 'in', 'nonlinear', 'systems', 'or', 'from', 'non', 'pattern', 'perturbations', 'some', 'systems', 'are', 'so', 'brittle', 'that', 'changing', 'a', 'single', 'adversarial', 'pixel', 'predictably', 'induces', 'misclassification', 'model', 'assessments', 'edit', 'classification', 'of', 'machine', 'learning', 'models', 'can', 'be', 'validated', 'by', 'accuracy', 'estimation', 'techniques', 'like', 'the', 'holdout', 'method', 'which', 'splits', 'the', 'data', 'in', 'a', 'training', 'and', 'test', 'set', 'conventionally', 'training', 'set', 'and', 'test', 'set', 'designation', 'and', 'evaluates', 'the', 'performance', 'of', 'the', 'training', 'model', 'on', 'the', 'test', 'set', 'in', 'comparison', 'the', 'k', 'fold', 'cross', 'validation', 'method', 'randomly', 'partitions', 'the', 'data', 'into', 'k', 'subsets', 'and', 'then', 'k', 'experiments', 'are', 'performed', 'each', 'respectively', 'considering', 'subset', 'for', 'evaluation', 'and', 'the', 'remaining', 'k', 'subsets', 'for', 'training', 'the', 'model', 'in', 'addition', 'to', 'the', 'holdout', 'and', 'cross', 'validation', 'methods', 'bootstrap', 'which', 'samples', 'n', 'instances', 'with', 'replacement', 'from', 'the', 'dataset', 'can', 'be', 'used', 'to', 'assess', 'model', 'accuracy', 'in', 'addition', 'to', 'overall', 'accuracy', 'investigators', 'frequently', 'report', 'sensitivity', 'and', 'specificity', 'meaning', 'true', 'positive', 'rate', 'tpr', 'and', 'true', 'negative', 'rate', 'tnr', 'respectively', 'similarly', 'investigators', 'sometimes', 'report', 'the', 'false', 'positive', 'rate', 'fpr', 'as', 'well', 'as', 'the', 'false', 'negative', 'rate', 'fnr', 'however', 'these', 'rates', 'are', 'ratios', 'that', 'fail', 'to', 'reveal', 'their', 'numerators', 'and', 'denominators', 'the', 'total', 'operating', 'characteristic', 'toc', 'is', 'an', 'effective', 'method', 'to', 'express', 'a', 'model', 's', 'diagnostic', 'ability', 'toc', 'shows', 'the', 'numerators', 'and', 'denominators', 'of', 'the', 'previously', 'mentioned', 'rates', 'thus', 'toc', 'provides', 'more', 'information', 'than', 'the', 'commonly', 'used', 'receiver', 'operating', 'characteristic', 'roc', 'and', 'roc', 's', 'associated', 'area', 'under', 'the', 'curve', 'auc', 'ethics', 'edit', 'see', 'also', 'ai', 'control', 'problem', 'and', 'toronto', 'declaration', 'machine', 'learning', 'poses', 'a', 'host', 'of', 'ethical', 'questions', 'systems', 'which', 'are', 'trained', 'on', 'datasets', 'collected', 'with', 'biases', 'may', 'exhibit', 'these', 'biases', 'upon', 'use', 'algorithmic', 'bias', 'thus', 'digitizing', 'cultural', 'prejudices', 'for', 'example', 'in', 'the', 'uk', 's', 'commission', 'for', 'racial', 'equality', 'found', 'that', 'st', 'george', 's', 'medical', 'school', 'had', 'been', 'using', 'a', 'computer', 'program', 'trained', 'from', 'data', 'of', 'previous', 'admissions', 'staff', 'and', 'this', 'program', 'had', 'denied', 'nearly', 'candidates', 'who', 'were', 'found', 'to', 'be', 'either', 'women', 'or', 'had', 'non', 'european', 'sounding', 'names', 'using', 'job', 'hiring', 'data', 'from', 'a', 'firm', 'with', 'racist', 'hiring', 'policies', 'may', 'lead', 'to', 'a', 'machine', 'learning', 'system', 'duplicating', 'the', 'bias', 'by', 'scoring', 'job', 'applicants', 'by', 'similarity', 'to', 'previous', 'successful', 'applicants', 'responsible', 'collection', 'of', 'data', 'and', 'documentation', 'of', 'algorithmic', 'rules', 'used', 'by', 'a', 'system', 'thus', 'is', 'a', 'critical', 'part', 'of', 'machine', 'learning', 'ai', 'can', 'be', 'well', 'equipped', 'to', 'make', 'decisions', 'in', 'technical', 'fields', 'which', 'rely', 'heavily', 'on', 'data', 'and', 'historical', 'information', 'these', 'decisions', 'rely', 'on', 'objectivity', 'and', 'logical', 'reasoning', 'because', 'human', 'languages', 'contain', 'biases', 'machines', 'trained', 'on', 'language', 'corpora', 'will', 'necessarily', 'also', 'learn', 'these', 'biases', 'other', 'forms', 'of', 'ethical', 'challenges', 'not', 'related', 'to', 'personal', 'biases', 'are', 'seen', 'in', 'health', 'care', 'there', 'are', 'concerns', 'among', 'health', 'care', 'professionals', 'that', 'these', 'systems', 'might', 'not', 'be', 'designed', 'in', 'the', 'public', 's', 'interest', 'but', 'as', 'income', 'generating', 'machines', 'this', 'is', 'especially', 'true', 'in', 'the', 'united', 'states', 'where', 'there', 'is', 'a', 'long', 'standing', 'ethical', 'dilemma', 'of', 'improving', 'health', 'care', 'but', 'also', 'increasing', 'profits', 'for', 'example', 'the', 'algorithms', 'could', 'be', 'designed', 'to', 'provide', 'patients', 'with', 'unnecessary', 'tests', 'or', 'medication', 'in', 'which', 'the', 'algorithm', 's', 'proprietary', 'owners', 'hold', 'stakes', 'there', 'is', 'potential', 'for', 'machine', 'learning', 'in', 'health', 'care', 'to', 'provide', 'professionals', 'an', 'additional', 'tool', 'to', 'diagnose', 'medicate', 'and', 'plan', 'recovery', 'paths', 'for', 'patients', 'but', 'this', 'requires', 'these', 'biases', 'to', 'be', 'mitigated', 'hardware', 'edit', 'since', 'the', 's', 'advances', 'in', 'both', 'machine', 'learning', 'algorithms', 'and', 'computer', 'hardware', 'have', 'led', 'to', 'more', 'efficient', 'methods', 'for', 'training', 'deep', 'neural', 'networks', 'a', 'particular', 'narrow', 'subdomain', 'of', 'machine', 'learning', 'that', 'contain', 'many', 'layers', 'of', 'non', 'linear', 'hidden', 'units', 'by', 'graphic', 'processing', 'units', 'gpus', 'often', 'with', 'ai', 'specific', 'enhancements', 'had', 'displaced', 'cpus', 'as', 'the', 'dominant', 'method', 'of', 'training', 'large', 'scale', 'commercial', 'cloud', 'ai', 'openai', 'estimated', 'the', 'hardware', 'compute', 'used', 'in', 'the', 'largest', 'deep', 'learning', 'projects', 'from', 'alexnet', 'to', 'alphazero', 'and', 'found', 'a', 'fold', 'increase', 'in', 'the', 'amount', 'of', 'compute', 'required', 'with', 'a', 'doubling', 'time', 'trendline', 'of', 'months', 'neuromorphic', 'physical', 'neural', 'networks', 'edit', 'a', 'physical', 'neural', 'network', 'or', 'neuromorphic', 'computer', 'is', 'a', 'type', 'of', 'artificial', 'neural', 'network', 'in', 'which', 'an', 'electrically', 'adjustable', 'material', 'is', 'used', 'to', 'emulate', 'the', 'function', 'of', 'a', 'neural', 'synapse', 'physical', 'neural', 'network', 'is', 'used', 'to', 'emphasize', 'the', 'reliance', 'on', 'physical', 'hardware', 'used', 'to', 'emulate', 'neurons', 'as', 'opposed', 'to', 'software', 'based', 'approaches', 'more', 'generally', 'the', 'term', 'is', 'applicable', 'to', 'other', 'artificial', 'neural', 'networks', 'in', 'which', 'a', 'memristor', 'or', 'other', 'electrically', 'adjustable', 'resistance', 'material', 'is', 'used', 'to', 'emulate', 'a', 'neural', 'synapse', 'embedded', 'machine', 'learning', 'edit', 'embedded', 'machine', 'learning', 'is', 'a', 'sub', 'field', 'of', 'machine', 'learning', 'where', 'the', 'machine', 'learning', 'model', 'is', 'run', 'on', 'embedded', 'systems', 'with', 'limited', 'computing', 'resources', 'such', 'as', 'wearable', 'computers', 'edge', 'devices', 'and', 'microcontrollers', 'running', 'machine', 'learning', 'model', 'in', 'embedded', 'devices', 'removes', 'the', 'need', 'for', 'transferring', 'and', 'storing', 'data', 'on', 'cloud', 'servers', 'for', 'further', 'processing', 'henceforth', 'reducing', 'data', 'breaches', 'and', 'privacy', 'leaks', 'happening', 'because', 'of', 'transferring', 'data', 'and', 'also', 'minimizes', 'theft', 'of', 'intellectual', 'properties', 'personal', 'data', 'and', 'business', 'secrets', 'embedded', 'machine', 'learning', 'could', 'be', 'applied', 'through', 'several', 'techniques', 'including', 'hardware', 'acceleration', 'using', 'approximate', 'computing', 'optimization', 'of', 'machine', 'learning', 'models', 'and', 'many', 'more', 'software', 'edit', 'software', 'suites', 'containing', 'a', 'variety', 'of', 'machine', 'learning', 'algorithms', 'include', 'the', 'following', 'free', 'and', 'open', 'source', 'software', 'edit', 'caffe', 'microsoft', 'cognitive', 'toolkit', 'deeplearning', 'j', 'deepspeed', 'elki', 'infer', 'net', 'keras', 'lightgbm', 'mahout', 'mallet', 'ml', 'net', 'mlpack', 'mxnet', 'neural', 'lab', 'opennn', 'orange', 'pandas', 'software', 'root', 'tmva', 'with', 'root', 'scikit', 'learn', 'shogun', 'spark', 'mllib', 'systemml', 'tensorflow', 'torch', 'pytorch', 'weka', 'moa', 'xgboost', 'yooreeka', 'proprietary', 'software', 'with', 'free', 'and', 'open', 'source', 'editions', 'edit', 'knime', 'rapidminer', 'proprietary', 'software', 'edit', 'amazon', 'machine', 'learning', 'angoss', 'knowledgestudio', 'azure', 'machine', 'learning', 'ayasdi', 'ibm', 'watson', 'studio', 'google', 'prediction', 'api', 'ibm', 'spss', 'modeler', 'kxen', 'modeler', 'lionsolver', 'mathematica', 'matlab', 'neural', 'designer', 'neurosolutions', 'oracle', 'data', 'mining', 'oracle', 'ai', 'platform', 'cloud', 'service', 'polyanalyst', 'rcase', 'sas', 'enterprise', 'miner', 'sequencel', 'splunk', 'statistica', 'data', 'miner', 'journals', 'edit', 'journal', 'of', 'machine', 'learning', 'research', 'machine', 'learning', 'nature', 'machine', 'intelligence', 'neural', 'computation', 'conferences', 'edit', 'aaai', 'conference', 'on', 'artificial', 'intelligence', 'association', 'for', 'computational', 'linguistics', 'acl', 'european', 'conference', 'on', 'machine', 'learning', 'and', 'principles', 'and', 'practice', 'of', 'knowledge', 'discovery', 'in', 'databases', 'ecml', 'pkdd', 'international', 'conference', 'on', 'machine', 'learning', 'icml', 'international', 'conference', 'on', 'learning', 'representations', 'iclr', 'international', 'conference', 'on', 'intelligent', 'robots', 'and', 'systems', 'iros', 'conference', 'on', 'knowledge', 'discovery', 'and', 'data', 'mining', 'kdd', 'conference', 'on', 'neural', 'information', 'processing', 'systems', 'neurips', 'see', 'also', 'edit', 'automated', 'machine', 'learning', 'process', 'of', 'automating', 'the', 'application', 'of', 'machine', 'learning', 'big', 'data', 'information', 'assets', 'characterized', 'by', 'high', 'volume', 'velocity', 'and', 'variety', 'differentiable', 'programming', 'programming', 'paradigm', 'list', 'of', 'important', 'publications', 'in', 'machine', 'learning', 'wikimedia', 'list', 'article', 'list', 'of', 'datasets', 'for', 'machine', 'learning', 'research', 'wikimedia', 'list', 'article', 'references', 'edit', 'mitchell', 'tom', 'machine', 'learning', 'new', 'york', 'mcgraw', 'hill', 'isbn', 'oclc', 'the', 'definition', 'without', 'being', 'explicitly', 'programmed', 'is', 'often', 'attributed', 'to', 'arthur', 'samuel', 'who', 'coined', 'the', 'term', 'machine', 'learning', 'in', 'but', 'the', 'phrase', 'is', 'not', 'found', 'verbatim', 'in', 'this', 'publication', 'and', 'may', 'be', 'a', 'paraphrase', 'that', 'appeared', 'later', 'confer', 'paraphrasing', 'arthur', 'samuel', 'the', 'question', 'is', 'how', 'can', 'computers', 'learn', 'to', 'solve', 'problems', 'without', 'being', 'explicitly', 'programmed', 'in', 'koza', 'john', 'r', 'bennett', 'forrest', 'h', 'andre', 'david', 'keane', 'martin', 'a', 'automated', 'design', 'of', 'both', 'the', 'topology', 'and', 'sizing', 'of', 'analog', 'electrical', 'circuits', 'using', 'genetic', 'programming', 'artificial', 'intelligence', 'in', 'design', 'springer', 'dordrecht', 'pp', 'doi', '_', 'hu', 'j', 'niu', 'h', 'carrasco', 'j', 'lennox', 'b', 'arvin', 'f', 'voronoi', 'based', 'multi', 'robot', 'autonomous', 'exploration', 'in', 'unknown', 'environments', 'via', 'deep', 'reinforcement', 'learning', 'ieee', 'transactions', 'on', 'vehicular', 'technology', 'a', 'b', 'c', 'd', 'bishop', 'c', 'm', 'pattern', 'recognition', 'and', 'machine', 'learning', 'springer', 'isbn', 'machine', 'learning', 'and', 'pattern', 'recognition', 'can', 'be', 'viewed', 'as', 'two', 'facets', 'of', 'the', 'same', 'field', 'vii', 'friedman', 'jerome', 'h', 'data', 'mining', 'and', 'statistics', 'what', 's', 'the', 'connection', 'computing', 'science', 'and', 'statistics', 'what', 'is', 'machine', 'learning', 'www', 'ibm', 'com', 'retrieved', 'zhou', 'victor', 'machine', 'learning', 'for', 'beginners', 'an', 'introduction', 'to', 'neural', 'networks', 'medium', 'retrieved', 'a', 'b', 'domingos', 'chapter', 'chapter', 'a', 'b', 'c', 'ethem', 'alpaydin', 'introduction', 'to', 'machine', 'learning', 'fourth', 'ed', 'mit', 'pp', 'xix', 'isbn', 'samuel', 'arthur', 'some', 'studies', 'in', 'machine', 'learning', 'using', 'the', 'game', 'of', 'checkers', 'ibm', 'journal', 'of', 'research', 'and', 'development', 'citeseerx', 'doi', 'rd', 'r', 'kohavi', 'and', 'f', 'provost', 'glossary', 'of', 'terms', 'machine', 'learning', 'vol', 'no', 'pp', 'gerovitch', 'slava', 'april', 'how', 'the', 'computer', 'got', 'its', 'revenge', 'on', 'the', 'soviet', 'union', 'nautilus', 'retrieved', 'september', 'lindsay', 'richard', 'p', 'september', 'the', 'impact', 'of', 'automation', 'on', 'public', 'administration', 'western', 'political', 'quarterly', 'doi', 'issn', 's', 'cid', 'retrieved', 'october', 'nilsson', 'n', 'learning', 'machines', 'mcgraw', 'hill', 'duda', 'r', 'hart', 'p', 'pattern', 'recognition', 'and', 'scene', 'analysis', 'wiley', 'interscience', 's', 'bozinovski', 'teaching', 'space', 'a', 'representation', 'concept', 'for', 'adaptive', 'pattern', 'classification', 'coins', 'technical', 'report', 'no', 'computer', 'and', 'information', 'science', 'department', 'university', 'of', 'massachusetts', 'at', 'amherst', 'ma', 'https', 'web', 'cs', 'umass', 'edu', 'publication', 'docs', 'um', 'cs', 'pdf', 'a', 'b', 'mitchell', 't', 'machine', 'learning', 'mcgraw', 'hill', 'p', 'isbn', 'harnad', 'stevan', 'the', 'annotation', 'game', 'on', 'turing', 'on', 'computing', 'machinery', 'and', 'intelligence', 'in', 'epstein', 'robert', 'peters', 'grace', 'eds', 'the', 'turing', 'test', 'sourcebook', 'philosophical', 'and', 'methodological', 'issues', 'in', 'the', 'quest', 'for', 'the', 'thinking', 'computer', 'kluwer', 'pp', 'isbn', 'archived', 'from', 'the', 'original', 'on', 'retrieved', 'introduction', 'to', 'ai', 'part', 'edzion', 'retrieved', 'an', 'empirical', 'science', 'research', 'on', 'bioinformatics', 'in', 'machine', 'learning', 'journal', 'retrieved', 'october', 'cite', 'journal', 'cite', 'journal', 'requires', 'journal', 'help', 'rasbt', 'stat', 'deep', 'learning', 'ss', 'pdf', 'github', 'november', 'sarle', 'warren', 'neural', 'networks', 'and', 'statistical', 'models', 'citeseerx', 'a', 'b', 'c', 'd', 'russell', 'stuart', 'norvig', 'peter', 'artificial', 'intelligence', 'a', 'modern', 'approach', 'nd', 'ed', 'prentice', 'hall', 'isbn', 'a', 'b', 'c', 'langley', 'pat', 'the', 'changing', 'science', 'of', 'machine', 'learning', 'machine', 'learning', 'doi', 's', 'y', 'a', 'b', 'alpaydin', 'ethem', 'introduction', 'to', 'machine', 'learning', 'mit', 'press', 'p', 'isbn', 'a', 'b', 'cornell', 'university', 'library', 'august', 'breiman', 'statistical', 'modeling', 'the', 'two', 'cultures', 'with', 'comments', 'and', 'a', 'rejoinder', 'by', 'the', 'author', 'statistical', 'science', 'doi', 'ss', 'retrieved', 'august', 'a', 'b', 'gareth', 'james', 'daniela', 'witten', 'trevor', 'hastie', 'robert', 'tibshirani', 'an', 'introduction', 'to', 'statistical', 'learning', 'springer', 'p', 'vii', 'a', 'b', 'mohri', 'mehryar', 'rostamizadeh', 'afshin', 'talwalkar', 'ameet', 'foundations', 'of', 'machine', 'learning', 'usa', 'massachusetts', 'mit', 'press', 'isbn', 'a', 'b', 'alpaydin', 'ethem', 'introduction', 'to', 'machine', 'learning', 'london', 'the', 'mit', 'press', 'isbn', 'retrieved', 'february', 'le', 'roux', 'nicolas', 'bengio', 'yoshua', 'fitzgibbon', 'andrew', 'improving', 'first', 'and', 'second', 'order', 'methods', 'by', 'modeling', 'uncertainty', 'pg', 'pa', 'improving', 'first', 'and', 'second', 'order', 'methods', 'by', 'modeling', 'uncertainty', 'in', 'sra', 'suvrit', 'nowozin', 'sebastian', 'wright', 'stephen', 'j', 'eds', 'optimization', 'for', 'machine', 'learning', 'mit', 'press', 'p', 'isbn', 'bzdok', 'danilo', 'altman', 'naomi', 'krzywinski', 'martin', 'statistics', 'versus', 'machine', 'learning', 'nature', 'methods', 'doi', 'nmeth', 'pmc', 'pmid', 'a', 'b', 'michael', 'i', 'jordan', 'statistics', 'and', 'machine', 'learning', 'reddit', 'retrieved', 'russell', 'stuart', 'j', 'norvig', 'peter', 'artificial', 'intelligence', 'a', 'modern', 'approach', 'third', 'ed', 'prentice', 'hall', 'isbn', 'mohri', 'mehryar', 'rostamizadeh', 'afshin', 'talwalkar', 'ameet', 'foundations', 'of', 'machine', 'learning', 'the', 'mit', 'press', 'isbn', 'jordan', 'michael', 'i', 'bishop', 'christopher', 'm', 'neural', 'networks', 'in', 'allen', 'b', 'tucker', 'ed', 'computer', 'science', 'handbook', 'second', 'edition', 'section', 'vii', 'intelligent', 'systems', 'boca', 'raton', 'florida', 'chapman', 'hall', 'crc', 'press', 'llc', 'isbn', 'alex', 'ratner', 'stephen', 'bach', 'paroma', 'varma', 'chris', 'weak', 'supervision', 'the', 'new', 'programming', 'paradigm', 'for', 'machine', 'learning', 'hazyresearch', 'github', 'io', 'referencing', 'work', 'by', 'many', 'other', 'members', 'of', 'hazy', 'research', 'archived', 'from', 'the', 'original', 'on', 'retrieved', 'van', 'otterlo', 'm', 'wiering', 'm', 'reinforcement', 'learning', 'and', 'markov', 'decision', 'processes', 'reinforcement', 'learning', 'adaptation', 'learning', 'and', 'optimization', 'vol', 'pp', 'doi', '_', 'isbn', 'science', 'sciencemag', 'org', 'content', 'towardsdatascience', 'com', 'all', 'machine', 'learning', 'models', 'explained', 'in', 'minutes', 'fe', 'ff', 'a', 'pavel', 'brazdil', 'christophe', 'giraud', 'carrier', 'carlos', 'soares', 'ricardo', 'vilalta', 'metalearning', 'applications', 'to', 'data', 'mining', 'fourth', 'ed', 'springer', 'science', 'business', 'media', 'pp', 'passim', 'isbn', 'cite', 'book', 'cs', 'maint', 'uses', 'authors', 'parameter', 'link', 'bozinovski', 's', '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', 'isbn', 'bozinovski', 'stevo', 'modeling', 'mechanisms', 'of', 'cognition', 'emotion', 'interaction', 'in', 'artificial', 'neural', 'networks', 'since', 'procedia', 'computer', 'science', 'p', 'bozinovski', 's', 'self', 'learning', 'agents', 'a', 'connectionist', 'theory', 'of', 'emotion', 'based', 'on', 'crossbar', 'value', 'judgment', 'cybernetics', 'and', 'systems', 'y', 'bengio', 'a', 'courville', 'p', 'vincent', 'representation', 'learning', 'a', 'review', 'and', 'new', 'perspectives', 'ieee', 'transactions', 'on', 'pattern', 'analysis', 'and', 'machine', 'intelligence', 'arxiv', 'doi', 'tpami', 'pmid', 's', 'cid', 'nathan', 'srebro', 'jason', 'd', 'm', 'rennie', 'tommi', 's', 'jaakkola', 'maximum', 'margin', 'matrix', 'factorization', 'nips', 'coates', 'adam', 'lee', 'honglak', 'ng', 'andrew', 'y', 'an', 'analysis', 'of', 'single', 'layer', 'networks', 'in', 'unsupervised', 'feature', 'learning', 'pdf', 'int', 'l', 'conf', 'on', 'ai', 'and', 'statistics', 'aistats', 'archived', 'from', 'the', 'original', 'pdf', 'on', 'retrieved', 'csurka', 'gabriella', 'dance', 'christopher', 'c', 'fan', 'lixin', 'willamowski', 'jutta', 'bray', 'cédric', 'visual', 'categorization', 'with', 'bags', 'of', 'keypoints', 'pdf', 'eccv', 'workshop', 'on', 'statistical', 'learning', 'in', 'computer', 'vision', 'daniel', 'jurafsky', 'james', 'h', 'martin', 'speech', 'and', 'language', 'processing', 'pearson', 'education', 'international', 'pp', 'lu', 'haiping', 'plataniotis', 'k', 'n', 'venetsanopoulos', 'a', 'n', 'a', 'survey', 'of', 'multilinear', 'subspace', 'learning', 'for', 'tensor', 'data', 'pdf', 'pattern', 'recognition', 'bibcode', 'patre', 'l', 'doi', 'j', 'patcog', 'yoshua', 'bengio', 'learning', 'deep', 'architectures', 'for', 'ai', 'now', 'publishers', 'inc', 'pp', 'isbn', 'tillmann', 'a', 'm', 'on', 'the', 'computational', 'intractability', 'of', 'exact', 'and', 'approximate', 'dictionary', 'learning', 'ieee', 'signal', 'processing', 'letters', 'arxiv', 'bibcode', 'ispl', 't', 'doi', 'lsp', 's', 'cid', 'aharon', 'm', 'm', 'elad', 'and', 'a', 'bruckstein', 'k', 'svd', 'an', 'algorithm', 'for', 'designing', 'overcomplete', 'dictionaries', 'for', 'sparse', 'representation', 'signal', 'processing', 'ieee', 'transactions', 'on', 'zimek', 'arthur', 'schubert', 'erich', 'outlier', 'detection', 'encyclopedia', 'of', 'database', 'systems', 'springer', 'new', 'york', 'pp', 'doi', '_', 'isbn', 'hodge', 'v', 'j', 'austin', 'j', 'a', 'survey', 'of', 'outlier', 'detection', 'methodologies', 'pdf', 'artificial', 'intelligence', 'review', 'citeseerx', 'doi', 's', 'y', 's', 'cid', 'dokas', 'paul', 'ertoz', 'levent', 'kumar', 'vipin', 'lazarevic', 'aleksandar', 'srivastava', 'jaideep', 'tan', 'pang', 'ning', 'data', 'mining', 'for', 'network', 'intrusion', 'detection', 'pdf', 'proceedings', 'nsf', 'workshop', 'on', 'next', 'generation', 'data', 'mining', 'chandola', 'v', 'banerjee', 'a', 'kumar', 'v', 'anomaly', 'detection', 'a', 'survey', 'acm', 'computing', 'surveys', 'doi', 's', 'cid', 'fleer', 's', 'moringen', 'a', 'klatzky', 'r', 'l', 'ritter', 'h', 'learning', 'efficient', 'haptic', 'shape', 'exploration', 'with', 'a', 'rigid', 'tactile', 'sensor', 'array', 's', 'fleer', 'a', 'moringen', 'r', 'klatzky', 'h', 'ritter', 'plos', 'one', 'e', 'arxiv', 'doi', 'journal', 'pone', 'pmc', 'pmid', 'moringen', 'alexandra', 'fleer', 'sascha', 'walck', 'guillaume', 'ritter', 'helge', 'nisky', 'ilana', 'hartcher', 'o', 'brien', 'jess', 'wiertlewski', 'michaël', 'smeets', 'jeroen', 'eds', 'attention', 'based', 'robot', 'learning', 'of', 'haptic', 'interaction', 'haptics', 'science', 'technology', 'applications', 'cham', 'springer', 'international', 'publishing', 'vol', 'pp', 'doi', '_', 'isbn', 's', 'cid', 'retrieved', 'piatetsky', 'shapiro', 'gregory', 'discovery', 'analysis', 'and', 'presentation', 'of', 'strong', 'rules', 'in', 'piatetsky', 'shapiro', 'gregory', 'and', 'frawley', 'william', 'j', 'eds', 'knowledge', 'discovery', 'in', 'databases', 'aaai', 'mit', 'press', 'cambridge', 'ma', 'bassel', 'george', 'w', 'glaab', 'enrico', 'marquez', 'julietta', 'holdsworth', 'michael', 'j', 'bacardit', 'jaume', 'functional', 'network', 'construction', 'in', 'arabidopsis', 'using', 'rule', 'based', 'machine', 'learning', 'on', 'large', 'scale', 'data', 'sets', 'the', 'plant', 'cell', 'doi', 'tpc', 'issn', 'x', 'pmc', 'pmid', 'agrawal', 'r', 'imieliński', 't', 'swami', 'a', 'mining', 'association', 'rules', 'between', 'sets', 'of', 'items', 'in', 'large', 'databases', 'proceedings', 'of', 'the', 'acm', 'sigmod', 'international', 'conference', 'on', 'management', 'of', 'data', 'sigmod', 'p', 'citeseerx', 'doi', 'isbn', 's', 'cid', 'urbanowicz', 'ryan', 'j', 'moore', 'jason', 'h', 'learning', 'classifier', 'systems', 'a', 'complete', 'introduction', 'review', 'and', 'roadmap', 'journal', 'of', 'artificial', 'evolution', 'and', 'applications', 'doi', 'issn', 'plotkin', 'g', 'd', 'automatic', 'methods', 'of', 'inductive', 'inference', 'phd', 'thesis', 'university', 'of', 'edinburgh', 'shapiro', 'ehud', 'y', 'inductive', 'inference', 'of', 'theories', 'from', 'facts', 'research', 'report', 'yale', 'university', 'department', 'of', 'computer', 'science', 'reprinted', 'in', 'j', 'l', 'lassez', 'g', 'plotkin', 'eds', 'computational', 'logic', 'the', 'mit', 'press', 'cambridge', 'ma', 'pp', 'shapiro', 'ehud', 'y', 'algorithmic', 'program', 'debugging', 'cambridge', 'mass', 'mit', 'press', 'isbn', 'shapiro', 'ehud', 'y', 'the', 'model', 'inference', 'system', 'proceedings', 'of', 'the', 'th', 'international', 'joint', 'conference', 'on', 'artificial', 'intelligence', 'volume', 'morgan', 'kaufmann', 'publishers', 'inc', 'honglak', 'lee', 'roger', 'grosse', 'rajesh', 'ranganath', 'andrew', 'y', 'ng', 'convolutional', 'deep', 'belief', 'networks', 'for', 'scalable', 'unsupervised', 'learning', 'of', 'hierarchical', 'representations', 'proceedings', 'of', 'the', 'th', 'annual', 'international', 'conference', 'on', 'machine', 'learning', 'cortes', 'corinna', 'vapnik', 'vladimir', 'n', 'support', 'vector', 'networks', 'machine', 'learning', 'doi', 'bf', 'stevenson', 'christopher', 'tutorial', 'polynomial', 'regression', 'in', 'excel', 'facultystaff', 'richmond', 'edu', 'retrieved', 'january', 'goldberg', 'david', 'e', 'holland', 'john', 'h', 'genetic', 'algorithms', 'and', 'machine', 'learning', 'pdf', 'machine', 'learning', 'doi', 'bf', 's', 'cid', 'michie', 'd', 'spiegelhalter', 'd', 'j', 'taylor', 'c', 'c', 'machine', 'learning', 'neural', 'and', 'statistical', 'classification', 'ellis', 'horwood', 'series', 'in', 'artificial', 'intelligence', 'bibcode', 'mlns', 'book', 'm', 'zhang', 'jun', 'zhan', 'zhi', 'hui', 'lin', 'ying', 'chen', 'ni', 'gong', 'yue', 'jiao', 'zhong', 'jing', 'hui', 'chung', 'henry', 's', 'h', 'li', 'yun', 'shi', 'yu', 'hui', 'evolutionary', 'computation', 'meets', 'machine', 'learning', 'a', 'survey', 'computational', 'intelligence', 'magazine', 'doi', 'mci', 's', 'cid', 'federated', 'learning', 'collaborative', 'machine', 'learning', 'without', 'centralized', 'training', 'data', 'google', 'ai', 'blog', 'retrieved', 'machine', 'learning', 'is', 'included', 'in', 'the', 'cfa', 'curriculum', 'discussion', 'is', 'top', 'down', 'see', 'kathleen', 'derose', 'and', 'christophe', 'le', 'lanno', 'machine', 'learning', 'belkor', 'home', 'page', 'research', 'att', 'com', 'the', 'netflix', 'tech', 'blog', 'netflix', 'recommendations', 'beyond', 'the', 'stars', 'part', 'archived', 'from', 'the', 'original', 'on', 'may', 'retrieved', 'august', 'scott', 'patterson', 'july', 'letting', 'the', 'machines', 'decide', 'the', 'wall', 'street', 'journal', 'retrieved', 'june', 'vinod', 'khosla', 'january', 'do', 'we', 'need', 'doctors', 'or', 'algorithms', 'tech', 'crunch', 'when', 'a', 'machine', 'learning', 'algorithm', 'studied', 'fine', 'art', 'paintings', 'it', 'saw', 'things', 'art', 'historians', 'had', 'never', 'noticed', 'the', 'physics', 'at', 'arxiv', 'blog', 'vincent', 'james', 'the', 'first', 'ai', 'generated', 'textbook', 'shows', 'what', 'robot', 'writers', 'are', 'actually', 'good', 'at', 'the', 'verge', 'retrieved', 'vaishya', 'raju', 'javaid', 'mohd', 'khan', 'ibrahim', 'haleem', 'haleem', 'abid', 'july', 'artificial', 'intelligence', 'ai', 'applications', 'for', 'covid', 'pandemic', 'diabetes', 'metabolic', 'syndrome', 'clinical', 'research', 'reviews', 'doi', 'j', 'dsx', 'pmc', 'pmid', 'rezapouraghdam', 'hamed', 'akhshik', 'arash', 'ramkissoon', 'haywantee', 'march', 'application', 'of', 'machine', 'learning', 'to', 'predict', 'visitors', 'green', 'behavior', 'in', 'marine', 'protected', 'areas', 'evidence', 'from', 'cyprus', 'journal', 'of', 'sustainable', 'tourism', 'doi', 'dey', 'somdip', 'singh', 'amit', 'kumar', 'wang', 'xiaohang', 'mcdonald', 'maier', 'klaus', 'user', 'interaction', 'aware', 'reinforcement', 'learning', 'for', 'power', 'and', 'thermal', 'efficiency', 'of', 'cpu', 'gpu', 'mobile', 'mpsocs', 'design', 'automation', 'test', 'in', 'europe', 'conference', 'exhibition', 'date', 'doi', 'date', 'isbn', 's', 'cid', 'quested', 'tony', 'smartphones', 'get', 'smarter', 'with', 'essex', 'innovation', 'business', 'weekly', 'technology', 'news', 'business', 'news', 'cambridge', 'and', 'the', 'east', 'of', 'england', 'www', 'businessweekly', 'co', 'uk', 'retrieved', 'cite', 'web', 'cs', 'maint', 'url', 'status', 'link', 'williams', 'rhiannon', 'future', 'smartphones', 'will', 'prolong', 'their', 'own', 'battery', 'life', 'by', 'monitoring', 'owners', 'behaviour', 'i', 'retrieved', 'cite', 'web', 'cs', 'maint', 'url', 'status', 'link', 'why', 'machine', 'learning', 'models', 'often', 'fail', 'to', 'learn', 'quicktake', 'q', 'a', 'bloomberg', 'com', 'archived', 'from', 'the', 'original', 'on', 'retrieved', 'the', 'first', 'wave', 'of', 'corporate', 'ai', 'is', 'doomed', 'to', 'fail', 'harvard', 'business', 'review', 'retrieved', 'why', 'the', 'a', 'i', 'euphoria', 'is', 'doomed', 'to', 'fail', 'venturebeat', 'retrieved', 'reasons', 'why', 'your', 'machine', 'learning', 'project', 'will', 'fail', 'www', 'kdnuggets', 'com', 'retrieved', 'why', 'uber', 's', 'self', 'driving', 'car', 'killed', 'a', 'pedestrian', 'the', 'economist', 'retrieved', 'ibm', 's', 'watson', 'recommended', 'unsafe', 'and', 'incorrect', 'cancer', 'treatments', 'stat', 'stat', 'retrieved', 'hernandez', 'daniela', 'greenwald', 'ted', 'ibm', 'has', 'a', 'watson', 'dilemma', 'wall', 'street', 'journal', 'issn', 'retrieved', 'reddy', 'shivani', 'm', 'patel', 'sheila', 'weyrich', 'meghan', 'fenton', 'joshua', 'viswanathan', 'meera', 'comparison', 'of', 'a', 'traditional', 'systematic', 'review', 'approach', 'with', 'review', 'of', 'reviews', 'and', 'semi', 'automation', 'as', 'strategies', 'to', 'update', 'the', 'evidence', 'systematic', 'reviews', 'doi', 's', 'issn', 'pmc', 'pmid', 'a', 'b', 'garcia', 'megan', 'racist', 'in', 'the', 'machine', 'world', 'policy', 'journal', 'doi', 'issn', 's', 'cid', 'caliskan', 'aylin', 'bryson', 'joanna', 'j', 'narayanan', 'arvind', 'semantics', 'derived', 'automatically', 'from', 'language', 'corpora', 'contain', 'human', 'like', 'biases', 'science', 'arxiv', 'bibcode', 'sci', 'c', 'doi', 'science', 'aal', 'issn', 'pmid', 's', 'cid', 'wang', 'xinan', 'dasgupta', 'sanjoy', 'lee', 'd', 'd', 'sugiyama', 'm', 'luxburg', 'u', 'v', 'guyon', 'i', 'eds', 'an', 'algorithm', 'for', 'l', 'nearest', 'neighbor', 'search', 'via', 'monotonic', 'embedding', 'pdf', 'advances', 'in', 'neural', 'information', 'processing', 'systems', 'curran', 'associates', 'inc', 'pp', 'retrieved', 'julia', 'angwin', 'jeff', 'larson', 'lauren', 'kirchner', 'surya', 'mattu', 'machine', 'bias', 'propublica', 'retrieved', 'opinion', 'when', 'an', 'algorithm', 'helps', 'send', 'you', 'to', 'prison', 'new', 'york', 'times', 'retrieved', 'google', 'apologises', 'for', 'racist', 'blunder', 'bbc', 'news', 'retrieved', 'google', 'fixed', 'its', 'racist', 'algorithm', 'by', 'removing', 'gorillas', 'from', 'its', 'image', 'labeling', 'tech', 'the', 'verge', 'retrieved', 'opinion', 'artificial', 'intelligence', 's', 'white', 'guy', 'problem', 'new', 'york', 'times', 'retrieved', 'metz', 'rachel', 'why', 'microsoft', 's', 'teen', 'chatbot', 'tay', 'said', 'lots', 'of', 'awful', 'things', 'online', 'mit', 'technology', 'review', 'retrieved', 'simonite', 'tom', 'microsoft', 'says', 'its', 'racist', 'chatbot', 'illustrates', 'how', 'ai', 'isn', 't', 'adaptable', 'enough', 'to', 'help', 'most', 'businesses', 'mit', 'technology', 'review', 'retrieved', 'hempel', 'jessi', 'fei', 'fei', 'li', 's', 'quest', 'to', 'make', 'machines', 'better', 'for', 'humanity', 'wired', 'issn', 'retrieved', 'domingos', 'p', 'single', 'pixel', 'change', 'fools', 'ai', 'programs', 'bbc', 'news', 'november', 'archived', 'from', 'the', 'original', 'on', 'march', 'retrieved', 'march', 'ai', 'has', 'a', 'hallucination', 'problem', 'that', 's', 'proving', 'tough', 'to', 'fix', 'wired', 'archived', 'from', 'the', 'original', 'on', 'march', 'retrieved', 'march', 'kohavi', 'ron', 'a', 'study', 'of', 'cross', 'validation', 'and', 'bootstrap', 'for', 'accuracy', 'estimation', 'and', 'model', 'selection', 'pdf', 'international', 'joint', 'conference', 'on', 'artificial', 'intelligence', 'pontius', 'robert', 'gilmore', 'si', 'kangping', 'the', 'total', 'operating', 'characteristic', 'to', 'measure', 'diagnostic', 'ability', 'for', 'multiple', 'thresholds', 'international', 'journal', 'of', 'geographical', 'information', 'science', 'doi', 's', 'cid', 'bostrom', 'nick', 'the', 'ethics', 'of', 'artificial', 'intelligence', 'pdf', 'archived', 'from', 'the', 'original', 'pdf', 'on', 'march', 'retrieved', 'april', 'edionwe', 'tolulope', 'the', 'fight', 'against', 'racist', 'algorithms', 'the', 'outline', 'retrieved', 'november', 'jeffries', 'adrianne', 'machine', 'learning', 'is', 'racist', 'because', 'the', 'internet', 'is', 'racist', 'the', 'outline', 'retrieved', 'november', 'bostrom', 'nick', 'yudkowsky', 'eliezer', 'the', 'ethics', 'of', 'artificial', 'intelligence', 'pdf', 'nick', 'bostrom', 'm', 'o', 'r', 'prates', 'p', 'h', 'c', 'avelar', 'l', 'c', 'lamb', 'mar', 'assessing', 'gender', 'bias', 'in', 'machine', 'translation', 'a', 'case', 'study', 'with', 'google', 'translate', 'arxiv', 'cs', 'cy', 'cite', 'arxiv', 'cs', 'maint', 'uses', 'authors', 'parameter', 'link', 'narayanan', 'arvind', 'august', 'language', 'necessarily', 'contains', 'human', 'biases', 'and', 'so', 'will', 'machines', 'trained', 'on', 'language', 'corpora', 'freedom', 'to', 'tinker', 'char', 'danton', 's', 'shah', 'nigam', 'h', 'magnus', 'david', 'implementing', 'machine', 'learning', 'in', 'health', 'care', 'addressing', 'ethical', 'challenges', 'new', 'england', 'journal', 'of', 'medicine', 'doi', 'nejmp', 'issn', 'pmc', 'pmid', 'char', 'd', 's', 'shah', 'n', 'h', 'magnus', 'd', 'implementing', 'machine', 'learning', 'in', 'health', 'care', 'addressing', 'ethical', 'challenges', 'new', 'england', 'journal', 'of', 'medicine', 'doi', 'nejmp', 'pmc', 'pmid', 'research', 'ai', 'october', 'deep', 'neural', 'networks', 'for', 'acoustic', 'modeling', 'in', 'speech', 'recognition', 'airesearch', 'com', 'retrieved', 'october', 'gpus', 'continue', 'to', 'dominate', 'the', 'ai', 'accelerator', 'market', 'for', 'now', 'informationweek', 'december', 'retrieved', 'june', 'ray', 'tiernan', 'ai', 'is', 'changing', 'the', 'entire', 'nature', 'of', 'compute', 'zdnet', 'retrieved', 'june', 'ai', 'and', 'compute', 'openai', 'may', 'retrieved', 'june', 'cornell', 'ntt', 's', 'physical', 'neural', 'networks', 'a', 'radical', 'alternative', 'for', 'implementing', 'deep', 'neural', 'networks', 'that', 'enables', 'arbitrary', 'physical', 'systems', 'training', 'synced', 'may', 'nano', 'spaghetti', 'to', 'solve', 'neural', 'network', 'power', 'consumption', 'fafoutis', 'xenofon', 'marchegiani', 'letizia', 'elsts', 'atis', 'pope', 'james', 'piechocki', 'robert', 'craddock', 'ian', 'extending', 'the', 'battery', 'lifetime', 'of', 'wearable', 'sensors', 'with', 'embedded', 'machine', 'learning', 'ieee', 'th', 'world', 'forum', 'on', 'internet', 'of', 'things', 'wf', 'iot', 'doi', 'wf', 'iot', 'hdl', 'b', 'fdb', 'b', 'c', 'e', 'ab', 'c', 'f', 'isbn', 's', 'cid', 'a', 'beginner', 's', 'guide', 'to', 'machine', 'learning', 'for', 'embedded', 'systems', 'analytics', 'india', 'magazine', 'retrieved', 'synced', 'google', 'purdue', 'harvard', 'u', 's', 'open', 'source', 'framework', 'for', 'tinyml', 'achieves', 'up', 'to', 'x', 'speedups', 'on', 'fpgas', 'synced', 'syncedreview', 'com', 'retrieved', 'giri', 'davide', 'chiu', 'kuan', 'lin', 'di', 'guglielmo', 'giuseppe', 'mantovani', 'paolo', 'carloni', 'luca', 'p', 'esp', 'ml', 'platform', 'based', 'design', 'of', 'systems', 'on', 'chip', 'for', 'embedded', 'machine', 'learning', 'design', 'automation', 'test', 'in', 'europe', 'conference', 'exhibition', 'date', 'arxiv', 'doi', 'date', 'isbn', 's', 'cid', 'louis', 'marcia', 'sahaya', 'azad', 'zahra', 'delshadtehrani', 'leila', 'gupta', 'suyog', 'warden', 'pete', 'reddi', 'vijay', 'janapa', 'joshi', 'ajay', 'towards', 'deep', 'learning', 'using', 'tensorflow', 'lite', 'on', 'risc', 'v', 'harvard', 'university', 'retrieved', 'cite', 'web', 'cs', 'maint', 'url', 'status', 'link', 'ibrahim', 'ali', 'osta', 'mario', 'alameh', 'mohamad', 'saleh', 'moustafa', 'chible', 'hussein', 'valle', 'maurizio', 'approximate', 'computing', 'methods', 'for', 'embedded', 'machine', 'learning', 'th', 'ieee', 'international', 'conference', 'on', 'electronics', 'circuits', 'and', 'systems', 'icecs', 'doi', 'icecs', 'isbn', 's', 'cid', 'dblp', 'tensorflow', 'eager', 'a', 'multi', 'stage', 'python', 'embedded', 'dsl', 'for', 'machine', 'learning', 'dblp', 'org', 'retrieved', 'branco', 'sérgio', 'ferreira', 'andré', 'g', 'cabral', 'jorge', 'machine', 'learning', 'in', 'resource', 'scarce', 'embedded', 'systems', 'fpgas', 'and', 'end', 'devices', 'a', 'survey', 'electronics', 'doi', 'electronics', 'issn', 'sources', 'edit', 'domingos', 'pedro', 'september', 'the', 'master', 'algorithm', 'how', 'the', 'quest', 'for', 'the', 'ultimate', 'learning', 'machine', 'will', 'remake', 'our', 'world', 'basic', 'books', 'isbn', 'nilsson', 'nils', 'artificial', 'intelligence', 'a', 'new', 'synthesis', 'morgan', 'kaufmann', 'isbn', 'archived', 'from', 'the', 'original', 'on', 'july', 'retrieved', 'november', 'russell', 'stuart', 'j', 'norvig', 'peter', 'artificial', 'intelligence', 'a', 'modern', 'approach', 'nd', 'ed', 'upper', 'saddle', 'river', 'new', 'jersey', 'prentice', 'hall', 'isbn', 'poole', 'david', 'mackworth', 'alan', 'goebel', 'randy', 'computational', 'intelligence', 'a', 'logical', 'approach', 'new', 'york', 'oxford', 'university', 'press', 'isbn', 'archived', 'from', 'the', 'original', 'on', 'july', 'retrieved', 'august', 'further', 'reading', 'edit', 'nils', 'j', 'nilsson', 'introduction', 'to', 'machine', 'learning', 'trevor', 'hastie', 'robert', 'tibshirani', 'and', 'jerome', 'h', 'friedman', 'the', 'elements', 'of', 'statistical', 'learning', 'springer', 'isbn', 'pedro', 'domingos', 'september', 'the', 'master', 'algorithm', 'basic', 'books', 'isbn', 'ian', 'h', 'witten', 'and', 'eibe', 'frank', 'data', 'mining', 'practical', 'machine', 'learning', 'tools', 'and', 'techniques', 'morgan', 'kaufmann', 'pp', 'isbn', 'ethem', 'alpaydin', 'introduction', 'to', 'machine', 'learning', 'mit', 'press', 'isbn', 'david', 'j', 'c', 'mackay', 'information', 'theory', 'inference', 'and', 'learning', 'algorithms', 'cambridge', 'cambridge', 'university', 'press', 'isbn', 'richard', 'o', 'duda', 'peter', 'e', 'hart', 'david', 'g', 'stork', 'pattern', 'classification', 'nd', 'edition', 'wiley', 'new', 'york', 'isbn', 'christopher', 'bishop', 'neural', 'networks', 'for', 'pattern', 'recognition', 'oxford', 'university', 'press', 'isbn', 'stuart', 'russell', 'peter', 'norvig', 'artificial', 'intelligence', 'a', 'modern', 'approach', 'pearson', 'isbn', 'ray', 'solomonoff', 'an', 'inductive', 'inference', 'machine', 'ire', 'convention', 'record', 'section', 'on', 'information', 'theory', 'part', 'pp', 'ray', 'solomonoff', 'an', 'inductive', 'inference', 'machine', 'a', 'privately', 'circulated', 'report', 'from', 'the', 'dartmouth', 'summer', 'research', 'conference', 'on', 'ai', 'kevin', 'p', 'murphy', 'probabilistic', 'machine', 'learning', 'an', 'introduction', 'mit', 'press', 'external', 'links', 'edit', 'wikimedia', 'commons', 'has', 'media', 'related', 'to', 'machine', 'learning', 'quotations', 'related', 'to', 'machine', 'learning', 'at', 'wikiquote', 'international', 'machine', 'learning', 'society', 'mloss', 'is', 'an', 'academic', 'database', 'of', 'open', 'source', 'machine', 'learning', 'software', 'vtedifferentiable', 'computinggeneral', 'differentiable', 'programming', 'neural', 'turing', 'machine', 'differentiable', 'neural', 'computer', 'automatic', 'differentiation', 'neuromorphic', 'engineering', 'cable', 'theory', 'pattern', 'recognition', 'computational', 'learning', 'theory', 'tensor', 'calculus', 'concepts', 'gradient', 'descent', 'sgd', 'clustering', 'regression', 'overfitting', 'adversary', 'attention', 'convolution', 'loss', 'functions', 'backpropagation', 'normalization', 'activation', 'softmax', 'sigmoid', 'rectifier', 'regularization', 'datasets', 'augmentation', 'programming', 'languages', 'python', 'julia', 'application', 'machine', 'learning', 'artificial', 'neural', 'network', 'deep', 'learning', 'scientific', 'computing', 'artificial', 'intelligence', 'hardware', 'ipu', 'tpu', 'vpu', 'memristor', 'spinnaker', 'software', 'library', 'tensorflow', 'pytorch', 'keras', 'theano', 'implementationaudio', 'visual', 'alexnet', 'wavenet', 'human', 'image', 'synthesis', 'hwr', 'ocr', 'speech', 'synthesis', 'speech', 'recognition', 'facial', 'recognition', 'alphafold', 'dall', 'e', 'verbal', 'word', 'vec', 'transformer', 'bert', 'nmt', 'project', 'debater', 'watson', 'gpt', 'gpt', 'decisional', 'alphago', 'alphazero', 'q', 'learning', 'sarsa', 'openai', 'five', 'self', 'driving', 'car', 'muzero', 'action', 'selection', 'robot', 'control', 'people', 'alex', 'graves', 'ian', 'goodfellow', 'yoshua', 'bengio', 'geoffrey', 'hinton', 'yann', 'lecun', 'andrew', 'ng', 'demis', 'hassabis', 'david', 'silver', 'fei', 'fei', 'li', 'organizations', 'deepmind', 'openai', 'mit', 'csail', 'mila', 'google', 'brain', 'fair', 'portals', 'computer', 'programming', 'technology', 'category', 'artificial', 'neural', 'networks', 'machine', 'learning', 'vtecomputer', 'sciencenote', 'this', 'template', 'roughly', 'follows', 'the', 'acm', 'computing', 'classification', 'system', 'hardware', 'printed', 'circuit', 'board', 'peripheral', 'integrated', 'circuit', 'very', 'large', 'scale', 'integration', 'systems', 'on', 'chip', 'socs', 'energy', 'consumption', 'green', 'computing', 'electronic', 'design', 'automation', 'hardware', 'acceleration', 'computer', 'systems', 'organization', 'computer', 'architecture', 'embedded', 'system', 'real', 'time', 'computing', 'dependability', 'networks', 'network', 'architecture', 'network', 'protocol', 'network', 'components', 'network', 'scheduler', 'network', 'performance', 'evaluation', 'network', 'service', 'software', 'organization', 'interpreter', 'middleware', 'virtual', 'machine', 'operating', 'system', 'software', 'quality', 'software', 'notations', 'and', 'tools', 'programming', 'paradigm', 'programming', 'language', 'compiler', 'domain', 'specific', 'language', 'modeling', 'language', 'software', 'framework', 'integrated', 'development', 'environment', 'software', 'configuration', 'management', 'software', 'library', 'software', 'repository', 'software', 'development', 'control', 'variable', 'software', 'development', 'process', 'requirements', 'analysis', 'software', 'design', 'software', 'construction', 'software', 'deployment', 'software', 'maintenance', 'programming', 'team', 'open', 'source', 'model', 'theory', 'of', 'computation', 'model', 'of', 'computation', 'formal', 'language', 'automata', 'theory', 'computability', 'theory', 'computational', 'complexity', 'theory', 'logic', 'semantics', 'algorithms', 'algorithm', 'design', 'analysis', 'of', 'algorithms', 'algorithmic', 'efficiency', 'randomized', 'algorithm', 'computational', 'geometry', 'mathematics', 'of', 'computing', 'discrete', 'mathematics', 'probability', 'statistics', 'mathematical', 'software', 'information', 'theory', 'mathematical', 'analysis', 'numerical', 'analysis', 'theoretical', 'computer', 'science', 'information', 'systems', 'database', 'management', 'system', 'information', 'storage', 'systems', 'enterprise', 'information', 'system', 'social', 'information', 'systems', 'geographic', 'information', 'system', 'decision', 'support', 'system', 'process', 'control', 'system', 'multimedia', 'information', 'system', 'data', 'mining', 'digital', 'library', 'computing', 'platform', 'digital', 'marketing', 'world', 'wide', 'web', 'information', 'retrieval', 'security', 'cryptography', 'formal', 'methods', 'security', 'services', 'intrusion', 'detection', 'system', 'hardware', 'security', 'network', 'security', 'information', 'security', 'application', 'security', 'human', 'computer', 'interaction', 'interaction', 'design', 'social', 'computing', 'ubiquitous', 'computing', 'visualization', 'accessibility', 'concurrency', 'concurrent', 'computing', 'parallel', 'computing', 'distributed', 'computing', 'multithreading', 'multiprocessing', 'artificial', 'intelligence', 'natural', 'language', 'processing', 'knowledge', 'representation', 'and', 'reasoning', 'computer', 'vision', 'automated', 'planning', 'and', 'scheduling', 'search', 'methodology', 'control', 'method', 'philosophy', 'of', 'artificial', 'intelligence', 'distributed', 'artificial', 'intelligence', 'machine', 'learning', 'supervised', 'learning', 'unsupervised', 'learning', 'reinforcement', 'learning', 'multi', 'task', 'learning', 'cross', 'validation', 'graphics', 'animation', 'rendering', 'image', 'manipulation', 'graphics', 'processing', 'unit', 'mixed', 'reality', 'virtual', 'reality', 'image', 'compression', 'solid', 'modeling', 'applied', 'computing', 'e', 'commerce', 'enterprise', 'software', 'computational', 'mathematics', 'computational', 'physics', 'computational', 'chemistry', 'computational', 'biology', 'computational', 'social', 'science', 'computational', 'engineering', 'computational', 'healthcare', 'digital', 'art', 'electronic', 'publishing', 'cyberwarfare', 'electronic', 'voting', 'video', 'games', 'word', 'processing', 'operations', 'research', 'educational', 'technology', 'document', 'management', 'category', 'outline', 'wikiproject', 'commons', 'authority', 'control', 'national', 'libraries', 'germany', 'israel', 'united', 'states', 'japan', 'retrieved', 'from', 'https', 'en', 'wikipedia', 'org', 'w', 'index', 'php', 'title', 'machine_learning', 'oldid', 'categories', 'machine', 'learningcyberneticslearninghidden', 'categories', 'cs', 'errors', 'missing', 'periodicalcs', 'maint', 'uses', 'authors', 'parametercs', 'maint', 'url', 'statusarticles', 'with', 'short', 'descriptionshort', 'description', 'is', 'different', 'from', 'wikidatacommons', 'category', 'link', 'from', 'wikidataarticles', 'with', 'gnd', 'identifiersarticles', 'with', 'j', 'u', 'identifiersarticles', 'with', 'lccn', 'identifiersarticles', 'with', 'ndl', 'identifiers', 'navigation', 'menu', 'personal', 'tools', 'not', 'logged', 'intalkcontributionscreate', 'accountlog', 'in', 'namespaces', 'articletalk', 'english', 'views', 'readeditview', 'history', 'more', 'search', 'navigation', 'main', 'pagecontentscurrent', 'eventsrandom', 'articleabout', 'wikipediacontact', 'usdonate', 'contribute', 'helplearn', 'to', 'editcommunity', 'portalrecent', 'changesupload', 'file', 'tools', 'what', 'links', 'hererelated', 'changesupload', 'filespecial', 'pagespermanent', 'linkpage', 'informationcite', 'this', 'pagewikidata', 'item', 'print', 'export', 'download', 'as', 'pdfprintable', 'version', 'in', 'other', 'projects', 'wikimedia', 'commonswikiquotewikiversity', 'languages', 'العربيةঅসম', 'য', 'azərbaycancaব', 'ল', 'bân', 'lâm', 'gúभ', 'जप', 'र', 'българскиcatalàčeštinacymraegdanskالدارجةdeutscheestiελληνικάespañoleuskaraفارسیfrançaisgalego한국어հայերենह', 'न', 'द', 'bahasa', 'indonesiaíslenskaitalianoעבריתಕನ', 'ನಡlatviešulietuviųmagyarмакедонскиമലയ', 'ള', 'मर', 'ठ', 'bahasa', 'melayuмонголnederlands日本語norsk', 'bokmålnorsk', 'nynorskoccitanଓଡ', 'ଆپنجابیpolskiportuguêsromânăрусскийᱥᱟᱱᱛᱟᱲᱤshqipsimple', 'englishslovenščinaکوردیсрпски', 'srpskisrpskohrvatski', 'српскохрватскиsuomisvenskatagalogత', 'ల', 'గ', 'ไทยtürkçeукраїнськаاردوئۇيغۇرچە', 'uyghurchetiếng', 'việtvõro吴语粵語中文', 'edit', 'links', 'this', 'page', 'was', 'last', 'edited', 'on', 'march', 'at', 'utc', 'text', 'is', 'available', 'under', 'the', 'creative', 'commons', 'attribution', 'sharealike', 'license', 'additional', 'terms', 'may', 'apply', 'by', 'using', 'this', 'site', 'you', 'agree', 'to', 'the', 'terms', 'of', 'use', 'and', 'privacy', 'policy', 'wikipedia', 'is', 'a', 'registered', 'trademark', 'of', 'the', 'wikimedia', 'foundation', 'inc', 'a', 'non', 'profit', 'organization', 'privacy', 'policy', 'about', 'wikipedia', 'disclaimers', 'contact', 'wikipedia', 'mobile', 'view', 'developers', 'statistics', 'cookie', 'statement']
In [ ]:
 

Remove common words

Stop words are words which are filtered out before or after processing of natural language data (text). Stop words usually refers to the most common words in a language, there is no single universal list of stop words used by all natural language processing tools.

In [11]:
tokens = [word for word in tokens if not word in stopwords.words()]
tokens
Out[11]:
['machine',
 'learning',
 'wikipedia',
 'machine',
 'learning',
 'wikipedia',
 'free',
 'encyclopedia',
 'jump',
 'navigation',
 'jump',
 'search',
 'study',
 'algorithms',
 'improve',
 'automatically',
 'experience',
 'journal',
 'see',
 'machine',
 'learning',
 'journal',
 'statistical',
 'learning',
 'redirects',
 'statistical',
 'learning',
 'linguistics',
 'see',
 'statistical',
 'learning',
 'language',
 'acquisition',
 'part',
 'series',
 'onmachine',
 'learningand',
 'data',
 'mining',
 'problems',
 'classification',
 'clustering',
 'regression',
 'anomaly',
 'detection',
 'data',
 'cleaning',
 'automl',
 'association',
 'rules',
 'reinforcement',
 'learning',
 'structured',
 'prediction',
 'feature',
 'engineering',
 'feature',
 'learning',
 'online',
 'learning',
 'semi',
 'supervised',
 'learning',
 'unsupervised',
 'learning',
 'learning',
 'rank',
 'grammar',
 'induction',
 'supervised',
 'learning',
 'classification',
 'regression',
 'decision',
 'trees',
 'ensembles',
 'bagging',
 'boosting',
 'random',
 'forest',
 'nn',
 'linear',
 'regression',
 'naive',
 'bayes',
 'artificial',
 'neural',
 'networks',
 'logistic',
 'regression',
 'perceptron',
 'relevance',
 'vector',
 'machine',
 'rvm',
 'support',
 'vector',
 'machine',
 'svm',
 'clustering',
 'birch',
 'cure',
 'hierarchical',
 'means',
 'expectation',
 'maximization',
 'dbscan',
 'optics',
 'mean',
 'shift',
 'dimensionality',
 'reduction',
 'factor',
 'analysis',
 'cca',
 'ica',
 'lda',
 'nmf',
 'pca',
 'pgd',
 'sne',
 'structured',
 'prediction',
 'graphical',
 'models',
 'bayes',
 'net',
 'conditional',
 'random',
 'field',
 'hidden',
 'markov',
 'anomaly',
 'detection',
 'nn',
 'local',
 'outlier',
 'factor',
 'artificial',
 'neural',
 'network',
 'autoencoder',
 'cognitive',
 'computing',
 'deep',
 'learning',
 'deepdream',
 'multilayer',
 'perceptron',
 'rnn',
 'lstm',
 'gru',
 'esn',
 'restricted',
 'boltzmann',
 'machine',
 'gan',
 'convolutional',
 'neural',
 'network',
 'net',
 'transformer',
 'vision',
 'spiking',
 'neural',
 'network',
 'memtransistor',
 'electrochemical',
 'ram',
 'ecram',
 'reinforcement',
 'learning',
 'q',
 'learning',
 'sarsa',
 'temporal',
 'difference',
 'td',
 'theory',
 'kernel',
 'machines',
 'bias',
 'variance',
 'tradeoff',
 'computational',
 'learning',
 'theory',
 'empirical',
 'risk',
 'minimization',
 'occam',
 'learning',
 'pac',
 'learning',
 'statistical',
 'learning',
 'vc',
 'theory',
 'machine',
 'learning',
 'venues',
 'neurips',
 'icml',
 'ml',
 'jmlr',
 'arxiv',
 'cs',
 'lg',
 'related',
 'articles',
 'glossary',
 'artificial',
 'intelligence',
 'list',
 'datasets',
 'machine',
 'learning',
 'research',
 'outline',
 'machine',
 'learning',
 'vte',
 'part',
 'series',
 'onartificial',
 'intelligence',
 'major',
 'goals',
 'artificial',
 'general',
 'intelligence',
 'planning',
 'computer',
 'vision',
 'general',
 'game',
 'playing',
 'knowledge',
 'reasoning',
 'machine',
 'learning',
 'natural',
 'language',
 'processing',
 'robotics',
 'approaches',
 'symbolic',
 'deep',
 'learning',
 'bayesian',
 'networks',
 'evolutionary',
 'algorithms',
 'philosophy',
 'chinese',
 'room',
 'friendly',
 'control',
 'problem',
 'takeover',
 'ethics',
 'existential',
 'risk',
 'turing',
 'test',
 'history',
 'timeline',
 'progress',
 'winter',
 'technology',
 'applications',
 'projects',
 'programming',
 'languages',
 'glossary',
 'glossary',
 'vte',
 'machine',
 'learning',
 'ml',
 'study',
 'computer',
 'algorithms',
 'improve',
 'automatically',
 'experience',
 'use',
 'data',
 'seen',
 'part',
 'artificial',
 'intelligence',
 'machine',
 'learning',
 'algorithms',
 'build',
 'model',
 'based',
 'sample',
 'data',
 'known',
 'training',
 'data',
 'order',
 'make',
 'predictions',
 'decisions',
 'without',
 'explicitly',
 'programmed',
 'machine',
 'learning',
 'algorithms',
 'used',
 'wide',
 'variety',
 'applications',
 'medicine',
 'email',
 'filtering',
 'speech',
 'recognition',
 'computer',
 'vision',
 'difficult',
 'unfeasible',
 'develop',
 'conventional',
 'algorithms',
 'perform',
 'needed',
 'tasks',
 'subset',
 'machine',
 'learning',
 'closely',
 'related',
 'computational',
 'statistics',
 'focuses',
 'making',
 'predictions',
 'using',
 'computers',
 'machine',
 'learning',
 'statistical',
 'learning',
 'study',
 'mathematical',
 'optimization',
 'delivers',
 'methods',
 'theory',
 'application',
 'domains',
 'field',
 'machine',
 'learning',
 'data',
 'mining',
 'related',
 'field',
 'study',
 'focusing',
 'exploratory',
 'data',
 'analysis',
 'unsupervised',
 'learning',
 'implementations',
 'machine',
 'learning',
 'use',
 'data',
 'neural',
 'networks',
 'way',
 'mimics',
 'working',
 'biological',
 'brain',
 'application',
 'across',
 'business',
 'problems',
 'machine',
 'learning',
 'referred',
 'predictive',
 'analytics',
 'contents',
 'overview',
 'history',
 'relationships',
 'fields',
 'artificial',
 'intelligence',
 'data',
 'mining',
 'optimization',
 'generalization',
 'statistics',
 'theory',
 'approaches',
 'supervised',
 'learning',
 'unsupervised',
 'learning',
 'semi',
 'supervised',
 'learning',
 'reinforcement',
 'learning',
 'dimensionality',
 'reduction',
 'types',
 'self',
 'learning',
 'feature',
 'learning',
 'sparse',
 'dictionary',
 'learning',
 'anomaly',
 'detection',
 'robot',
 'learning',
 'association',
 'rules',
 'models',
 'artificial',
 'neural',
 'networks',
 'decision',
 'trees',
 'support',
 'vector',
 'machines',
 'regression',
 'analysis',
 'bayesian',
 'networks',
 'genetic',
 'algorithms',
 'training',
 'models',
 'federated',
 'learning',
 'applications',
 'limitations',
 'bias',
 'overfitting',
 'limitations',
 'model',
 'assessments',
 'ethics',
 'hardware',
 'neuromorphic',
 'physical',
 'neural',
 'networks',
 'embedded',
 'machine',
 'learning',
 'software',
 'free',
 'open',
 'source',
 'software',
 'proprietary',
 'software',
 'free',
 'open',
 'source',
 'editions',
 'proprietary',
 'software',
 'journals',
 'conferences',
 'see',
 'references',
 'sources',
 'reading',
 'external',
 'links',
 'overview',
 'edit',
 'learning',
 'algorithms',
 'work',
 'basis',
 'strategies',
 'algorithms',
 'inferences',
 'worked',
 'well',
 'past',
 'likely',
 'continue',
 'working',
 'well',
 'future',
 'inferences',
 'obvious',
 'since',
 'sun',
 'rose',
 'every',
 'morning',
 'last',
 'days',
 'probably',
 'rise',
 'tomorrow',
 'morning',
 'well',
 'nuanced',
 'x',
 'families',
 'geographically',
 'separate',
 'species',
 'color',
 'variants',
 'chance',
 'undiscovered',
 'black',
 'swans',
 'exist',
 'machine',
 'learning',
 'programs',
 'perform',
 'tasks',
 'without',
 'explicitly',
 'programmed',
 'involves',
 'computers',
 'learning',
 'data',
 'provided',
 'carry',
 'certain',
 'tasks',
 'simple',
 'tasks',
 'assigned',
 'computers',
 'possible',
 'program',
 'algorithms',
 'telling',
 'machine',
 'execute',
 'steps',
 'required',
 'solve',
 'problem',
 'hand',
 'computer',
 'part',
 'learning',
 'needed',
 'advanced',
 'tasks',
 'challenging',
 'human',
 'manually',
 'create',
 'needed',
 'algorithms',
 'practice',
 'turn',
 'effective',
 'help',
 'machine',
 'develop',
 'algorithm',
 'rather',
 'human',
 'programmers',
 'specify',
 'every',
 'needed',
 'step',
 'discipline',
 'machine',
 'learning',
 'employs',
 'various',
 'approaches',
 'teach',
 'computers',
 'accomplish',
 'tasks',
 'fully',
 'satisfactory',
 'algorithm',
 'available',
 'cases',
 'vast',
 'numbers',
 'potential',
 'answers',
 'exist',
 'approach',
 'label',
 'correct',
 'answers',
 'valid',
 'used',
 'training',
 'data',
 'computer',
 'improve',
 'algorithm',
 'uses',
 'determine',
 'correct',
 'answers',
 'example',
 'train',
 'system',
 'task',
 'digital',
 'character',
 'recognition',
 'mnist',
 'dataset',
 'handwritten',
 'digits',
 'often',
 'used',
 'history',
 'relationships',
 'fields',
 'edit',
 'see',
 'timeline',
 'machine',
 'learning',
 'term',
 'machine',
 'learning',
 'coined',
 'arthur',
 'samuel',
 'american',
 'ibmer',
 'pioneer',
 'field',
 'computer',
 'gaming',
 'artificial',
 'intelligence',
 'synonym',
 'self',
 'teaching',
 'computers',
 'used',
 'time',
 'period',
 'representative',
 'book',
 'machine',
 'learning',
 'research',
 'nilsson',
 'book',
 'learning',
 'machines',
 'dealing',
 'mostly',
 'machine',
 'learning',
 'pattern',
 'classification',
 'interest',
 'related',
 'pattern',
 'recognition',
 'continued',
 'described',
 'duda',
 'hart',
 'report',
 'given',
 'using',
 'teaching',
 'strategies',
 'neural',
 'network',
 'learns',
 'recognize',
 'characters',
 'letters',
 'digits',
 'special',
 'symbols',
 'computer',
 'terminal',
 'tom',
 'mitchell',
 'provided',
 'widely',
 'quoted',
 'formal',
 'definition',
 'algorithms',
 'studied',
 'machine',
 'learning',
 'field',
 'computer',
 'program',
 'said',
 'learn',
 'experience',
 'respect',
 'class',
 'tasks',
 'performance',
 'measure',
 'p',
 'performance',
 'tasks',
 'measured',
 'p',
 'improves',
 'experience',
 'definition',
 'tasks',
 'machine',
 'learning',
 'concerned',
 'offers',
 'fundamentally',
 'operational',
 'definition',
 'rather',
 'defining',
 'field',
 'cognitive',
 'terms',
 'follows',
 'alan',
 'turing',
 'proposal',
 'paper',
 'computing',
 'machinery',
 'intelligence',
 'question',
 'machines',
 'think',
 'replaced',
 'question',
 'machines',
 'thinking',
 'entities',
 'modern',
 'day',
 'machine',
 'learning',
 'two',
 'objectives',
 'classify',
 'data',
 'based',
 'models',
 'developed',
 'purpose',
 'make',
 'predictions',
 'future',
 'outcomes',
 'based',
 'models',
 'hypothetical',
 'algorithm',
 'specific',
 'classifying',
 'data',
 'may',
 'use',
 'computer',
 'vision',
 'moles',
 'coupled',
 'supervised',
 'learning',
 'order',
 'train',
 'classify',
 'cancerous',
 'moles',
 'machine',
 'learning',
 'algorithm',
 'stock',
 'trading',
 'may',
 'inform',
 'trader',
 'future',
 'potential',
 'predictions',
 'artificial',
 'intelligence',
 'edit',
 'machine',
 'learning',
 'subfield',
 'part',
 'machine',
 'learning',
 'subfield',
 'part',
 'subfield',
 'machine',
 'learning',
 'scientific',
 'endeavor',
 'machine',
 'learning',
 'grew',
 'quest',
 'artificial',
 'intelligence',
 'early',
 'days',
 'academic',
 'discipline',
 'researchers',
 'interested',
 'machines',
 'learn',
 'data',
 'attempted',
 'approach',
 'problem',
 'various',
 'symbolic',
 'methods',
 'well',
 'termed',
 'neural',
 'networks',
 'mostly',
 'perceptrons',
 'models',
 'later',
 'found',
 'reinventions',
 'generalized',
 'linear',
 'models',
 'statistics',
 'probabilistic',
 'reasoning',
 'employed',
 'especially',
 'automated',
 'medical',
 'diagnosis',
 'however',
 'increasing',
 'emphasis',
 'logical',
 'knowledge',
 'based',
 'approach',
 'caused',
 'rift',
 'machine',
 'learning',
 'probabilistic',
 'systems',
 'plagued',
 'theoretical',
 'practical',
 'problems',
 'data',
 'acquisition',
 'representation',
 'expert',
 'systems',
 'dominate',
 'statistics',
 'favor',
 'work',
 'symbolic',
 'knowledge',
 'based',
 'learning',
 'continue',
 'within',
 'leading',
 'inductive',
 'logic',
 'programming',
 'statistical',
 'line',
 'research',
 'outside',
 'field',
 'proper',
 'pattern',
 'recognition',
 'information',
 'retrieval',
 'neural',
 'networks',
 'research',
 'abandoned',
 'computer',
 'science',
 'around',
 'time',
 'line',
 'continued',
 'outside',
 'cs',
 'field',
 'connectionism',
 'researchers',
 'disciplines',
 'including',
 'hopfield',
 'rumelhart',
 'hinton',
 'main',
 'success',
 'came',
 'mid',
 'reinvention',
 'backpropagation',
 'machine',
 'learning',
 'ml',
 'reorganized',
 'separate',
 'field',
 'started',
 'flourish',
 'field',
 'changed',
 'goal',
 'achieving',
 'artificial',
 'intelligence',
 'tackling',
 'solvable',
 'problems',
 'practical',
 'nature',
 'shifted',
 'focus',
 'away',
 'symbolic',
 'approaches',
 'inherited',
 'toward',
 'methods',
 'models',
 'borrowed',
 'statistics',
 'probability',
 'theory',
 'difference',
 'ml',
 'frequently',
 'misunderstood',
 'ml',
 'learns',
 'predicts',
 'based',
 'passive',
 'observations',
 'whereas',
 'implies',
 'agent',
 'interacting',
 'environment',
 'learn',
 'actions',
 'maximize',
 'chance',
 'successfully',
 'achieving',
 'goals',
 'many',
 'sources',
 'continue',
 'assert',
 'ml',
 'remains',
 'subfield',
 ...]
In [ ]:
 

Count frequency of words

Class collections.Counter([iterable-or-mapping]) - A Counter is a collection where elements are stored as dictionary keys and their counts are stored as dictionary values.

In [12]:
word_frequencies = collections.Counter(tokens)
print(word_frequencies)
Counter({'learning': 353, 'machine': 204, 'data': 119, 'artificial': 59, 'algorithms': 55, 'training': 52, 'edit': 52, 'retrieved': 52, 'neural': 46, 'model': 43, 'systems': 40, 'intelligence': 37, 'isbn': 37, 'networks': 35, 'computer': 34, 'used': 34, 'algorithm': 32, 'theory': 31, 'software': 31, 'network': 30, 'set': 30, 'supervised': 29, 'analysis': 27, 'models': 27, 'methods': 27, 'classification': 25, 'system': 25, 'mining': 24, 'research': 24, 'based': 24, 'information': 24, 'detection': 22, 'unsupervised': 22, 'computing': 22, 'regression': 21, 'computational': 21, 'example': 21, 'science': 21, 'statistical': 20, 'reinforcement': 20, 'field': 20, 'programming': 20, 'main': 20, 'new': 20, 'knowledge': 19, 'statistics': 19, 'using': 19, 'article': 19, 'journal': 18, 'language': 18, 'feature': 18, 'deep': 18, 'recognition': 18, 'b': 18, 'often': 17, 'may': 17, 'many': 17, 'decision': 16, 'p': 16, 'examples': 16, 'cid': 16, 'tasks': 15, 'pattern': 15, 'learn': 15, 'input': 15, 'conference': 15, 'pp': 15, 'rules': 14, 'linear': 14, 'machines': 14, 'bias': 14, 'related': 14, 'processing': 14, 'pdf': 14, 'press': 14, 'problems': 13, 'dictionary': 13, 'embedded': 13, 'human': 13, 'approach': 13, 'time': 13, 'rule': 13, 'part': 12, 'vector': 12, 'use': 12, 'predictions': 12, 'without': 12, 'perform': 12, 'optimization': 12, 'self': 12, 'genetic': 12, 'performance': 12, 'inputs': 12, 'features': 12, 'techniques': 12, 'process': 12, 'original': 12, 'international': 12, 'anomaly': 11, 'association': 11, 'cs': 11, 'approaches': 11, 'test': 11, 'applications': 11, 'known': 11, 'make': 11, 'sparse': 11, 'representation': 11, 'inductive': 11, 'environment': 11, 'method': 11, 'function': 11, 'trained': 11, 'signal': 11, 'called': 11, 'biases': 11, 'vision': 10, 'ml': 10, 'bayesian': 10, 'problem': 10, 'technology': 10, 'overfitting': 10, 'hardware': 10, 'program': 10, 'two': 10, 'logic': 10, 'learned': 10, 'modeling': 10, 'represented': 10, 'image': 10, 'neurons': 10, 'google': 10, 'introduction': 10, 'issn': 10, 'archived': 10, 'study': 9, 'support': 9, 'arxiv': 9, 'control': 9, 'speech': 9, 'mathematical': 9, 'well': 9, 'given': 9, 'found': 9, 'goal': 9, 'discovery': 9, 'r': 9, 'review': 9, 'racist': 9, 'design': 9, 'pmid': 9, 'order': 8, 'application': 8, 'brain': 8, 'generalization': 8, 'robot': 8, 'probabilistic': 8, 'different': 8, 'accuracy': 8, 'algorithmic': 8, 'output': 8, 'typically': 8, 'variables': 8, 'dimensional': 8, 'g': 8, 'applied': 8, 'large': 8, 'first': 8, 'inference': 8, 'tree': 8, 'springer': 8, 'people': 8, 'university': 8, 'search': 7, 'see': 7, 'semi': 7, 'dimensionality': 7, 'reduction': 7, 'outlier': 7, 'game': 7, 'computers': 7, 'physical': 7, 'open': 7, 'source': 7, 'uses': 7, 'task': 7, 'class': 7, 'specific': 7, 'medical': 7, 'nature': 7, 'predict': 7, 'labels': 7, 'like': 7, 'include': 7, 'interaction': 7, 'real': 7, 'represent': 7, 'fail': 7, 'shapiro': 7, 'health': 7, 'ibm': 7, 'david': 7, 'pmc': 7, 'maint': 7, 'march': 7, 'wikipedia': 6, 'improve': 6, 'clustering': 6, 'prediction': 6, 'engineering': 6, 'trees': 6, 'random': 6, 'general': 6, 'natural': 6, 'ethics': 6, 'history': 6, 'decisions': 6, 'business': 6, 'federated': 6, 'solve': 6, 'various': 6, 'term': 6, 'report': 6, 'terms': 6, 'including': 6, 'observations': 6, 'databases': 6, 'tools': 6, 'space': 6, 'sets': 6, 'complexity': 6, 'negative': 6, 'outputs': 6, 'would': 6, 'cluster': 6, 'labeled': 6, 'w': 6, 'compute': 6, 'behavior': 6, 'representations': 6, 'world': 6, 'classifier': 6, 'web': 6, 'fei': 6, 'york': 6, 'ieee': 6, 'robert': 6, 'eds': 6, 'link': 6, 'cambridge': 6, 'security': 6, 'free': 5, 'experience': 5, 'difference': 5, 'list': 5, 'turing': 5, 'explicitly': 5, 'programmed': 5, 'variety': 5, 'way': 5, 'relationships': 5, 'fields': 5, 'types': 5, 'proprietary': 5, 'work': 5, 'future': 5, 'separate': 5, 'black': 5, 'exist': 5, 'programs': 5, 'certain': 5, 'arthur': 5, 'book': 5, 'learns': 5, 'definition': 5, 'modern': 5, 'researchers': 5, 'automated': 5, 'however': 5, 'logical': 5, 'theoretical': 5, 'within': 5, 'previously': 5, 'unknown': 5, 'loss': 5, 'instances': 5, 'patterns': 5, 'addition': 5, 'computation': 5, 'polynomial': 5, 'results': 5, 'positive': 5, 'categories': 5, 'matrix': 5, 'similarity': 5, 'either': 5, 'changing': 5, 'emotion': 5, 'situation': 5, 'performing': 5, 'neuron': 5, 'connection': 5, 'layers': 5, 'layer': 5, 'microsoft': 5, 'result': 5, 'privacy': 5, 'netflix': 5, 'art': 5, 'watson': 5, 'ethical': 5, 'wikimedia': 5, 'automation': 5, 'november': 5, 'august': 5, 'proceedings': 5, 'survey': 5, 'series': 4, 'svm': 4, 'net': 4, 'hidden': 4, 'kernel': 4, 'glossary': 4, 'datasets': 4, 'outline': 4, 'playing': 4, 'reasoning': 4, 'symbolic': 4, 'languages': 4, 'needed': 4, 'biological': 4, 'predictive': 4, 'limitations': 4, 'neuromorphic': 4, 'external': 4, 'links': 4, 'likely': 4, 'continue': 4, 'involves': 4, 'provided': 4, 'effective': 4, 'help': 4, 'step': 4, 'potential': 4, 'digital': 4, 'samuel': 4, 'nilsson': 4, 'subfield': 4, 'quest': 4, 'leading': 4, 'line': 4, 'probability': 4, 'intelligent': 4, 'considered': 4, 'evaluated': 4, 'ability': 4, 'functions': 4, 'principal': 4, 'michael': 4, 'context': 4, 'instead': 4, 'common': 4, 'best': 4, 'hypothesis': 4, 'complex': 4, 'discovering': 4, 'driving': 4, 'contains': 4, 'associated': 4, 'value': 4, 'area': 4, 'objects': 4, 'recommendation': 4, 'identify': 4, 'clusters': 4, 'reducing': 4, 'component': 4, 'higher': 4, 'manifold': 4, 'high': 4, 'fit': 4, 'paradigm': 4, 'crossbar': 4, 'caa': 4, 'consequence': 4, 'attempt': 4, 'multiple': 4, 'images': 4, 'items': 4, 'particular': 4, 'intrusion': 4, 'normal': 4, 'characteristic': 4, 'scale': 4, 'bioinformatics': 4, 'transactions': 4, 'database': 4, 'ehud': 4, 'additional': 4, 'social': 4, 'target': 4, 'category': 4, 'single': 4, 'mathematics': 4, 'could': 4, 'devices': 4, 'user': 4, 'contain': 4, 'gorillas': 4, 'thus': 4, 'challenges': 4, 'cross': 4, 'validation': 4, 'rate': 4, 'operating': 4, 'openai': 4, 'tensorflow': 4, '_': 4, 'domingos': 4, 'ethem': 4, 'alpaydin': 4, 'development': 4, 'citeseerx': 4, 'september': 4, 'october': 4, 'bozinovski': 4, 'russell': 4, 'stuart': 4, 'norvig': 4, 'hall': 4, 'library': 4, 'james': 4, 'bengio': 4, 'andrew': 4, 'christopher': 4, 'bibcode': 4, 'inc': 4, 'management': 4, 'th': 4, 'july': 4, 'june': 4, 'date': 4, 'news': 4, 'url': 4, 'navigation': 3, 'automatically': 3, 'linguistics': 3, 'online': 3, 'induction': 3, 'means': 3, 'pca': 3, 'graphical': 3, 'markov': 3, 'cognitive': 3, 'q': 3, 'risk': 3, 'goals': 3, 'evolutionary': 3, 'projects': 3, 'build': 3, 'sample': 3, 'medicine': 3, 'email': 3, 'subset': 3, 'closely': 3, 'focuses': 3, 'making': 3, 'domains': 3, 'analytics': 3, 'journals': 3, 'conferences': 3, 'sources': 3, 'basis': 3, 'strategies': 3, 'inferences': 3, 'since': 3, 'last': 3, 'x': 3, 'rather': 3, 'available': 3, 'answers': 3, 'determine': 3, 'train': 3, 'teaching': 3, 'representative': 3, 'duda': 3, 'hart': 3, 'tom': 3, 'mitchell': 3, 'formal': 3, 'studied': 3, 'said': 3, 'respect': 3, 'measure': 3, 'concerned': 3, 'question': 3, 'developed': 3, 'especially': 3, 'diagnosis': 3, 'practical': 3, 'retrieval': 3, 'actions': 3, 'maximize': 3, 'properties': 3, 'learner': 3, 'basic': 3, 'kdd': 3, 'key': 3, 'cannot': 3, 'due': 3, 'pre': 3, 'unseen': 3, 'current': 3, 'according': 3, 'jordan': 3, 'generally': 3, 'distribution': 3, 'three': 3, 'feedback': 3, 'desired': 3, 'find': 3, 'structure': 3, 'dynamic': 3, 'white': 3, 'array': 3, 'sometimes': 3, 'limited': 3, 'values': 3, 'similar': 3, 'visual': 3, 'density': 3, 'estimation': 3, 'subsets': 3, 'members': 3, 'graph': 3, 'unlabeled': 3, 'exact': 3, 'number': 3, 'low': 3, 'regularization': 3, 'fold': 3, 'adaptive': 3, 'situations': 3, 'action': 3, 'update': 3, 'several': 3, 'better': 3, 'components': 3, 'generating': 3, 'necessarily': 3, 'tensor': 3, 'require': 3, 'video': 3, 'built': 3, 'noise': 3, 'rare': 3, 'fraud': 3, 'text': 3, 'able': 3, 'detect': 3, 'least': 3, 'inspired': 3, 'strong': 3, 'apply': 3, 'marketing': 3, 'market': 3, 'sequence': 3, 'facts': 3, 'plotkin': 3, 'proving': 3, 'represents': 3, 'ann': 3, 'collection': 3, 'units': 3, 'times': 3, 'attention': 3, 'translation': 3, 'item': 3, 'variable': 3, 'whether': 3, 'efficient': 3, 'uncertainty': 3, 'selection': 3, 'good': 3, 'need': 3, 'users': 3, 'service': 3, 'society': 3, 'integrated': 3, 'distributed': 3, 'send': 3, 'efficiency': 3, 'mobile': 3, 'internet': 3, 'media': 3, 'prize': 3, 'joint': 3, 'wall': 3, 'street': 3, 'diagnostic': 3, 'green': 3, 'lack': 3, 'evaluation': 3, 'car': 3, 'evidence': 3, 'systematic': 3, 'still': 3, 'chatbot': 3, 'adversarial': 3, 'true': 3, 'toc': 3, 'european': 3, 'corpora': 3, 'personal': 3, 'improving': 3, 'cloud': 3, 'emulate': 3, 'approximate': 3, 'platform': 3, 'enterprise': 3, 'differentiable': 3, 'mcgraw': 3, 'hill': 3, 'martin': 3, 'f': 3, 'bishop': 3, 'vii': 3, 'www': 3, 'vol': 3, 'stat': 3, 'nd': 3, 'prentice': 3, 'yoshua': 3, 'second': 3, 'org': 3, 'authors': 3, 'cybernetics': 3, 'lee': 3, 'ng': 3, 'kumar': 3, 'acm': 3, 'fleer': 3, 'moringen': 3, 'ritter': 3, 'morgan': 3, 'kaufmann': 3, 'hui': 3, 'blog': 3, 'tech': 3, 'things': 3, 'reviews': 3, 'england': 3, 'status': 3, 'harvard': 3, 'policy': 3, 'bostrom': 3, 'nick': 3, 'implementing': 3, 'ray': 3, 'synced': 3, 'ian': 3, 'electronics': 3, 'synthesis': 3, 'commons': 3, 'electronic': 3, 'organization': 3, 'identifiersarticles': 3, 'encyclopedia': 2, 'jump': 2, 'acquisition': 2, 'structured': 2, 'forest': 2, 'nn': 2, 'bayes': 2, 'logistic': 2, 'perceptron': 2, 'cure': 2, 'hierarchical': 2, 'factor': 2, 'conditional': 2, 'multilayer': 2, 'restricted': 2, 'convolutional': 2, 'transformer': 2, 'sarsa': 2, 'variance': 2, 'empirical': 2, 'minimization': 2, 'neurips': 2, 'icml': 2, 'articles': 2, 'vte': 2, 'major': 2, 'planning': 2, 'philosophy': 2, 'timeline': 2, 'seen': 2, 'wide': 2, 'filtering': 2, 'difficult': 2, 'develop': 2, 'implementations': 2, 'mimics': 2, 'working': 2, 'across': 2, 'referred': 2, 'overview': 2, 'assessments': 2, 'editions': 2, 'references': 2, 'reading': 2, 'past': 2, 'sun': 2, 'every': 2, 'morning': 2, 'days': 2, 'species': 2, 'chance': 2, 'simple': 2, 'assigned': 2, 'required': 2, 'hand': 2, 'practice': 2, 'discipline': 2, 'employs': 2, 'fully': 2, 'cases': 2, 'vast': 2, 'numbers': 2, 'label': 2, 'correct': 2, 'dataset': 2, 'digits': 2, 'coined': 2, 'dealing': 2, 'mostly': 2, 'interest': 2, 'continued': 2, 'recognize': 2, 'letters': 2, 'improves': 2, 'defining': 2, 'follows': 2, 'alan': 2, 'machinery': 2, 'thinking': 2, 'objectives': 2, 'classify': 2, 'outcomes': 2, 'moles': 2, 'scientific': 2, 'academic': 2, 'perceptrons': 2, 'later': 2, 'employed': 2, 'increasing': 2, 'dominate': 2, 'outside': 2, 'disciplines': 2, 'hinton': 2, 'backpropagation': 2, 'changed': 2, 'achieving': 2, 'toward': 2, 'frequently': 2, 'predicts': 2, 'agent': 2, 'view': 2, 'significantly': 2, 'much': 2, 'ecml': 2, 'pkdd': 2, 'assumptions': 2, 'usually': 2, 'express': 2, 'correctly': 2, 'samples': 2, 'active': 2, 'topic': 2, 'methodological': 2, 'principles': 2, 'long': 2, 'call': 2, 'overall': 2, 'breiman': 2, 'less': 2, 'adopted': 2, 'objective': 2, 'enables': 2, 'produce': 2, 'sufficiently': 2, 'accurate': 2, 'bounds': 2, 'error': 2, 'underlying': 2, 'increased': 2, 'decreases': 2, 'kinds': 2, 'show': 2, 'broad': 2, 'teacher': 2, 'towards': 2, 'opponent': 2, 'rewards': 2, 'tries': 2, 'divides': 2, 'boundary': 2, 'consists': 2, 'numerical': 2, 'file': 2, 'verification': 2, 'learningsee': 2, 'commonalities': 2, 'presence': 2, 'finding': 2, 'encompasses': 2, 'drawn': 2, 'defined': 2, 'estimated': 2, 'falls': 2, 'missing': 2, 'yet': 2, 'amount': 2, 'resulting': 2, 'agents': 2, 'operations': 2, 'mdp': 2, 'autonomous': 2, 'dimension': 2, 'popular': 2, 'smaller': 2, 'along': 2, 'assumption': 2, 'meta': 2, 'dominant': 2, 'introduced': 2, 'advice': 2, 'emotions': 2, 'cognition': 2, 'memory': 2, 'following': 2, 'secondary': 2, 'environments': 2, 'behavioral': 2, 'receives': 2, 'initial': 2, 'aim': 2, 'useful': 2, 'technique': 2, 'allows': 2, 'factorization': 2, 'forms': 2, 'constraint': 2, 'meaning': 2, 'multilinear': 2, 'subspace': 2, 'discover': 2, 'level': 2, 'explain': 2, 'observed': 2, 'attempts': 2, 'alternative': 2, 'heuristic': 2, 'svd': 2, 'already': 2, 'sparsely': 2, 'identification': 2, 'majority': 2, 'structural': 2, 'errors': 2, 'anomalies': 2, 'deviations': 2, 'aggregated': 2, 'representing': 2, 'instance': 2, 'generated': 2, 'store': 2, 'collectively': 2, 'contrast': 2, 'commonly': 2, 'concept': 2, 'agrawal': 2, 'imieliński': 2, 'swami': 2, 'transaction': 2, 'mathrm': 2, 'onions': 2, 'potatoes': 2, 'customer': 2, 'areas': 2, 'continuous': 2, 'ilp': 2, 'background': 2, 'hypotheses': 2, 'functional': 2, 'foundation': 2, 'setting': 2, 'philosophical': 2, 'nodes': 2, 'another': 2, 'connectionist': 2, 'considering': 2, 'connected': 2, 'edges': 2, 'weight': 2, 'increases': 2, 'threshold': 2, 'signals': 2, 'biology': 2, 'board': 2, 'games': 2, 'processes': 2, 'successful': 2, 'go': 2, 'branches': 2, 'leaves': 2, 'discrete': 2, 'lead': 2, 'svms': 2, 'although': 2, 'trick': 2, 'implicitly': 2, 'relationship': 2, 'form': 2, 'trendline': 2, 'excel': 2, 'even': 2, 'rain': 2, 'influences': 2, 'sprinkler': 2, 'influence': 2, 'belief': 2, 'directed': 2, 'acyclic': 2, 'diseases': 2, 'symptoms': 2, 'sequences': 2, 'engineers': 2, 'sensor': 2, 'collected': 2, 'individual': 2, 'derived': 2, 'biased': 2, 'impacts': 2, 'teams': 2, 'centralized': 2, 'quality': 2, 'financial': 2, 'embedding': 2, 'monitoring': 2, 'services': 2, 'team': 2, 'made': 2, 'big': 2, 'firm': 2, 'co': 2, 'vinod': 2, 'khosla': 2, 'doctors': 2, 'next': 2, 'fine': 2, 'paintings': 2, 'among': 2, 'created': 2, 'covid': 2, 'recently': 2, 'thermal': 2, 'behaviour': 2, 'deliver': 2, 'reasons': 2, 'wrong': 2, 'resources': 2, 'uber': 2, 'failed': 2, 'pedestrian': 2, 'killed': 2, 'healthcare': 2, 'burden': 2, 'reduce': 2, 'sensitivity': 2, 'issues': 2, 'tool': 2, 'accordance': 2, 'brown': 2, 'horses': 2, 'might': 2, 'humans': 2, 'pixel': 2, 'holdout': 2, 'comparison': 2, 'respectively': 2, 'bootstrap': 2, 'investigators': 2, 'false': 2, 'rates': 2, 'numerators': 2, 'denominators': 2, 'total': 2, 'shows': 2, 'roc': 2, 'uk': 2, 'george': 2, 'previous': 2, 'job': 2, 'hiring': 2, 'applicants': 2, 'technical': 2, 'rely': 2, 'professionals': 2, 'designed': 2, 'public': 2, 'united': 2, 'states': 2, 'dilemma': 2, 'provide': 2, 'patients': 2, 'owners': 2, 'requires': 2, 'advances': 2, 'gpus': 2, 'alexnet': 2, 'alphazero': 2, 'electrically': 2, 'adjustable': 2, 'material': 2, 'synapse': 2, 'memristor': 2, 'wearable': 2, 'transferring': 2, 'acceleration': 2, 'keras': 2, 'root': 2, 'pytorch': 2, 'modeler': 2, 'oracle': 2, 'miner': 2, 'aaai': 2, 'volume': 2, 'publication': 2, 'john': 2, 'circuits': 2, 'exploration': 2, 'via': 2, 'friedman': 2, 'jerome': 2, 'chapter': 2, 'fourth': 2, 'kohavi': 2, 'april': 2, 'richard': 2, 'wiley': 2, 'department': 2, 'massachusetts': 2, 'https': 2, 'edu': 2, 'ss': 2, 'github': 2, 'cornell': 2, 'daniela': 2, 'witten': 2, 'trevor': 2, 'hastie': 2, 'tibshirani': 2, 'mohri': 2, 'mehryar': 2, 'rostamizadeh': 2, 'afshin': 2, 'talwalkar': 2, 'ameet': 2, 'foundations': 2, 'stephen': 2, 'edition': 2, 'section': 2, 'alex': 2, 'christophe': 2, 'parameter': 2, 'holland': 2, 'vincent': 2, 'jason': 2, 'honglak': 2, 'workshop': 2, 'pearson': 2, 'publishers': 2, 'klatzky': 2, 'haptic': 2, 'publishing': 2, 'piatetsky': 2, 'gregory': 2, 'construction': 2, 'sigmod': 2, 'automatic': 2, 'bf': 2, 'january': 2, 'lin': 2, 'magazine': 2, 'page': 2, 'physics': 2, 'verge': 2, 'ibrahim': 2, 'haleem': 2, 'wang': 2, 'power': 2, 'europe': 2, 'exhibition': 2, 'smartphones': 2, 'battery': 2, 'doomed': 2, 'project': 2, 'narayanan': 2, 'arvind': 2, 'semantics': 2, 'julia': 2, 'opinion': 2, 'bbc': 2, 'wired': 2, 'char': 2, 'shah': 2, 'magnus': 2, 'addressing': 2, 'nejmp': 2, 'consumption': 2, 'wf': 2, 'iot': 2, 'framework': 2, 'fpgas': 2, 'chip': 2, 'icecs': 2, 'dblp': 2, 'python': 2, 'pedro': 2, 'master': 2, 'books': 2, 'nils': 2, 'oxford': 2, 'solomonoff': 2, 'word': 2, 'gpt': 2, 'circuit': 2, 'architecture': 2, 'virtual': 2, 'graphics': 2, 'reality': 2, 'changesupload': 2, 'bahasa': 2, 'redirects': 1, 'onmachine': 1, 'learningand': 1, 'cleaning': 1, 'automl': 1, 'rank': 1, 'grammar': 1, 'ensembles': 1, 'bagging': 1, 'boosting': 1, 'naive': 1, 'relevance': 1, 'rvm': 1, 'birch': 1, 'expectation': 1, 'maximization': 1, 'dbscan': 1, 'optics': 1, 'mean': 1, 'shift': 1, 'cca': 1, 'ica': 1, 'lda': 1, 'nmf': 1, 'pgd': 1, 'sne': 1, 'local': 1, 'autoencoder': 1, 'deepdream': 1, 'rnn': 1, 'lstm': 1, 'gru': 1, 'esn': 1, 'boltzmann': 1, 'gan': 1, 'spiking': 1, 'memtransistor': 1, 'electrochemical': 1, 'ram': 1, 'ecram': 1, 'temporal': 1, 'td': 1, 'tradeoff': 1, 'occam': 1, 'pac': 1, 'vc': 1, 'venues': 1, 'jmlr': 1, 'lg': 1, 'onartificial': 1, 'robotics': 1, 'chinese': 1, 'room': 1, 'friendly': 1, 'takeover': 1, 'existential': 1, 'progress': 1, 'winter': 1, 'unfeasible': 1, 'conventional': 1, 'delivers': 1, 'focusing': 1, 'exploratory': 1, 'contents': 1, 'worked': 1, 'obvious': 1, 'rose': 1, 'probably': 1, 'rise': 1, 'tomorrow': 1, 'nuanced': 1, 'families': 1, 'geographically': 1, 'color': 1, 'variants': 1, 'undiscovered': 1, 'swans': 1, 'carry': 1, 'possible': 1, 'telling': 1, 'execute': 1, 'steps': 1, 'advanced': 1, 'challenging': 1, 'manually': 1, 'create': 1, 'turn': 1, 'programmers': 1, 'specify': 1, 'teach': 1, 'accomplish': 1, 'satisfactory': 1, 'valid': 1, 'character': 1, 'mnist': 1, 'handwritten': 1, 'american': 1, 'ibmer': 1, 'pioneer': 1, 'gaming': 1, 'synonym': 1, 'period': 1, 'described': 1, 'characters': 1, 'special': 1, 'symbols': 1, 'terminal': 1, 'widely': 1, 'quoted': 1, 'measured': 1, 'offers': 1, 'fundamentally': 1, 'operational': 1, 'proposal': 1, 'paper': 1, 'think': 1, 'replaced': 1, 'entities': 1, 'day': 1, 'purpose': 1, 'hypothetical': 1, 'classifying': 1, 'coupled': 1, 'cancerous': 1, 'stock': 1, 'trading': 1, 'inform': 1, 'trader': 1, 'endeavor': 1, 'grew': 1, 'early': 1, 'interested': 1, 'attempted': 1, 'termed': 1, 'reinventions': 1, 'generalized': 1, 'emphasis': 1, 'caused': 1, 'rift': 1, 'plagued': 1, 'expert': 1, 'favor': 1, 'proper': 1, 'abandoned': 1, 'around': 1, 'connectionism': 1, 'hopfield': 1, 'rumelhart': 1, 'success': 1, 'came': 1, 'mid': 1, 'reinvention': 1, 'reorganized': 1, 'started': 1, 'flourish': 1, 'tackling': 1, 'solvable': 1, 'shifted': 1, 'focus': 1, 'away': 1, 'inherited': 1, 'borrowed': 1, 'misunderstood': 1, 'passive': 1, 'whereas': 1, 'implies': 1, 'interacting': 1, 'successfully': 1, 'assert': 1, 'remains': 1, 'others': 1, 'employ': 1, 'overlap': 1, 'preprocessing': 1, 'confusion': 1, 'communities': 1, 'exception': 1, 'comes': 1, 'reproduce': 1, 'uninformed': 1, 'easily': 1, 'outperformed': 1, 'typical': 1, 'unavailability': 1, 'intimate': 1, 'ties': 1, 'formulated': 1, 'discrepancy': 1, 'actual': 1, 'wants': 1, 'assign': 1, 'arises': 1, 'minimize': 1, 'minimizing': 1, 'characterizing': 1, 'distinct': 1, 'draws': 1, 'population': 1, 'finds': 1, 'generalizable': 1, 'ideas': 1, 'suggested': 1, 'placeholder': 1, 'leo': 1, 'distinguished': 1, 'paradigms': 1, 'wherein': 1, 'statisticians': 1, 'combined': 1, 'core': 1, 'generalize': 1, 'accurately': 1, 'experienced': 1, 'occurrences': 1, 'branch': 1, 'finite': 1, 'uncertain': 1, 'yield': 1, 'guarantees': 1, 'quite': 1, 'decomposition': 1, 'quantify': 1, 'match': 1, 'fitted': 1, 'response': 1, 'subject': 1, 'poorer': 1, 'theorists': 1, 'feasibility': 1, 'feasible': 1, 'done': 1, 'classes': 1, 'traditionally': 1, 'divided': 1, 'depending': 1, 'presented': 1, 'maps': 1, 'leaving': 1, 'interacts': 1, 'must': 1, 'vehicle': 1, 'navigates': 1, 'analogous': 1, 'regions': 1, 'separated': 1, 'circles': 1, 'supervisory': 1, 'iterative': 1, 'optimal': 1, 'allow': 1, 'range': 1, 'filters': 1, 'emails': 1, 'incoming': 1, 'folder': 1, 'measures': 1, 'ranking': 1, 'identity': 1, 'tracking': 1, 'speaker': 1, 'grouping': 1, 'points': 1, 'therefore': 1, 'classified': 1, 'categorized': 1, 'responding': 1, 'react': 1, 'absence': 1, 'piece': 1, 'central': 1, 'though': 1, 'involving': 1, 'summarizing': 1, 'explaining': 1, 'assignment': 1, 'predesignated': 1, 'criteria': 1, 'dissimilar': 1, 'metric': 1, 'internal': 1, 'compactness': 1, 'separation': 1, 'connectivity': 1, 'completely': 1, 'conjunction': 1, 'small': 1, 'considerable': 1, 'improvement': 1, 'weakly': 1, 'noisy': 1, 'imprecise': 1, 'cheaper': 1, 'obtain': 1, 'larger': 1, 'ought': 1, 'notion': 1, 'cumulative': 1, 'reward': 1, 'generality': 1, 'simulation': 1, 'swarm': 1, 'assume': 1, 'infeasible': 1, 'vehicles': 1, 'play': 1, 'consideration': 1, 'obtaining': 1, 'words': 1, 'elimination': 1, 'extraction': 1, 'keeping': 1, 'proposes': 1, 'lie': 1, 'manifolds': 1, 'neatly': 1, 'categorisation': 1, 'become': 1, 'ongoing': 1, 'capable': 1, 'named': 1, 'computes': 1, 'fashion': 1, 'feelings': 1, 'driven': 1, 'updates': 1, 'iteration': 1, 'executes': 1, 'routine': 1, 'receive': 1, 'neither': 1, 'backpropagated': 1, 'exists': 1, 'behaves': 1, 'wherefrom': 1, 'initially': 1, 'encountered': 1, 'receiving': 1, 'genome': 1, 'seeking': 1, 'desirable': 1, 'undesirable': 1, 'classic': 1, 'preserve': 1, 'transform': 1, 'makes': 1, 'reconstruction': 1, 'coming': 1, 'faithful': 1, 'configurations': 1, 'implausible': 1, 'replaces': 1, 'manual': 1, 'independent': 1, 'autoencoders': 1, 'coding': 1, 'zeros': 1, 'directly': 1, 'multidimensional': 1, 'reshaping': 1, 'vectors': 1, 'levels': 1, 'hierarchy': 1, 'abstract': 1, 'lower': 1, 'argued': 1, 'disentangles': 1, 'factors': 1, 'variation': 1, 'motivated': 1, 'fact': 1, 'mathematically': 1, 'computationally': 1, 'convenient': 1, 'sensory': 1, 'yielded': 1, 'algorithmically': 1, 'define': 1, 'examination': 1, 'relying': 1, 'explicit': 1, 'combination': 1, 'assumed': 1, 'strongly': 1, 'np': 1, 'hard': 1, 'approximately': 1, 'contexts': 1, 'belongs': 1, 'corresponding': 1, 'noising': 1, 'idea': 1, 'clean': 1, 'patch': 1, 'events': 1, 'raise': 1, 'suspicions': 1, 'differing': 1, 'anomalous': 1, 'issue': 1, 'bank': 1, 'defect': 1, 'outliers': 1, 'novelties': 1, 'exceptions': 1, 'abuse': 1, 'interesting': 1, 'unexpected': 1, 'bursts': 1, 'inactivity': 1, 'adhere': 1, 'object': 1, 'unless': 1, 'appropriately': 1, 'micro': 1, 'formed': 1, 'looking': 1, 'seem': 1, 'remainder': 1, 'abnormal': 1, 'inherently': 1, 'unbalanced': 1, 'construct': 1, 'likelihood': 1, 'multitude': 1, 'starting': 1, 'finally': 1, 'maml': 1, 'intended': 1, 'discovered': 1, 'interestingness': 1, 'identifies': 1, 'evolves': 1, 'manipulate': 1, 'utilization': 1, 'relational': 1, 'captured': 1, 'singular': 1, 'universally': 1, 'immune': 1, 'rakesh': 1, 'tomasz': 1, 'arun': 1, 'regularities': 1, 'products': 1, 'recorded': 1, 'point': 1, 'pos': 1, 'supermarkets': 1, 'displaystyle': 1, 'rightarrow': 1, 'burger': 1, 'sales': 1, 'supermarket': 1, 'indicate': 1, 'buys': 1, 'together': 1, 'buy': 1, 'hamburger': 1, 'meat': 1, 'activities': 1, 'promotional': 1, 'pricing': 1, 'product': 1, 'placements': 1, 'basket': 1, 'today': 1, 'usage': 1, 'production': 1, 'consider': 1, 'lcs': 1, 'family': 1, 'combine': 1, 'seek': 1, 'dependent': 1, 'piecewise': 1, 'manner': 1, 'uniform': 1, 'encoding': 1, 'derive': 1, 'hypothesized': 1, 'entails': 1, 'considers': 1, 'kind': 1, 'particularly': 1, 'gordon': 1, 'laid': 1, 'implementation': 1, 'prolog': 1, 'inductively': 1, 'inferred': 1, 'refers': 1, 'suggesting': 1, 'property': 1, 'ordered': 1, 'creating': 1, 'researched': 1, 'networksee': 1, 'interconnected': 1, 'group': 1, 'akin': 1, 'circular': 1, 'node': 1, 'arrow': 1, 'anns': 1, 'vaguely': 1, 'constitute': 1, 'animal': 1, 'brains': 1, 'loosely': 1, 'synapses': 1, 'transmit': 1, 'computed': 1, 'sum': 1, 'connections': 1, 'adjusts': 1, 'proceeds': 1, 'strength': 1, 'sent': 1, 'aggregate': 1, 'crosses': 1, 'transformations': 1, 'travel': 1, 'possibly': 1, 'traversing': 1, 'moved': 1, 'light': 1, 'sound': 1, 'hearing': 1, 'conclusions': 1, 'structures': 1, 'conjunctions': 1, 'visually': 1, 'describes': 1, 'marked': 1, 'belonging': 1, 'builds': 1, 'binary': 1, 'platt': 1, 'scaling': 1, 'efficiently': 1, 'mapping': 1, 'spaces': 1, 'illustration': 1, 'estimate': 1, 'criterion': 1, 'ordinary': 1, 'squares': 1, 'latter': 1, 'extended': 1, 'mitigate': 1, 'ridge': 1, 'fitting': 1, 'introduces': 1, 'linearity': 1, 'taking': 1, 'advantage': 1, 'map': 1, 'activated': 1, 'grass': 1, 'wet': 1, 'independence': 1, 'dag': 1, 'probabilities': 1, 'protein': 1, 'generalizations': 1, 'diagrams': 1, 'mutation': 1, 'crossover': 1, 'generate': 1, 'genotypes': 1, 'hope': 1, 'solutions': 1, 'conversely': 1, 'quantity': 1, 'reliable': 1, 'collect': 1, 'varied': 1, 'corpus': 1, 'something': 1, 'watch': 1, 'skewed': 1, 'undesired': 1, 'detrimental': 1, 'thereby': 1, 'furthering': 1, 'prepared': 1, 'becoming': 1, 'notably': 1, 'adapted': 1, 'decentralizes': 1, 'allowing': 1, 'maintained': 1, 'needing': 1, 'server': 1, 'decentralizing': 1, 'gboard': 1, 'query': 1, 'phones': 1, 'searches': 1, 'back': 1, 'agriculture': 1, 'anatomy': 1, 'website': 1, 'affective': 1, 'astronomy': 1, 'banking': 1, 'interfaces': 1, 'cheminformatics': 1, 'citizen': 1, 'climate': 1, 'credit': 1, 'card': 1, 'dna': 1, 'economics': 1, 'handwriting': 1, 'insurance': 1, 'perception': 1, 'understanding': 1, 'advertising': 1, 'recommender': 1, 'locomotion': 1, 'engines': 1, 'sentiment': 1, 'syntactic': 1, 'telecommunication': 1, 'theorem': 1, 'forecasting': 1, 'behaviorism': 1, 'provider': 1, 'held': 1, 'competition': 1, 'preferences': 1, 'existing': 1, 'cinematch': 1, 'movie': 1, 'labs': 1, 'collaboration': 1, 'chaos': 1, 'pragmatic': 1, 'ensemble': 1, 'win': 1, 'grand': 1, 'million': 1, 'shortly': 1, 'awarded': 1, 'realized': 1, 'viewers': 1, 'ratings': 1, 'indicators': 1, 'viewing': 1, 'everything': 1, 'engine': 1, 'accordingly': 1, 'wrote': 1, 'rebellion': 1, 'crisis': 1, 'founder': 1, 'microsystems': 1, 'predicted': 1, 'jobs': 1, 'lost': 1, 'decades': 1, 'reported': 1, 'revealed': 1, 'unrecognized': 1, 'artists': 1, 'published': 1, 'diagnoses': 1, 'aid': 1, 'developing': 1, 'optimise': 1, 'smartphone': 1, 'phone': 1, 'transformative': 1, 'expected': 1, 'numerous': 1, 'suitable': 1, 'access': 1, 'badly': 1, 'chosen': 1, 'collision': 1, 'years': 1, 'billions': 1, 'dollars': 1, 'invested': 1, 'strategy': 1, 'reviewer': 1, 'growth': 1, 'biomedical': 1, 'literature': 1, 'improved': 1, 'workload': 1, 'limiting': 1, 'necessary': 1, 'findings': 1, 'suffer': 1, 'specifically': 1, 'customers': 1, 'needs': 1, 'groups': 1, 'pick': 1, 'constitutional': 1, 'unconscious': 1, 'present': 1, 'shown': 1, 'criminal': 1, 'assessment': 1, 'photos': 1, 'tag': 1, 'resolved': 1, 'reportedly': 1, 'workaround': 1, 'remove': 1, 'recognizing': 1, 'tested': 1, 'twitter': 1, 'quickly': 1, 'picked': 1, 'sexist': 1, 'longer': 1, 'concern': 1, 'fairness': 1, 'propelling': 1, 'increasingly': 1, 'expressed': 1, 'scientists': 1, 'reminds': 1, 'nothing': 1, 'importantly': 1, 'powerful': 1, 'beginning': 1, 'understand': 1, 'profound': 1, 'responsibility': 1, 'blue': 1, 'settling': 1, 'bad': 1, 'overly': 1, 'gerrymandered': 1, 'rewarding': 1, 'fits': 1, 'penalizing': 1, 'learners': 1, 'disappoint': 1, 'lesson': 1, 'toy': 1, 'pictures': 1, 'cats': 1, 'conclude': 1, 'patches': 1, 'unlike': 1, 'classifiers': 1, 'primarily': 1, 'judgments': 1, 'spatial': 1, 'picture': 1, 'pixels': 1, 'oblivious': 1, 'correlate': 1, 'modifying': 1, 'legitimate': 1, 'misclassifies': 1, 'vulnerabilities': 1, 'nonlinear': 1, 'perturbations': 1, 'brittle': 1, 'predictably': 1, 'induces': 1, 'misclassification': 1, 'validated': 1, 'splits': 1, 'conventionally': 1, 'designation': 1, 'evaluates': 1, 'randomly': 1, 'partitions': 1, 'experiments': 1, 'performed': 1, 'remaining': 1, 'replacement': 1, 'assess': 1, 'specificity': 1, 'tpr': 1, 'tnr': 1, 'similarly': 1, 'fpr': 1, 'fnr': 1, 'ratios': 1, 'reveal': 1, 'mentioned': 1, 'provides': 1, 'receiver': 1, 'curve': 1, 'auc': 1, 'toronto': 1, 'declaration': 1, 'poses': 1, 'host': 1, 'questions': 1, 'exhibit': 1, 'upon': 1, 'digitizing': 1, 'cultural': 1, 'prejudices': 1, 'commission': 1, 'racial': 1, 'equality': 1, 'st': 1, 'school': 1, 'admissions': 1, 'staff': 1, 'denied': 1, 'nearly': 1, 'candidates': 1, 'women': 1, 'sounding': 1, 'names': 1, 'policies': 1, 'duplicating': 1, 'scoring': 1, 'responsible': 1, 'documentation': 1, 'critical': 1, 'equipped': 1, 'heavily': 1, 'historical': 1, 'objectivity': 1, 'concerns': 1, 'income': 1, 'standing': 1, 'profits': 1, 'unnecessary': 1, 'tests': 1, 'medication': 1, 'hold': 1, 'stakes': 1, 'diagnose': 1, 'medicate': 1, 'plan': 1, 'recovery': 1, 'paths': 1, 'mitigated': 1, 'led': 1, 'narrow': 1, 'subdomain': 1, 'graphic': 1, 'enhancements': 1, 'displaced': 1, 'cpus': 1, 'commercial': 1, 'largest': 1, 'increase': 1, 'doubling': 1, 'months': 1, 'type': 1, 'emphasize': 1, 'reliance': 1, 'opposed': 1, 'applicable': 1, 'resistance': 1, 'run': 1, 'edge': 1, 'microcontrollers': 1, 'running': 1, 'removes': 1, 'storing': 1, 'servers': 1, 'henceforth': 1, 'breaches': 1, 'leaks': 1, 'happening': 1, 'minimizes': 1, 'theft': 1, 'intellectual': 1, 'secrets': 1, 'suites': 1, 'containing': 1, 'caffe': 1, 'toolkit': 1, 'deeplearning': 1, 'deepspeed': 1, 'elki': 1, 'infer': 1, 'lightgbm': 1, 'mahout': 1, 'mallet': 1, 'mlpack': 1, 'mxnet': 1, 'lab': 1, 'opennn': 1, 'orange': 1, 'pandas': 1, 'tmva': 1, 'scikit': 1, 'shogun': 1, 'spark': 1, 'mllib': 1, 'systemml': 1, 'torch': 1, 'weka': 1, 'moa': 1, 'xgboost': 1, 'yooreeka': 1, 'knime': 1, 'rapidminer': 1, 'amazon': 1, 'angoss': 1, 'knowledgestudio': 1, 'azure': 1, 'ayasdi': 1, 'studio': 1, 'api': 1, 'spss': 1, 'kxen': 1, 'lionsolver': 1, 'mathematica': 1, 'matlab': 1, 'designer': 1, 'neurosolutions': 1, 'polyanalyst': 1, 'rcase': 1, 'sas': 1, 'sequencel': 1, 'splunk': 1, 'statistica': 1, 'acl': 1, 'iclr': 1, 'robots': 1, 'iros': 1, 'automating': 1, 'assets': 1, 'characterized': 1, 'velocity': 1, 'important': 1, 'publications': 1, 'oclc': 1, 'attributed': 1, 'phrase': 1, 'verbatim': 1, 'paraphrase': 1, 'appeared': 1, 'confer': 1, 'paraphrasing': 1, 'koza': 1, 'bennett': 1, 'forrest': 1, 'andre': 1, 'keane': 1, 'topology': 1, 'sizing': 1, 'analog': 1, 'electrical': 1, 'dordrecht': 1, 'hu': 1, 'niu': 1, 'carrasco': 1, 'lennox': 1, 'arvin': 1, 'voronoi': 1, 'vehicular': 1, 'viewed': 1, 'facets': 1, 'zhou': 1, 'victor': 1, 'beginners': 1, 'medium': 1, 'xix': 1, 'studies': 1, 'checkers': 1, 'rd': 1, 'provost': 1, 'gerovitch': 1, 'slava': 1, 'got': 1, 'revenge': 1, 'soviet': 1, 'union': 1, 'nautilus': 1, 'lindsay': 1, 'impact': 1, 'administration': 1, 'western': 1, 'political': 1, 'quarterly': 1, 'scene': 1, 'interscience': 1, 'coins': 1, 'amherst': 1, 'umass': 1, 'docs': 1, 'harnad': 1, 'stevan': 1, 'annotation': 1, 'epstein': 1, 'peters': 1, 'grace': 1, 'sourcebook': 1, 'kluwer': 1, 'edzion': 1, 'rasbt': 1, 'sarle': 1, 'warren': 1, 'langley': 1, 'pat': 1, 'cultures': 1, 'comments': 1, 'rejoinder': 1, 'author': 1, 'gareth': 1, 'usa': 1, 'london': 1, 'february': 1, 'roux': 1, 'nicolas': 1, 'fitzgibbon': 1, 'pg': 1, 'sra': 1, 'suvrit': 1, 'nowozin': 1, 'sebastian': 1, 'wright': 1, 'bzdok': 1, 'danilo': 1, 'altman': 1, 'naomi': 1, 'krzywinski': 1, 'versus': 1, 'nmeth': 1, 'reddit': 1, 'third': 1, 'tucker': 1, 'handbook': 1, 'boca': 1, 'raton': 1, 'florida': 1, 'chapman': 1, 'crc': 1, 'llc': 1, 'ratner': 1, 'bach': 1, 'paroma': 1, 'varma': 1, 'chris': 1, 'weak': 1, 'supervision': 1, 'hazyresearch': 1, 'referencing': 1, 'hazy': 1, 'otterlo': 1, 'wiering': 1, 'adaptation': 1, 'sciencemag': 1, 'content': 1, 'towardsdatascience': 1, 'explained': 1, 'minutes': 1, 'fe': 1, 'ff': 1, 'pavel': 1, 'brazdil': 1, 'giraud': 1, 'carrier': 1, 'carlos': 1, 'soares': 1, 'ricardo': 1, 'vilalta': 1, 'metalearning': 1, 'passim': 1, 'trappl': 1, 'sixth': 1, 'meeting': 1, 'north': 1, 'stevo': 1, 'mechanisms': 1, 'procedia': 1, 'judgment': 1, 'courville': 1, 'perspectives': 1, 'tpami': 1, 'nathan': 1, 'srebro': 1, 'rennie': 1, 'tommi': 1, 'jaakkola': 1, 'maximum': 1, 'margin': 1, 'nips': 1, 'coates': 1, 'adam': 1, 'int': 1, 'conf': 1, 'aistats': 1, 'csurka': 1, 'gabriella': 1, 'dance': 1, 'fan': 1, 'lixin': 1, 'willamowski': 1, 'jutta': 1, 'bray': 1, 'cédric': 1, 'categorization': 1, 'bags': 1, 'keypoints': 1, 'eccv': 1, 'daniel': 1, 'jurafsky': 1, 'education': 1, 'lu': 1, 'haiping': 1, 'plataniotis': 1, 'venetsanopoulos': 1, 'patre': 1, 'patcog': 1, 'architectures': 1, 'tillmann': 1, 'intractability': 1, 'ispl': 1, 'lsp': 1, 'aharon': 1, 'elad': 1, 'bruckstein': 1, 'designing': 1, 'overcomplete': 1, 'dictionaries': 1, 'zimek': 1, 'schubert': 1, 'erich': 1, 'hodge': 1, 'austin': 1, 'methodologies': 1, 'dokas': 1, 'paul': 1, 'ertoz': 1, 'levent': 1, 'vipin': 1, 'lazarevic': 1, 'aleksandar': 1, 'srivastava': 1, 'jaideep': 1, 'tan': 1, 'pang': 1, 'ning': 1, 'nsf': 1, 'generation': 1, 'chandola': 1, 'banerjee': 1, 'surveys': 1, 'shape': 1, 'rigid': 1, 'tactile': 1, 'plos': 1, 'pone': 1, 'alexandra': 1, 'sascha': 1, 'walck': 1, 'guillaume': 1, 'helge': 1, 'nisky': 1, 'ilana': 1, 'hartcher': 1, 'brien': 1, 'jess': 1, 'wiertlewski': 1, 'michaël': 1, 'smeets': 1, 'jeroen': 1, 'haptics': 1, 'cham': 1, 'presentation': 1, 'frawley': 1, 'william': 1, 'bassel': 1, 'glaab': 1, 'enrico': 1, 'marquez': 1, 'julietta': 1, 'holdsworth': 1, 'bacardit': 1, 'jaume': 1, 'arabidopsis': 1, 'plant': 1, 'cell': 1, 'tpc': 1, 'urbanowicz': 1, 'ryan': 1, 'moore': 1, 'complete': 1, 'roadmap': 1, 'evolution': 1, 'phd': 1, 'thesis': 1, 'edinburgh': 1, 'theories': 1, 'yale': 1, 'reprinted': 1, 'lassez': 1, 'debugging': 1, 'mass': 1, 'roger': 1, 'grosse': 1, 'rajesh': 1, 'ranganath': 1, 'scalable': 1, 'annual': 1, 'cortes': 1, 'corinna': 1, 'vapnik': 1, 'vladimir': 1, 'stevenson': 1, 'tutorial': 1, 'facultystaff': 1, 'richmond': 1, 'goldberg': 1, 'michie': 1, 'spiegelhalter': 1, 'taylor': 1, 'ellis': 1, 'horwood': 1, 'mlns': 1, 'zhang': 1, 'jun': 1, 'zhan': 1, 'zhi': 1, 'ying': 1, 'chen': 1, 'gong': 1, 'yue': 1, 'jiao': 1, 'zhong': 1, 'jing': 1, 'chung': 1, 'henry': 1, 'yun': 1, 'shi': 1, 'yu': 1, 'meets': 1, 'mci': 1, 'collaborative': 1, 'included': 1, 'cfa': 1, 'curriculum': 1, 'discussion': 1, 'top': 1, 'kathleen': 1, 'derose': 1, 'lanno': 1, 'belkor': 1, 'home': 1, 'recommendations': 1, 'beyond': 1, 'stars': 1, 'scott': 1, 'patterson': 1, 'letting': 1, 'decide': 1, 'crunch': 1, 'saw': 1, 'historians': 1, 'never': 1, 'noticed': 1, 'textbook': 1, 'writers': 1, 'actually': 1, 'vaishya': 1, 'raju': 1, 'javaid': 1, 'mohd': 1, 'khan': 1, 'abid': 1, 'pandemic': 1, 'diabetes': 1, 'metabolic': 1, 'syndrome': 1, 'clinical': 1, 'dsx': 1, 'rezapouraghdam': 1, 'hamed': 1, 'akhshik': 1, 'arash': 1, 'ramkissoon': 1, 'haywantee': 1, 'visitors': 1, 'marine': 1, 'protected': 1, 'cyprus': 1, 'sustainable': 1, 'tourism': 1, 'dey': 1, 'somdip': 1, 'singh': 1, 'xiaohang': 1, 'mcdonald': 1, 'maier': 1, 'klaus': 1, 'aware': 1, 'cpu': 1, 'gpu': 1, 'mpsocs': 1, 'quested': 1, 'tony': 1, 'get': 1, 'smarter': 1, 'essex': 1, 'innovation': 1, 'weekly': 1, 'east': 1, 'businessweekly': 1, 'williams': 1, 'rhiannon': 1, 'prolong': 1, 'life': 1, 'quicktake': 1, 'bloomberg': 1, 'wave': 1, 'corporate': 1, 'euphoria': 1, 'venturebeat': 1, 'kdnuggets': 1, 'economist': 1, 'recommended': 1, 'unsafe': 1, 'incorrect': 1, 'cancer': 1, 'treatments': 1, 'hernandez': 1, 'greenwald': 1, 'ted': 1, 'reddy': 1, 'shivani': 1, 'patel': 1, 'sheila': 1, 'weyrich': 1, 'meghan': 1, 'fenton': 1, 'joshua': 1, 'viswanathan': 1, 'meera': 1, 'traditional': 1, 'garcia': 1, 'megan': 1, 'caliskan': 1, 'aylin': 1, 'bryson': 1, 'joanna': 1, 'sci': 1, 'aal': 1, 'xinan': 1, 'dasgupta': 1, 'sanjoy': 1, 'sugiyama': 1, 'luxburg': 1, 'guyon': 1, 'nearest': 1, 'neighbor': 1, 'monotonic': 1, 'curran': 1, 'associates': 1, 'angwin': 1, 'jeff': 1, 'larson': 1, 'lauren': 1, 'kirchner': 1, 'surya': 1, 'mattu': 1, 'propublica': 1, 'helps': 1, 'prison': 1, 'apologises': 1, 'blunder': 1, 'fixed': 1, 'removing': 1, 'labeling': 1, 'guy': 1, 'metz': 1, 'rachel': 1, 'teen': 1, 'tay': 1, 'lots': 1, 'awful': 1, 'simonite': 1, 'says': 1, 'illustrates': 1, 'adaptable': 1, 'enough': 1, 'businesses': 1, 'hempel': 1, 'jessi': 1, 'humanity': 1, 'change': 1, 'fools': 1, 'hallucination': 1, 'tough': 1, 'fix': 1, 'ron': 1, 'pontius': 1, 'gilmore': 1, 'kangping': 1, 'thresholds': 1, 'geographical': 1, 'edionwe': 1, 'tolulope': 1, 'fight': 1, 'jeffries': 1, 'adrianne': 1, 'yudkowsky': 1, 'eliezer': 1, 'prates': 1, 'avelar': 1, 'lamb': 1, 'assessing': 1, 'gender': 1, 'case': 1, 'translate': 1, 'cy': 1, 'freedom': 1, 'tinker': 1, 'danton': 1, 'nigam': 1, 'acoustic': 1, 'airesearch': 1, 'accelerator': 1, 'informationweek': 1, 'december': 1, 'tiernan': 1, 'entire': 1, 'zdnet': 1, 'ntt': 1, 'radical': 1, 'arbitrary': 1, 'nano': 1, 'spaghetti': 1, 'fafoutis': 1, 'xenofon': 1, 'marchegiani': 1, 'letizia': 1, 'elsts': 1, 'atis': 1, 'pope': 1, 'piechocki': 1, 'craddock': 1, 'extending': 1, 'lifetime': 1, 'sensors': 1, 'forum': 1, 'hdl': 1, 'fdb': 1, 'ab': 1, 'beginner': 1, 'guide': 1, 'india': 1, 'purdue': 1, 'tinyml': 1, 'achieves': 1, 'speedups': 1, 'syncedreview': 1, 'giri': 1, 'davide': 1, 'chiu': 1, 'kuan': 1, 'guglielmo': 1, 'giuseppe': 1, 'mantovani': 1, 'paolo': 1, 'carloni': 1, 'luca': 1, 'esp': 1, 'louis': 1, 'marcia': 1, 'sahaya': 1, 'azad': 1, 'zahra': 1, 'delshadtehrani': 1, 'leila': 1, 'gupta': 1, 'suyog': 1, 'warden': 1, 'reddi': 1, 'vijay': 1, 'janapa': 1, 'joshi': 1, 'ajay': 1, 'lite': 1, 'risc': 1, 'osta': 1, 'mario': 1, 'alameh': 1, 'mohamad': 1, 'saleh': 1, 'moustafa': 1, 'chible': 1, 'hussein': 1, 'valle': 1, 'maurizio': 1, 'eager': 1, 'stage': 1, 'dsl': 1, 'branco': 1, 'sérgio': 1, 'ferreira': 1, 'andré': 1, 'cabral': 1, 'jorge': 1, 'resource': 1, 'scarce': 1, 'ultimate': 1, 'remake': 1, 'upper': 1, 'saddle': 1, 'river': 1, 'jersey': 1, 'poole': 1, 'mackworth': 1, 'goebel': 1, 'randy': 1, 'elements': 1, 'eibe': 1, 'frank': 1, 'mackay': 1, 'stork': 1, 'ire': 1, 'convention': 1, 'record': 1, 'privately': 1, 'circulated': 1, 'dartmouth': 1, 'summer': 1, 'kevin': 1, 'murphy': 1, 'quotations': 1, 'wikiquote': 1, 'mloss': 1, 'vtedifferentiable': 1, 'computinggeneral': 1, 'differentiation': 1, 'cable': 1, 'calculus': 1, 'concepts': 1, 'gradient': 1, 'descent': 1, 'sgd': 1, 'adversary': 1, 'convolution': 1, 'normalization': 1, 'activation': 1, 'softmax': 1, 'sigmoid': 1, 'rectifier': 1, 'augmentation': 1, 'ipu': 1, 'tpu': 1, 'vpu': 1, 'spinnaker': 1, 'theano': 1, 'implementationaudio': 1, 'wavenet': 1, 'hwr': 1, 'ocr': 1, 'facial': 1, 'alphafold': 1, 'verbal': 1, 'vec': 1, 'bert': 1, 'nmt': 1, 'debater': 1, 'decisional': 1, 'alphago': 1, 'five': 1, 'muzero': 1, 'graves': 1, 'goodfellow': 1, 'geoffrey': 1, 'yann': 1, 'lecun': 1, 'demis': 1, 'hassabis': 1, 'silver': 1, 'organizations': 1, 'deepmind': 1, 'csail': 1, 'mila': 1, 'fair': 1, 'portals': 1, 'vtecomputer': 1, 'sciencenote': 1, 'template': 1, 'roughly': 1, 'printed': 1, 'peripheral': 1, 'integration': 1, 'socs': 1, 'energy': 1, 'dependability': 1, 'protocol': 1, 'scheduler': 1, 'interpreter': 1, 'middleware': 1, 'notations': 1, 'compiler': 1, 'domain': 1, 'configuration': 1, 'repository': 1, 'requirements': 1, 'deployment': 1, 'maintenance': 1, 'automata': 1, 'computability': 1, 'randomized': 1, 'geometry': 1, 'storage': 1, 'geographic': 1, 'multimedia': 1, 'cryptography': 1, 'ubiquitous': 1, 'visualization': 1, 'accessibility': 1, 'concurrency': 1, 'concurrent': 1, 'parallel': 1, 'multithreading': 1, 'multiprocessing': 1, 'scheduling': 1, 'methodology': 1, 'animation': 1, 'rendering': 1, 'manipulation': 1, 'unit': 1, 'mixed': 1, 'compression': 1, 'solid': 1, 'commerce': 1, 'chemistry': 1, 'cyberwarfare': 1, 'voting': 1, 'educational': 1, 'document': 1, 'wikiproject': 1, 'authority': 1, 'national': 1, 'libraries': 1, 'germany': 1, 'israel': 1, 'japan': 1, 'index': 1, 'php': 1, 'title': 1, 'machine_learning': 1, 'oldid': 1, 'learningcyberneticslearninghidden': 1, 'periodicalcs': 1, 'parametercs': 1, 'statusarticles': 1, 'short': 1, 'descriptionshort': 1, 'description': 1, 'wikidatacommons': 1, 'wikidataarticles': 1, 'gnd': 1, 'lccn': 1, 'ndl': 1, 'identifiers': 1, 'menu': 1, 'logged': 1, 'intalkcontributionscreate': 1, 'accountlog': 1, 'namespaces': 1, 'articletalk': 1, 'english': 1, 'views': 1, 'readeditview': 1, 'pagecontentscurrent': 1, 'eventsrandom': 1, 'articleabout': 1, 'wikipediacontact': 1, 'usdonate': 1, 'contribute': 1, 'helplearn': 1, 'editcommunity': 1, 'portalrecent': 1, 'hererelated': 1, 'filespecial': 1, 'pagespermanent': 1, 'linkpage': 1, 'informationcite': 1, 'pagewikidata': 1, 'print': 1, 'export': 1, 'download': 1, 'pdfprintable': 1, 'version': 1, 'commonswikiquotewikiversity': 1, 'العربيةঅসম': 1, 'য': 1, 'azərbaycancaব': 1, 'ল': 1, 'bân': 1, 'lâm': 1, 'gúभ': 1, 'जप': 1, 'българскиcatalàčeštinacymraegdanskالدارجةdeutscheestiελληνικάespañoleuskaraفارسیfrançaisgalego한국어հայերենह': 1, 'द': 1, 'indonesiaíslenskaitalianoעבריתಕನ': 1, 'ನಡlatviešulietuviųmagyarмакедонскиമലയ': 1, 'ള': 1, 'मर': 1, 'ठ': 1, 'melayuмонголnederlands日本語norsk': 1, 'bokmålnorsk': 1, 'nynorskoccitanଓଡ': 1, 'ଆپنجابیpolskiportuguêsromânăрусскийᱥᱟᱱᱛᱟᱲᱤshqipsimple': 1, 'englishslovenščinaکوردیсрпски': 1, 'srpskisrpskohrvatski': 1, 'српскохрватскиsuomisvenskatagalogత': 1, 'ల': 1, 'గ': 1, 'ไทยtürkçeукраїнськаاردوئۇيغۇرچە': 1, 'uyghurchetiếng': 1, 'việtvõro吴语粵語中文': 1, 'edited': 1, 'utc': 1, 'creative': 1, 'attribution': 1, 'sharealike': 1, 'license': 1, 'site': 1, 'agree': 1, 'registered': 1, 'trademark': 1, 'profit': 1, 'disclaimers': 1, 'contact': 1, 'developers': 1, 'cookie': 1, 'statement': 1})
In [ ]:
 

Create Word Cloud

In [13]:
#!sudo -E pip install wordcloud
In [14]:
from wordcloud import WordCloud
import matplotlib.pyplot as plt
In [15]:
word_cloud = WordCloud(
    width = 800, 
    height = 500, 
    background_color ='white').generate_from_frequencies(word_frequencies)

plt.imshow(word_cloud, interpolation='bilinear')
plt.axis("off")
plt.show()

Show wordcloud

In [16]:
word_cloud = WordCloud(
    width = 800, 
    height = 500).generate_from_frequencies(word_frequencies)

plt.imshow(word_cloud, interpolation='bilinear')
plt.axis("off")
plt.show()

Save in png

In [24]:
word_cloud.to_file("machine_learning.png")
Out[24]:
<wordcloud.wordcloud.WordCloud at 0x7f2d8c08e910>

Display the saved image

In [22]:
import matplotlib.pyplot as plt
import matplotlib.image as img
In [25]:
plt.figure(figsize=[20,10])

# read png image file
im = img.imread('machine_learning.png')
  
#show image
plt.imshow(im)
plt.axis("off")
plt.show()

Machine Learning

  1. Deal Banking Marketing Campaign Dataset With Machine Learning

TensorFlow

  1. Difference Between Scalar, Vector, Matrix and Tensor
  2. TensorFlow Deep Learning Model With IRIS Dataset
  3. Sequence to Sequence Learning With Neural Networks To Perform Number Addition
  4. Image Classification Model MobileNet V2 from TensorFlow Hub
  5. Step by Step Intent Recognition With BERT
  6. Sentiment Analysis for Hotel Reviews With NLTK and Keras
  7. Simple Sequence Prediction With LSTM
  8. Image Classification With ResNet50 Model
  9. Predict Amazon Inc Stock Price with Machine Learning
  10. Predict Diabetes With Machine Learning Algorithms
  11. TensorFlow Build Custom Convolutional Neural Network With MNIST Dataset
  12. Deal Banking Marketing Campaign Dataset With Machine Learning

PySpark

  1. How to Parallelize and Distribute Collection in PySpark
  2. Role of StringIndexer and Pipelines in PySpark ML Feature - Part 1
  3. Role of OneHotEncoder and Pipelines in PySpark ML Feature - Part 2
  4. Feature Transformer VectorAssembler in PySpark ML Feature - Part 3
  5. Logistic Regression in PySpark (ML Feature) with Breast Cancer Data Set

PyTorch

  1. Build the Neural Network with PyTorch
  2. Image Classification with PyTorch
  3. Twitter Sentiment Classification In PyTorch
  4. Training an Image Classifier in Pytorch

Natural Language Processing

  1. Spelling Correction Of The Text Data In Natural Language Processing
  2. Handling Text For Machine Learning
  3. Extracting Text From PDF File in Python Using PyPDF2
  4. How to Collect Data Using Twitter API V2 For Natural Language Processing
  5. Converting Text to Features in Natural Language Processing
  6. Extract A Noun Phrase For A Sentence In Natural Language Processing