SlideShare a Scribd company logo
1 of 96
Download to read offline
Frontiers of Natural Language Processing
Deep Learning Indaba 2018, Stellenbosch, South Africa
Sebastian Ruder, Herman Kamper, Panellists, Leaders in NLP, Everyone
Goals of session
1. What is NLP? What are the major developments in the last few
years?
2. What are the biggest open problems in NLP?
3. Get to know the local community and start thinking about
collaborations
1 / 68
What is NLP? What were the major advances?
A Review of the Recent History of NLP
What is NLP? What were the major advances?
A Review of the Recent History of NLP
Sebastian Ruder
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
3 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
4 / 68
Neural language models
• Language modeling: predict next word given previous words
• Classic language models: n-grams with smoothing
• First neural language models: feed-forward neural networks that take
into account n previous words
• Initial look-up layer is commonly known as word embedding matrix as
each word corresponds to one vector
[Bengio et al., NIPS ’01; Bengio et al., JMLR ’03] 5 / 68
Neural language models
• Later language models: RNNs and LSTMs [Mikolov et al., Interspeech ’10]
• Many new models in recent years; classic LSTM is still a strong
baseline [Melis et al., ICLR ’18]
• Active research area: What information do language models capture?
• Language modelling: despite its simplicity, core to many later
advances
• Word embeddings: the objective of word2vec is a simplification of
language modelling
• Sequence-to-sequence models: predict response word-by-word
• Pretrained language models: representations useful for transfer learning
6 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
7 / 68
Multi-task learning
• Multi-task learning: sharing parameters between models trained on
multiple tasks
[Collobert & Weston, ICML ’08; Collobert et al., JMLR ’11]
8 / 68
Multi-task learning
• [Collobert & Weston, ICML ’08] won Test-of-time Award at ICML 2018
• Paper contained a lot of other influential ideas:
• Word embeddings
• CNNs for text
9 / 68
Multi-task learning
• Multi-task learning goes back a lot further
[Caruana, ICML ’93; Caruana, ICML ’96]
10 / 68
Multi-task learning
• “Joint learning” / “multi-task learning” used interchangeably
• Now used for many tasks in NLP, either using existing tasks or
“artificial” auxiliary tasks
• MT + dependency parsing / POS tagging / NER
• Joint multilingual training
• Video captioning + entailment + next-frame prediction [Pasunuru &
Bansal; ACL ’17]
• . . .
11 / 68
Multi-task learning
• Sharing of parameters is typically predefined
• Can also be learned [Ruder et al., ’17]
[Yang et al., ICLR ’17]
12 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
13 / 68
Word embeddings
• Main innovation: pretraining word embedding look-up matrix on a
large unlabelled corpus
• Popularized by word2vec, an efficient approximation to language
modelling
• word2vec comes in two variants: skip-gram and CBOW
[Mikolov et al., ICLR ’13; Mikolov et al., NIPS ’13]
14 / 68
Word embeddings
• Word embeddings pretrained on an unlabelled corpus capture certain
relations between words
[Tensorflow tutorial]
15 / 68
Word embeddings
• Pretrained word embeddings have been shown to improve
performance on many downstream tasks [Kim, EMNLP ’14]
• Later methods show that word embeddings can also be learned via
matrix factorization [Pennington et al., EMNLP ’14; Levy et al., NIPS ’14]
• Nothing inherently special about word2vec; classic methods (PMI,
SVD) can also be used to learn good word embeddings from
unlabeled corpora [Levy et al., TACL ’15]
16 / 68
Word embeddings
• Lots of work on word embeddings, but word2vec is still widely used
• Skip-gram has been applied to learn representations in many other
settings, e.g. sentences [Le & Mikolov, ICML ’14; Kiros et al., NIPS ’15],
networks [Grover & Leskovec, KDD ’16], biological sequences [Asgari & Mofrad,
PLoS One ’15], etc.
17 / 68
Word embeddings
• Projecting word embeddings of different languages into the same
space enables (zero-shot) cross-lingual transfer [Ruder et al., JAIR ’18]
[Luong et al., ’15]
18 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
19 / 68
Neural networks for NLP
• Key challenge for neural networks: dealing with dynamic input
sequences
• Three main model types
• Recurrent neural networks
• Convolutional neural networks
• Recursive neural networks
20 / 68
Recurrent neural networks
• Vanilla RNNs [Elman, CogSci ’90] are typically not used as gradients
vanish or explode with longer inputs
• Long-short term memory networks [Hochreiter & Schmidhuber, NeuComp ’97]
are the model of choice
[Olah, ’15]
21 / 68
Convolutional neural networks
• 1D adaptation of convolutional neural networks for images
• Filter is moved along temporal dimension
[Kim, EMNLP ’14]
22 / 68
Convolutional neural networks
• More parallelizable than RNNs, focus on local features
• Can be extended with wider receptive fields (dilated convolutions) to
capture wider context [Kalchbrenner et al., ’17]
• CNNs and LSTMs can be combined and stacked [Wang et al., ACL ’16]
• Convolutions can be used to speed up an LSTM [Bradbury et al., ICLR ’17]
23 / 68
Recursive neural networks
• Natural language is inherently hierarchical
• Treat input as tree rather than as a sequence
• Can also be extended to LSTMs [Tai et al., ACL ’15]
[Socher et al., EMNLP ’13]
24 / 68
Other tree-based based neural networks
• Word embeddings based on dependencies [Levy and Goldberg, ACL ’14]
• Language models that generate words based on a syntactic stack [Dyer
et al., NAACL ’16]
• CNNs over a graph (trees), e.g. graph-convolutional neural networks
[Bastings et al., EMNLP ’17]
25 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
26 / 68
Sequence-to-sequence models
• General framework for applying neural networks to tasks where output
is a sequence
• Killer application: Neural Machine Translation
• Encoder processes input word by word; decoder then predicts output
word by word
[Sutskever et al., NIPS ’14]
27 / 68
Sequence-to-sequence models
• Go-to framework for natural language generation tasks
• Output can not only be conditioned on a sequence, but on arbitrary
representations, e.g. an image for image captioning
[Vinyals et al., CVPR ’15]
28 / 68
Sequence-to-sequence models
• Even applicable to structured prediction tasks, e.g. constituency
parsing [Vinyals et al., NIPS ’15], named entity recognition [Gillick et al.,
NAACL ’16], etc. by linearizing the output
[Vinyals et al., NIPS ’15]
29 / 68
Sequence-to-sequence models
• Typically RNN-based, but other encoders and decoders can be used
• New architectures mainly coming out of work in Machine Translation
• Recent models: Deep LSTM [Wu et al., ’16], Convolutional encoders
[Kalchbrenner et al., arXiv ’16; Gehring et al., arXiv ’17], Transformer [Vaswani et al.,
NIPS ’17], Combination of LSTM and Transformer [Chen et al., ACL ’18]
30 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
31 / 68
Attention
• One of the core innovations in Neural Machine Translation
• Weighted average of source sentence hidden states
• Mitigates bottleneck of compressing source sentence into a single
vector
[Bahdanau et al., ICLR ’15]
32 / 68
Attention
• Different forms of attention available [Luong et al., EMNLP ’15]
• Widely applicable: constituency parsing [Vinyals et al., NIPS ’15], reading
comprehension [Hermann et al., NIPS ’15], one-shot learning [Vinyals et al.,
NIPS ’16], image captioning [Xu et al., ICML ’15]
[Xu et al., ICML ’15]
33 / 68
Attention
• Not only restricted to looking at an another sequence
• Can be used to obtain more contextually sensitive word
representations by attending to the same sequence → self-attention
• Used in Transformer [Vaswani et al., NIPS ’17], state-of-the-art architecture
for machine translation
34 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
35 / 68
Memory-based neural networks
• Attention can be seen as fuzzy memory
• Models with more explicit memory have been proposed
• Different variants: Neural Turing Machine [Graves et al., arXiv ’14],
Memory Networks [Weston et al., ICLR ’15] and End-to-end Memory
Networks [Sukhbaatar et al., NIPS ’15], Dynamic Memory Networks [Kumar et
al., ICML ’16], Neural Differentiable Computer [Graves et al., Nature ’16],
Recurrent Entity Network [Henaff et al., ICLR ’17]
36 / 68
Memory-based neural networks
• Memory is typically accessed based on similarity to current state
similar to attention; can be written to and read from
• End-to-end Memory Networks [Sukhbaatar et al., NIPS ’15] process input
multiple times and update memory
• Neural Turing Machines also have a location-based addressing; can
learn simple computer programs like sorting
• Memory can be a knowledge base or populated based on input
37 / 68
Timeline
2001 • Neural language models
2008 • Multi-task learning
2013 • Word embeddings
2013 • Neural networks for NLP
2014 • Sequence-to-sequence models
2015 • Attention
2015 • Memory-based networks
2018 • Pretrained language models
38 / 68
Pretrained language models
• Word embeddings are context-agnostic, only used to initialize first
layer
• Use better representations for initialization or as features
• Language models pretrained on a large corpus capture a lot of
additional information
• Language model embeddings can be used as features in a target
model [Peters et al., NAACL ’18] or a language model can be fine-tuned on
target task data [Howard & Ruder, ACL ’18]
39 / 68
Pretrained language models
• Adding language model embeddings gives a large improvement over
state-of-the-art across many different tasks
[Peters et al., ’18]
40 / 68
Pretrained language models
• Enables learning models with significantly less data
• Additional benefit: Language models only require unlabelled data
• Enables application to low-resource languages where labelled data is
scarce
41 / 68
Other milestones
• Character-based representations
• Use a CNN/LSTM over characters to obtain a character-based word
representation
• First used for sequence labelling tasks [Lample et al., NAACL ’16; Plank et
al., ACL ’16]; now widely used
• Even fully character-based NMT [Lee et al., TACL ’17]
• Adversarial learning
• Adversarial examples are becoming widely used [Jia & Liang, EMNLP ’17]
• (Virtual) adversarial training [Miyato et al., ICLR ’17; Yasunaga et al., NAACL
’18] and domain-adversarial loss [Ganin et al., JMLR ’16; Kim et al., ACL ’17]
are useful forms of regularization
• GANs are used, but not yet too effective for NLG [Semeniuta et al., ’18]
• Reinforcement learning
• Useful for tasks with a temporal dependency, e.g. selecting data [Fang &
Cohn, EMNLP ’17; Wu et al., NAACL ’18] and dialogue [Liu et al., NAACL ’18]
• Also effective for directly optimizing a surrogate loss (ROUGE, BLEU)
for summarization [Paulus et al., ICLR ’18; ] or MT [Ranzato et al., ICLR ’16]
42 / 68
The Biggest Open Problems in NLP
The Biggest Open Problems in NLP
Sebastian
Ruder
Jade
Abbott
Stephan
Gouws
Omoju
Miller
Bernardt
Duvenhage
The biggest open problems: Answers from experts
Hal Daumé III Barbara Plank Miguel Ballesteros Anders Søgaard
Manaal Faruqui Mikel Artetxe Sebastian Riedel Isabelle Augenstein
Bernardt Duvenhage Lea Frermann Brink van der Merwe Karen
Livescu Jan Buys Kevin Gimpel Christine de Kock Alta de
Waal Michael Roth Maletěabisa Molapo Annie Louise Chris Dyer
Yoshua Bengio Felix Hill Kevin Knight Richard Socher George
Dahl Dirk Hovy Kyunghyun Cho
44 / 68
We asked the experts:
What are the three biggest open problems
in NLP at the moment?
The biggest open problems in NLP
1. Natural language understanding
2. NLP for low-resource scenarios
3. Reasoning about large or multiple documents
4. Datasets, problems and evaluation
46 / 68
Problem 1: Natural language understanding
• Many experts argued that this is central, also for generation
• Almost none of our current models have “real” understanding
• What (biases, structure) should we build explicitly into our models?
• Models should incorporate common sense
• Dialogue systems (and chat bots) were mentioned in several responses
47 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses.
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses.
Question: What city did Tesla move to in 1880?
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses.
Question: What city did Tesla move to in 1880?
Answer: Prague
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses.
Question: What city did Tesla move to in 1880?
Answer: Prague
Model predicts: Prague
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses. Tadakatsu moved to the city of Chicago in 1881.
Question: What city did Tesla move to in 1880?
Answer:
Model predicts:
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses. Tadakatsu moved to the city of Chicago in 1881.
Question: What city did Tesla move to in 1880?
Answer: Prague
Model predicts:
48 / 68
Problem 1: Natural language understanding
Article: Nicola Tesla
Paragraph: In January 1880, two of Tesla’s uncles put together enough
money to help him leave Gospić for Prague where he was to study.
Unfortunately, he arrived too late to enroll at Charles-Ferdinand University;
he never studied Greek, a required subject; and he was illiterate in Czech,
another required subject. Tesla did, however, attend lectures at the
university, although, as an auditor, he did not receive grades for the
courses. Tadakatsu moved to the city of Chicago in 1881.
Question: What city did Tesla move to in 1880?
Answer: Prague
Model predicts: Chicago
48 / 68
Problem 1: Natural language understanding
[Jia and Liang, EMNLP’17]
49 / 68
Problem 1: Natural language understanding
I think the biggest open problems are all related to natural language
understanding. . . we should develop systems that read and
understand text the way a person does, by forming a representation of
the world of the text, with the agents, objects, settings, and the
relationships, goals, desires, and beliefs of the agents, and everything else
that humans create to understand a piece of text.
Until we can do that, all of our progress is in improving
our systems’ ability to do pattern matching. Pattern
matching can be very effective for developing products
and improving people’s lives, so I don’t want to
denigrate it, but . . .
— Kevin Gimpel
50 / 68
Problem 1: Natural language understanding
Questions to panellists/audience:
• To achieve NLU, is it important to build models that process
language “the way a person does”?
51 / 68
Problem 1: Natural language understanding
Questions to panellists/audience:
• To achieve NLU, is it important to build models that process
language “the way a person does”?
• How do you think we would go about doing this?
51 / 68
Problem 1: Natural language understanding
Questions to panellists/audience:
• To achieve NLU, is it important to build models that process
language “the way a person does”?
• How do you think we would go about doing this?
• Do we need inductive biases or can we expect models to learn
everything from enough data?
51 / 68
Problem 1: Natural language understanding
Questions to panellists/audience:
• To achieve NLU, is it important to build models that process
language “the way a person does”?
• How do you think we would go about doing this?
• Do we need inductive biases or can we expect models to learn
everything from enough data?
• Questions from audience
51 / 68
Problem 2: NLP for low-resource scenarios
52 / 68
Problem 2: NLP for low-resource scenarios
• Generalisation beyond the training data
52 / 68
Problem 2: NLP for low-resource scenarios
• Generalisation beyond the training data – relevant everywhere!
52 / 68
Problem 2: NLP for low-resource scenarios
• Generalisation beyond the training data – relevant everywhere!
• Domain-transfer, transfer learning, multi-task learning
• Learning from small amounts of data
• Semi-supervised, weakly-supervised, “Wiki-ly” supervised,
distantly-supervised, lightly-supervised, minimally-supervised
52 / 68
Problem 2: NLP for low-resource scenarios
• Generalisation beyond the training data – relevant everywhere!
• Domain-transfer, transfer learning, multi-task learning
• Learning from small amounts of data
• Semi-supervised, weakly-supervised, “Wiki-ly” supervised,
distantly-supervised, lightly-supervised, minimally-supervised
• Unsupervised learning
52 / 68
Problem 2: NLP for low-resource scenarios
Word translation without parallel data:
[Conneau et al., ICLR’18]
53 / 68
Problem 2: NLP for low-resource scenarios
[Chung et al., arXiv’18]
54 / 68
Problem 2: NLP for low-resource scenarios
Questions to panellists/audience:
• Is it necessary to develop specialised NLP tools for specific languages,
or is it enough to work on general NLP?
55 / 68
Problem 2: NLP for low-resource scenarios
Questions to panellists/audience:
• Is it necessary to develop specialised NLP tools for specific languages,
or is it enough to work on general NLP?
• Since there is inherently only small amounts of text available for
under-resourced languages, the benefits of NLP in such settings will
also be limited. Agree or disagree?
55 / 68
Problem 2: NLP for low-resource scenarios
Questions to panellists/audience:
• Is it necessary to develop specialised NLP tools for specific languages,
or is it enough to work on general NLP?
• Since there is inherently only small amounts of text available for
under-resourced languages, the benefits of NLP in such settings will
also be limited. Agree or disagree?
• Unsupervised learning vs. transfer learning from high-resource
languages?
• Questions from audience
55 / 68
Problem 3: Reasoning about large or multiple
documents
• Related to understanding
• How do we deal with large contexts?
• Can be either text or spoken documents
• Again incorporating common sense is essential
56 / 68
Problem 3: Reasoning about large or multiple
documents
Example from NarrativeQA dataset:
[Kočiský et al., TACL’18]
57 / 68
Problem 3: Reasoning about large or multiple
documents
Questions to panellists/audience:
• Do we need better models or just train on more data?
58 / 68
Problem 3: Reasoning about large or multiple
documents
Questions to panellists/audience:
• Do we need better models or just train on more data?
• Questions from audience
58 / 68
Problem 4: Datasets, problems and evaluation
Perhaps the biggest problem is to properly define the
problems themselves. And by properly defining a
problem, I mean building datasets and evaluation
procedures that are appropriate to measure our
progress towards concrete goals. Things would be
easier if we could reduce everything to Kaggle style
competitions! — Mikel Artetxe
. . . basic resources (e.g. stop word lists) — Alta de Waal
59 / 68
Problem 4: Datasets, problems and evaluation
https://rma.nwu.ac.za
60 / 68
Problem 4: Datasets, problems and evaluation
Questions to panellists/audience:
• What are the most important NLP problems that should be tackled
for societies in Africa?
61 / 68
Problem 4: Datasets, problems and evaluation
Questions to panellists/audience:
• What are the most important NLP problems that should be tackled
for societies in Africa?
• How do we make sure that we don’t overfit to our benchmarks?
61 / 68
Problem 4: Datasets, problems and evaluation
Questions to panellists/audience:
• What are the most important NLP problems that should be tackled
for societies in Africa?
• How do we make sure that we don’t overfit to our benchmarks?
• Questions from audience
61 / 68
We asked the experts a few more questions:
We asked the experts a few more questions:
What, if anything, has led the field in the
wrong direction?
What has led the field in the wrong direction?
• “Synthetic data/synthetic problems” — Hal Daumé III
• “Benchmark/leaderboard chasing” — Sebastian Riedel
• “Obsession of . . . beating the state of the art through “neural
architecture search” — Isabelle Augenstein
63 / 68
What has led the field in the wrong direction?
• “Synthetic data/synthetic problems” — Hal Daumé III
• “Benchmark/leaderboard chasing” — Sebastian Riedel
• “Obsession of . . . beating the state of the art through “neural
architecture search” — Isabelle Augenstein
• “Chomskyan theories of linguistics instead of corpus linguistics”
— Brink van der Merwe
63 / 68
What has led the field in the wrong direction?
• “Synthetic data/synthetic problems” — Hal Daumé III
• “Benchmark/leaderboard chasing” — Sebastian Riedel
• “Obsession of . . . beating the state of the art through “neural
architecture search” — Isabelle Augenstein
• “Chomskyan theories of linguistics instead of corpus linguistics”
— Brink van der Merwe
• “Not incorporating enough Chomskyan theory into our models”
— Someone Else
63 / 68
What has led the field in the wrong direction?
• “Synthetic data/synthetic problems” — Hal Daumé III
• “Benchmark/leaderboard chasing” — Sebastian Riedel
• “Obsession of . . . beating the state of the art through “neural
architecture search” — Isabelle Augenstein
• “Chomskyan theories of linguistics instead of corpus linguistics”
— Brink van der Merwe
• “Not incorporating enough Chomskyan theory into our models”
— Someone Else
• “Too much emphasis on Bayesian methods (sorry :)”— Karen Livescu
63 / 68
What has led the field in the wrong direction?
• “Synthetic data/synthetic problems” — Hal Daumé III
• “Benchmark/leaderboard chasing” — Sebastian Riedel
• “Obsession of . . . beating the state of the art through “neural
architecture search” — Isabelle Augenstein
• “Chomskyan theories of linguistics instead of corpus linguistics”
— Brink van der Merwe
• “Not incorporating enough Chomskyan theory into our models”
— Someone Else
• “Too much emphasis on Bayesian methods (sorry :)”— Karen Livescu
• “Haha, as if the field as a whole moved in a single direction”
— Michael Roth
63 / 68
What has led the field in the wrong direction?
I don’t think there is anything like that. We can learn
from “wrong” directions and “correct” directions, if
such a thing even exists.
— Miguel Ballesteros
Anything new will temporarily lead the field in the
wrong direction, I guess, but upon returning, we may
nevertheless have pushed research horizons.
— Anders Søgaard
Sentiment shared in many of the other responses
64 / 68
We asked the experts a few more questions:
We asked the experts a few more questions:
What advice would you give a
postgraduate student in NLP
starting their project now?
What advice would you give a postgraduate
student in NLP starting their project now?
Do not limit yourself to reading NLP papers. Read a lot
of machine learning, deep learning, reinforcement learning
papers. A PhD is a great time in one’s life to go for a
big goal, and even small steps towards that will be valued.
— Yoshua Bengio
Learn how to tune your models, learn how to make
strong baselines, and learn how to build baselines that
test particular hypotheses. Don’t take any single paper
too seriously, wait for its conclusions to show up more
than once. — George Dahl
66 / 68
What advice would you give a postgraduate
student in NLP starting their project now?
i believe scientific pursuit is meant to be full of failures.
. . . if every idea works out, it’s either (a) you’re not
ambitious enough, (b) you’re subconciously cheating
yourself, or (c) you’re a genius, the last of which i heard
happens only once every century or so. so, don’t despair!
— Kyunghyun Cho
Understand psychology and the core problems of semantic
cognition. Read . . . Go to CogSci. Understand machine
learning. Go to NIPS. Don’t worry about ACL. Submit
something terrible (or even good, if possible) to a
workshop as soon as you can. You can’t learn how to do
these things without going through the process. — Felix Hill
67 / 68
Summary of session
• What is NLP? What are the major developments in the last few
years?
• What are the biggest open problems in NLP?
• Get to know the local community and start thinking about
collaborations
68 / 68
Summary of session
• What is NLP? What are the major developments in the last few
years?
• What are the biggest open problems in NLP?
• Get to know the local community and start thinking about
collaborations
• We now have the closing ceremony, so eat and chat!
68 / 68

More Related Content

What's hot

2.17Mb ppt
2.17Mb ppt2.17Mb ppt
2.17Mb ppt
butest
 
Transfer Learning and Fine-tuning Deep Neural Networks
 Transfer Learning and Fine-tuning Deep Neural Networks Transfer Learning and Fine-tuning Deep Neural Networks
Transfer Learning and Fine-tuning Deep Neural Networks
PyData
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Lior Rokach
 

What's hot (20)

Intro to LLMs
Intro to LLMsIntro to LLMs
Intro to LLMs
 
Deep learning in healthcare: Oppotunities and challenges with Electronic Medi...
Deep learning in healthcare: Oppotunities and challenges with Electronic Medi...Deep learning in healthcare: Oppotunities and challenges with Electronic Medi...
Deep learning in healthcare: Oppotunities and challenges with Electronic Medi...
 
Introduction to Transformer Model
Introduction to Transformer ModelIntroduction to Transformer Model
Introduction to Transformer Model
 
Deep learning health care
Deep learning health care  Deep learning health care
Deep learning health care
 
Fine tuning large LMs
Fine tuning large LMsFine tuning large LMs
Fine tuning large LMs
 
2.17Mb ppt
2.17Mb ppt2.17Mb ppt
2.17Mb ppt
 
Transfer Learning for Natural Language Processing
Transfer Learning for Natural Language ProcessingTransfer Learning for Natural Language Processing
Transfer Learning for Natural Language Processing
 
Generative models
Generative modelsGenerative models
Generative models
 
Transfer Learning and Fine-tuning Deep Neural Networks
 Transfer Learning and Fine-tuning Deep Neural Networks Transfer Learning and Fine-tuning Deep Neural Networks
Transfer Learning and Fine-tuning Deep Neural Networks
 
Transformers AI PPT.pptx
Transformers AI PPT.pptxTransformers AI PPT.pptx
Transformers AI PPT.pptx
 
Tabnet presentation
Tabnet presentationTabnet presentation
Tabnet presentation
 
Deep Generative Models
Deep Generative Models Deep Generative Models
Deep Generative Models
 
AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1
 
Comparative Analysis of Transformer Based Pre-Trained NLP Models
Comparative Analysis of Transformer Based Pre-Trained NLP ModelsComparative Analysis of Transformer Based Pre-Trained NLP Models
Comparative Analysis of Transformer Based Pre-Trained NLP Models
 
Large Language Models - Chat AI.pdf
Large Language Models - Chat AI.pdfLarge Language Models - Chat AI.pdf
Large Language Models - Chat AI.pdf
 
Introduction to Diffusion Models
Introduction to Diffusion ModelsIntroduction to Diffusion Models
Introduction to Diffusion Models
 
AI in healthcare - Use Cases
AI in healthcare - Use Cases AI in healthcare - Use Cases
AI in healthcare - Use Cases
 
Generative AI
Generative AIGenerative AI
Generative AI
 
GPT-2: Language Models are Unsupervised Multitask Learners
GPT-2: Language Models are Unsupervised Multitask LearnersGPT-2: Language Models are Unsupervised Multitask Learners
GPT-2: Language Models are Unsupervised Multitask Learners
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 

Similar to Frontiers of Natural Language Processing

Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]
akm sabbir
 
Vectorized Intent of Multilingual Large Language Models.pptx
Vectorized Intent of Multilingual Large Language Models.pptxVectorized Intent of Multilingual Large Language Models.pptx
Vectorized Intent of Multilingual Large Language Models.pptx
SachinAngre3
 

Similar to Frontiers of Natural Language Processing (20)

Tomáš Mikolov - Distributed Representations for NLP
Tomáš Mikolov - Distributed Representations for NLPTomáš Mikolov - Distributed Representations for NLP
Tomáš Mikolov - Distributed Representations for NLP
 
Application of Foundation Model for Autonomous Driving
Application of Foundation Model for Autonomous DrivingApplication of Foundation Model for Autonomous Driving
Application of Foundation Model for Autonomous Driving
 
Successes and Frontiers of Deep Learning
Successes and Frontiers of Deep LearningSuccesses and Frontiers of Deep Learning
Successes and Frontiers of Deep Learning
 
Conversational Agents in Portuguese: A Study Using Deep Learning
Conversational Agents in Portuguese: A Study Using Deep LearningConversational Agents in Portuguese: A Study Using Deep Learning
Conversational Agents in Portuguese: A Study Using Deep Learning
 
Unit 5f.pptx
Unit 5f.pptxUnit 5f.pptx
Unit 5f.pptx
 
2010 INTERSPEECH
2010 INTERSPEECH 2010 INTERSPEECH
2010 INTERSPEECH
 
2010 PACLIC - pay attention to categories
2010 PACLIC - pay attention to categories2010 PACLIC - pay attention to categories
2010 PACLIC - pay attention to categories
 
[DSC MENA 24] Nada_GabAllah_-_Advancement_in_NLP_and_Text_Analytics.pptx
[DSC MENA 24] Nada_GabAllah_-_Advancement_in_NLP_and_Text_Analytics.pptx[DSC MENA 24] Nada_GabAllah_-_Advancement_in_NLP_and_Text_Analytics.pptx
[DSC MENA 24] Nada_GabAllah_-_Advancement_in_NLP_and_Text_Analytics.pptx
 
Deep Learning Architectures for NLP (Hungarian NLP Meetup 2016-09-07)
Deep Learning Architectures for NLP (Hungarian NLP Meetup 2016-09-07)Deep Learning Architectures for NLP (Hungarian NLP Meetup 2016-09-07)
Deep Learning Architectures for NLP (Hungarian NLP Meetup 2016-09-07)
 
Building a Neural Machine Translation System From Scratch
Building a Neural Machine Translation System From ScratchBuilding a Neural Machine Translation System From Scratch
Building a Neural Machine Translation System From Scratch
 
Thomas Wolf "An Introduction to Transfer Learning and Hugging Face"
Thomas Wolf "An Introduction to Transfer Learning and Hugging Face"Thomas Wolf "An Introduction to Transfer Learning and Hugging Face"
Thomas Wolf "An Introduction to Transfer Learning and Hugging Face"
 
Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]
 
short_story.pptx
short_story.pptxshort_story.pptx
short_story.pptx
 
AINL 2016: Nikolenko
AINL 2016: NikolenkoAINL 2016: Nikolenko
AINL 2016: Nikolenko
 
2211 APSIPA
2211 APSIPA2211 APSIPA
2211 APSIPA
 
NLP and its application in Insurance -Short story presentation
NLP and its application in Insurance -Short story presentationNLP and its application in Insurance -Short story presentation
NLP and its application in Insurance -Short story presentation
 
IRJET- Survey on Deep Learning Approaches for Phrase Structure Identification...
IRJET- Survey on Deep Learning Approaches for Phrase Structure Identification...IRJET- Survey on Deep Learning Approaches for Phrase Structure Identification...
IRJET- Survey on Deep Learning Approaches for Phrase Structure Identification...
 
Foundation Models in Recommender Systems
Foundation Models in Recommender SystemsFoundation Models in Recommender Systems
Foundation Models in Recommender Systems
 
Google’s Multilingual Neural Machine Translation System: Enabling Zero-Shot T...
Google’s Multilingual Neural Machine Translation System: Enabling Zero-Shot T...Google’s Multilingual Neural Machine Translation System: Enabling Zero-Shot T...
Google’s Multilingual Neural Machine Translation System: Enabling Zero-Shot T...
 
Vectorized Intent of Multilingual Large Language Models.pptx
Vectorized Intent of Multilingual Large Language Models.pptxVectorized Intent of Multilingual Large Language Models.pptx
Vectorized Intent of Multilingual Large Language Models.pptx
 

More from Sebastian Ruder

More from Sebastian Ruder (20)

Strong Baselines for Neural Semi-supervised Learning under Domain Shift
Strong Baselines for Neural Semi-supervised Learning under Domain ShiftStrong Baselines for Neural Semi-supervised Learning under Domain Shift
Strong Baselines for Neural Semi-supervised Learning under Domain Shift
 
On the Limitations of Unsupervised Bilingual Dictionary Induction
On the Limitations of Unsupervised Bilingual Dictionary InductionOn the Limitations of Unsupervised Bilingual Dictionary Induction
On the Limitations of Unsupervised Bilingual Dictionary Induction
 
Neural Semi-supervised Learning under Domain Shift
Neural Semi-supervised Learning under Domain ShiftNeural Semi-supervised Learning under Domain Shift
Neural Semi-supervised Learning under Domain Shift
 
Optimization for Deep Learning
Optimization for Deep LearningOptimization for Deep Learning
Optimization for Deep Learning
 
Human Evaluation: Why do we need it? - Dr. Sheila Castilho
Human Evaluation: Why do we need it? - Dr. Sheila CastilhoHuman Evaluation: Why do we need it? - Dr. Sheila Castilho
Human Evaluation: Why do we need it? - Dr. Sheila Castilho
 
Machine intelligence in HR technology: resume analysis at scale - Adrian Mihai
Machine intelligence in HR technology: resume analysis at scale - Adrian MihaiMachine intelligence in HR technology: resume analysis at scale - Adrian Mihai
Machine intelligence in HR technology: resume analysis at scale - Adrian Mihai
 
Hashtagger+: Real-time Social Tagging of Streaming News - Dr. Georgiana Ifrim
Hashtagger+: Real-time Social Tagging of Streaming News - Dr. Georgiana IfrimHashtagger+: Real-time Social Tagging of Streaming News - Dr. Georgiana Ifrim
Hashtagger+: Real-time Social Tagging of Streaming News - Dr. Georgiana Ifrim
 
Transfer Learning -- The Next Frontier for Machine Learning
Transfer Learning -- The Next Frontier for Machine LearningTransfer Learning -- The Next Frontier for Machine Learning
Transfer Learning -- The Next Frontier for Machine Learning
 
Making sense of word senses: An introduction to word-sense disambiguation and...
Making sense of word senses: An introduction to word-sense disambiguation and...Making sense of word senses: An introduction to word-sense disambiguation and...
Making sense of word senses: An introduction to word-sense disambiguation and...
 
Spoken Dialogue Systems and Social Talk - Emer Gilmartin
Spoken Dialogue Systems and Social Talk - Emer GilmartinSpoken Dialogue Systems and Social Talk - Emer Gilmartin
Spoken Dialogue Systems and Social Talk - Emer Gilmartin
 
NIPS 2016 Highlights - Sebastian Ruder
NIPS 2016 Highlights - Sebastian RuderNIPS 2016 Highlights - Sebastian Ruder
NIPS 2016 Highlights - Sebastian Ruder
 
Modeling documents with Generative Adversarial Networks - John Glover
Modeling documents with Generative Adversarial Networks - John GloverModeling documents with Generative Adversarial Networks - John Glover
Modeling documents with Generative Adversarial Networks - John Glover
 
Multi-modal Neural Machine Translation - Iacer Calixto
Multi-modal Neural Machine Translation - Iacer CalixtoMulti-modal Neural Machine Translation - Iacer Calixto
Multi-modal Neural Machine Translation - Iacer Calixto
 
Funded PhD/MSc. Opportunities at AYLIEN
Funded PhD/MSc. Opportunities at AYLIENFunded PhD/MSc. Opportunities at AYLIEN
Funded PhD/MSc. Opportunities at AYLIEN
 
FaDA: Fast document aligner with word embedding - Pintu Lohar, Debasis Gangul...
FaDA: Fast document aligner with word embedding - Pintu Lohar, Debasis Gangul...FaDA: Fast document aligner with word embedding - Pintu Lohar, Debasis Gangul...
FaDA: Fast document aligner with word embedding - Pintu Lohar, Debasis Gangul...
 
Transformation Functions for Text Classification: A case study with StackOver...
Transformation Functions for Text Classification: A case study with StackOver...Transformation Functions for Text Classification: A case study with StackOver...
Transformation Functions for Text Classification: A case study with StackOver...
 
Dynamic Topic Modeling via Non-negative Matrix Factorization (Dr. Derek Greene)
Dynamic Topic Modeling via Non-negative Matrix Factorization (Dr. Derek Greene)Dynamic Topic Modeling via Non-negative Matrix Factorization (Dr. Derek Greene)
Dynamic Topic Modeling via Non-negative Matrix Factorization (Dr. Derek Greene)
 
Idiom Token Classification using Sentential Distributed Semantics (Giancarlo ...
Idiom Token Classification using Sentential Distributed Semantics (Giancarlo ...Idiom Token Classification using Sentential Distributed Semantics (Giancarlo ...
Idiom Token Classification using Sentential Distributed Semantics (Giancarlo ...
 
A Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
A Hierarchical Model of Reviews for Aspect-based Sentiment AnalysisA Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
A Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
 
Topic Listener - Observing Key Topics from Multi-Channel Speech Audio Streams...
Topic Listener - Observing Key Topics from Multi-Channel Speech Audio Streams...Topic Listener - Observing Key Topics from Multi-Channel Speech Audio Streams...
Topic Listener - Observing Key Topics from Multi-Channel Speech Audio Streams...
 

Recently uploaded

Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
Areesha Ahmad
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
Areesha Ahmad
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learning
levieagacer
 

Recently uploaded (20)

Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
 
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort ServiceCall Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
 
Molecular markers- RFLP, RAPD, AFLP, SNP etc.
Molecular markers- RFLP, RAPD, AFLP, SNP etc.Molecular markers- RFLP, RAPD, AFLP, SNP etc.
Molecular markers- RFLP, RAPD, AFLP, SNP etc.
 
module for grade 9 for distance learning
module for grade 9 for distance learningmodule for grade 9 for distance learning
module for grade 9 for distance learning
 
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
 
pumpkin fruit fly, water melon fruit fly, cucumber fruit fly
pumpkin fruit fly, water melon fruit fly, cucumber fruit flypumpkin fruit fly, water melon fruit fly, cucumber fruit fly
pumpkin fruit fly, water melon fruit fly, cucumber fruit fly
 
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts ServiceJustdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Kochi ❤CALL GIRL 84099*07087 ❤CALL GIRLS IN Kochi ESCORT SERVICE❤CALL GIRL
Kochi ❤CALL GIRL 84099*07087 ❤CALL GIRLS IN Kochi ESCORT SERVICE❤CALL GIRLKochi ❤CALL GIRL 84099*07087 ❤CALL GIRLS IN Kochi ESCORT SERVICE❤CALL GIRL
Kochi ❤CALL GIRL 84099*07087 ❤CALL GIRLS IN Kochi ESCORT SERVICE❤CALL GIRL
 
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryFAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
 
Zoology 5th semester notes( Sumit_yadav).pdf
Zoology 5th semester notes( Sumit_yadav).pdfZoology 5th semester notes( Sumit_yadav).pdf
Zoology 5th semester notes( Sumit_yadav).pdf
 
Clean In Place(CIP).pptx .
Clean In Place(CIP).pptx                 .Clean In Place(CIP).pptx                 .
Clean In Place(CIP).pptx .
 
GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)
 
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate ProfessorThyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
 
High Profile 🔝 8250077686 📞 Call Girls Service in GTB Nagar🍑
High Profile 🔝 8250077686 📞 Call Girls Service in GTB Nagar🍑High Profile 🔝 8250077686 📞 Call Girls Service in GTB Nagar🍑
High Profile 🔝 8250077686 📞 Call Girls Service in GTB Nagar🍑
 
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
 
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai YoungDubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
 
Site Acceptance Test .
Site Acceptance Test                    .Site Acceptance Test                    .
Site Acceptance Test .
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learning
 

Frontiers of Natural Language Processing

  • 1. Frontiers of Natural Language Processing Deep Learning Indaba 2018, Stellenbosch, South Africa Sebastian Ruder, Herman Kamper, Panellists, Leaders in NLP, Everyone
  • 2. Goals of session 1. What is NLP? What are the major developments in the last few years? 2. What are the biggest open problems in NLP? 3. Get to know the local community and start thinking about collaborations 1 / 68
  • 3. What is NLP? What were the major advances? A Review of the Recent History of NLP
  • 4. What is NLP? What were the major advances? A Review of the Recent History of NLP Sebastian Ruder
  • 5. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 3 / 68
  • 6. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 4 / 68
  • 7. Neural language models • Language modeling: predict next word given previous words • Classic language models: n-grams with smoothing • First neural language models: feed-forward neural networks that take into account n previous words • Initial look-up layer is commonly known as word embedding matrix as each word corresponds to one vector [Bengio et al., NIPS ’01; Bengio et al., JMLR ’03] 5 / 68
  • 8. Neural language models • Later language models: RNNs and LSTMs [Mikolov et al., Interspeech ’10] • Many new models in recent years; classic LSTM is still a strong baseline [Melis et al., ICLR ’18] • Active research area: What information do language models capture? • Language modelling: despite its simplicity, core to many later advances • Word embeddings: the objective of word2vec is a simplification of language modelling • Sequence-to-sequence models: predict response word-by-word • Pretrained language models: representations useful for transfer learning 6 / 68
  • 9. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 7 / 68
  • 10. Multi-task learning • Multi-task learning: sharing parameters between models trained on multiple tasks [Collobert & Weston, ICML ’08; Collobert et al., JMLR ’11] 8 / 68
  • 11. Multi-task learning • [Collobert & Weston, ICML ’08] won Test-of-time Award at ICML 2018 • Paper contained a lot of other influential ideas: • Word embeddings • CNNs for text 9 / 68
  • 12. Multi-task learning • Multi-task learning goes back a lot further [Caruana, ICML ’93; Caruana, ICML ’96] 10 / 68
  • 13. Multi-task learning • “Joint learning” / “multi-task learning” used interchangeably • Now used for many tasks in NLP, either using existing tasks or “artificial” auxiliary tasks • MT + dependency parsing / POS tagging / NER • Joint multilingual training • Video captioning + entailment + next-frame prediction [Pasunuru & Bansal; ACL ’17] • . . . 11 / 68
  • 14. Multi-task learning • Sharing of parameters is typically predefined • Can also be learned [Ruder et al., ’17] [Yang et al., ICLR ’17] 12 / 68
  • 15. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 13 / 68
  • 16. Word embeddings • Main innovation: pretraining word embedding look-up matrix on a large unlabelled corpus • Popularized by word2vec, an efficient approximation to language modelling • word2vec comes in two variants: skip-gram and CBOW [Mikolov et al., ICLR ’13; Mikolov et al., NIPS ’13] 14 / 68
  • 17. Word embeddings • Word embeddings pretrained on an unlabelled corpus capture certain relations between words [Tensorflow tutorial] 15 / 68
  • 18. Word embeddings • Pretrained word embeddings have been shown to improve performance on many downstream tasks [Kim, EMNLP ’14] • Later methods show that word embeddings can also be learned via matrix factorization [Pennington et al., EMNLP ’14; Levy et al., NIPS ’14] • Nothing inherently special about word2vec; classic methods (PMI, SVD) can also be used to learn good word embeddings from unlabeled corpora [Levy et al., TACL ’15] 16 / 68
  • 19. Word embeddings • Lots of work on word embeddings, but word2vec is still widely used • Skip-gram has been applied to learn representations in many other settings, e.g. sentences [Le & Mikolov, ICML ’14; Kiros et al., NIPS ’15], networks [Grover & Leskovec, KDD ’16], biological sequences [Asgari & Mofrad, PLoS One ’15], etc. 17 / 68
  • 20. Word embeddings • Projecting word embeddings of different languages into the same space enables (zero-shot) cross-lingual transfer [Ruder et al., JAIR ’18] [Luong et al., ’15] 18 / 68
  • 21. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 19 / 68
  • 22. Neural networks for NLP • Key challenge for neural networks: dealing with dynamic input sequences • Three main model types • Recurrent neural networks • Convolutional neural networks • Recursive neural networks 20 / 68
  • 23. Recurrent neural networks • Vanilla RNNs [Elman, CogSci ’90] are typically not used as gradients vanish or explode with longer inputs • Long-short term memory networks [Hochreiter & Schmidhuber, NeuComp ’97] are the model of choice [Olah, ’15] 21 / 68
  • 24. Convolutional neural networks • 1D adaptation of convolutional neural networks for images • Filter is moved along temporal dimension [Kim, EMNLP ’14] 22 / 68
  • 25. Convolutional neural networks • More parallelizable than RNNs, focus on local features • Can be extended with wider receptive fields (dilated convolutions) to capture wider context [Kalchbrenner et al., ’17] • CNNs and LSTMs can be combined and stacked [Wang et al., ACL ’16] • Convolutions can be used to speed up an LSTM [Bradbury et al., ICLR ’17] 23 / 68
  • 26. Recursive neural networks • Natural language is inherently hierarchical • Treat input as tree rather than as a sequence • Can also be extended to LSTMs [Tai et al., ACL ’15] [Socher et al., EMNLP ’13] 24 / 68
  • 27. Other tree-based based neural networks • Word embeddings based on dependencies [Levy and Goldberg, ACL ’14] • Language models that generate words based on a syntactic stack [Dyer et al., NAACL ’16] • CNNs over a graph (trees), e.g. graph-convolutional neural networks [Bastings et al., EMNLP ’17] 25 / 68
  • 28. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 26 / 68
  • 29. Sequence-to-sequence models • General framework for applying neural networks to tasks where output is a sequence • Killer application: Neural Machine Translation • Encoder processes input word by word; decoder then predicts output word by word [Sutskever et al., NIPS ’14] 27 / 68
  • 30. Sequence-to-sequence models • Go-to framework for natural language generation tasks • Output can not only be conditioned on a sequence, but on arbitrary representations, e.g. an image for image captioning [Vinyals et al., CVPR ’15] 28 / 68
  • 31. Sequence-to-sequence models • Even applicable to structured prediction tasks, e.g. constituency parsing [Vinyals et al., NIPS ’15], named entity recognition [Gillick et al., NAACL ’16], etc. by linearizing the output [Vinyals et al., NIPS ’15] 29 / 68
  • 32. Sequence-to-sequence models • Typically RNN-based, but other encoders and decoders can be used • New architectures mainly coming out of work in Machine Translation • Recent models: Deep LSTM [Wu et al., ’16], Convolutional encoders [Kalchbrenner et al., arXiv ’16; Gehring et al., arXiv ’17], Transformer [Vaswani et al., NIPS ’17], Combination of LSTM and Transformer [Chen et al., ACL ’18] 30 / 68
  • 33. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 31 / 68
  • 34. Attention • One of the core innovations in Neural Machine Translation • Weighted average of source sentence hidden states • Mitigates bottleneck of compressing source sentence into a single vector [Bahdanau et al., ICLR ’15] 32 / 68
  • 35. Attention • Different forms of attention available [Luong et al., EMNLP ’15] • Widely applicable: constituency parsing [Vinyals et al., NIPS ’15], reading comprehension [Hermann et al., NIPS ’15], one-shot learning [Vinyals et al., NIPS ’16], image captioning [Xu et al., ICML ’15] [Xu et al., ICML ’15] 33 / 68
  • 36. Attention • Not only restricted to looking at an another sequence • Can be used to obtain more contextually sensitive word representations by attending to the same sequence → self-attention • Used in Transformer [Vaswani et al., NIPS ’17], state-of-the-art architecture for machine translation 34 / 68
  • 37. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 35 / 68
  • 38. Memory-based neural networks • Attention can be seen as fuzzy memory • Models with more explicit memory have been proposed • Different variants: Neural Turing Machine [Graves et al., arXiv ’14], Memory Networks [Weston et al., ICLR ’15] and End-to-end Memory Networks [Sukhbaatar et al., NIPS ’15], Dynamic Memory Networks [Kumar et al., ICML ’16], Neural Differentiable Computer [Graves et al., Nature ’16], Recurrent Entity Network [Henaff et al., ICLR ’17] 36 / 68
  • 39. Memory-based neural networks • Memory is typically accessed based on similarity to current state similar to attention; can be written to and read from • End-to-end Memory Networks [Sukhbaatar et al., NIPS ’15] process input multiple times and update memory • Neural Turing Machines also have a location-based addressing; can learn simple computer programs like sorting • Memory can be a knowledge base or populated based on input 37 / 68
  • 40. Timeline 2001 • Neural language models 2008 • Multi-task learning 2013 • Word embeddings 2013 • Neural networks for NLP 2014 • Sequence-to-sequence models 2015 • Attention 2015 • Memory-based networks 2018 • Pretrained language models 38 / 68
  • 41. Pretrained language models • Word embeddings are context-agnostic, only used to initialize first layer • Use better representations for initialization or as features • Language models pretrained on a large corpus capture a lot of additional information • Language model embeddings can be used as features in a target model [Peters et al., NAACL ’18] or a language model can be fine-tuned on target task data [Howard & Ruder, ACL ’18] 39 / 68
  • 42. Pretrained language models • Adding language model embeddings gives a large improvement over state-of-the-art across many different tasks [Peters et al., ’18] 40 / 68
  • 43. Pretrained language models • Enables learning models with significantly less data • Additional benefit: Language models only require unlabelled data • Enables application to low-resource languages where labelled data is scarce 41 / 68
  • 44. Other milestones • Character-based representations • Use a CNN/LSTM over characters to obtain a character-based word representation • First used for sequence labelling tasks [Lample et al., NAACL ’16; Plank et al., ACL ’16]; now widely used • Even fully character-based NMT [Lee et al., TACL ’17] • Adversarial learning • Adversarial examples are becoming widely used [Jia & Liang, EMNLP ’17] • (Virtual) adversarial training [Miyato et al., ICLR ’17; Yasunaga et al., NAACL ’18] and domain-adversarial loss [Ganin et al., JMLR ’16; Kim et al., ACL ’17] are useful forms of regularization • GANs are used, but not yet too effective for NLG [Semeniuta et al., ’18] • Reinforcement learning • Useful for tasks with a temporal dependency, e.g. selecting data [Fang & Cohn, EMNLP ’17; Wu et al., NAACL ’18] and dialogue [Liu et al., NAACL ’18] • Also effective for directly optimizing a surrogate loss (ROUGE, BLEU) for summarization [Paulus et al., ICLR ’18; ] or MT [Ranzato et al., ICLR ’16] 42 / 68
  • 45. The Biggest Open Problems in NLP
  • 46. The Biggest Open Problems in NLP Sebastian Ruder Jade Abbott Stephan Gouws Omoju Miller Bernardt Duvenhage
  • 47. The biggest open problems: Answers from experts Hal Daumé III Barbara Plank Miguel Ballesteros Anders Søgaard Manaal Faruqui Mikel Artetxe Sebastian Riedel Isabelle Augenstein Bernardt Duvenhage Lea Frermann Brink van der Merwe Karen Livescu Jan Buys Kevin Gimpel Christine de Kock Alta de Waal Michael Roth Maletěabisa Molapo Annie Louise Chris Dyer Yoshua Bengio Felix Hill Kevin Knight Richard Socher George Dahl Dirk Hovy Kyunghyun Cho 44 / 68
  • 48. We asked the experts: What are the three biggest open problems in NLP at the moment?
  • 49. The biggest open problems in NLP 1. Natural language understanding 2. NLP for low-resource scenarios 3. Reasoning about large or multiple documents 4. Datasets, problems and evaluation 46 / 68
  • 50. Problem 1: Natural language understanding • Many experts argued that this is central, also for generation • Almost none of our current models have “real” understanding • What (biases, structure) should we build explicitly into our models? • Models should incorporate common sense • Dialogue systems (and chat bots) were mentioned in several responses 47 / 68
  • 51. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. 48 / 68
  • 52. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Question: What city did Tesla move to in 1880? 48 / 68
  • 53. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Question: What city did Tesla move to in 1880? Answer: Prague 48 / 68
  • 54. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Question: What city did Tesla move to in 1880? Answer: Prague Model predicts: Prague 48 / 68
  • 55. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Tadakatsu moved to the city of Chicago in 1881. Question: What city did Tesla move to in 1880? Answer: Model predicts: 48 / 68
  • 56. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Tadakatsu moved to the city of Chicago in 1881. Question: What city did Tesla move to in 1880? Answer: Prague Model predicts: 48 / 68
  • 57. Problem 1: Natural language understanding Article: Nicola Tesla Paragraph: In January 1880, two of Tesla’s uncles put together enough money to help him leave Gospić for Prague where he was to study. Unfortunately, he arrived too late to enroll at Charles-Ferdinand University; he never studied Greek, a required subject; and he was illiterate in Czech, another required subject. Tesla did, however, attend lectures at the university, although, as an auditor, he did not receive grades for the courses. Tadakatsu moved to the city of Chicago in 1881. Question: What city did Tesla move to in 1880? Answer: Prague Model predicts: Chicago 48 / 68
  • 58. Problem 1: Natural language understanding [Jia and Liang, EMNLP’17] 49 / 68
  • 59. Problem 1: Natural language understanding I think the biggest open problems are all related to natural language understanding. . . we should develop systems that read and understand text the way a person does, by forming a representation of the world of the text, with the agents, objects, settings, and the relationships, goals, desires, and beliefs of the agents, and everything else that humans create to understand a piece of text. Until we can do that, all of our progress is in improving our systems’ ability to do pattern matching. Pattern matching can be very effective for developing products and improving people’s lives, so I don’t want to denigrate it, but . . . — Kevin Gimpel 50 / 68
  • 60. Problem 1: Natural language understanding Questions to panellists/audience: • To achieve NLU, is it important to build models that process language “the way a person does”? 51 / 68
  • 61. Problem 1: Natural language understanding Questions to panellists/audience: • To achieve NLU, is it important to build models that process language “the way a person does”? • How do you think we would go about doing this? 51 / 68
  • 62. Problem 1: Natural language understanding Questions to panellists/audience: • To achieve NLU, is it important to build models that process language “the way a person does”? • How do you think we would go about doing this? • Do we need inductive biases or can we expect models to learn everything from enough data? 51 / 68
  • 63. Problem 1: Natural language understanding Questions to panellists/audience: • To achieve NLU, is it important to build models that process language “the way a person does”? • How do you think we would go about doing this? • Do we need inductive biases or can we expect models to learn everything from enough data? • Questions from audience 51 / 68
  • 64. Problem 2: NLP for low-resource scenarios 52 / 68
  • 65. Problem 2: NLP for low-resource scenarios • Generalisation beyond the training data 52 / 68
  • 66. Problem 2: NLP for low-resource scenarios • Generalisation beyond the training data – relevant everywhere! 52 / 68
  • 67. Problem 2: NLP for low-resource scenarios • Generalisation beyond the training data – relevant everywhere! • Domain-transfer, transfer learning, multi-task learning • Learning from small amounts of data • Semi-supervised, weakly-supervised, “Wiki-ly” supervised, distantly-supervised, lightly-supervised, minimally-supervised 52 / 68
  • 68. Problem 2: NLP for low-resource scenarios • Generalisation beyond the training data – relevant everywhere! • Domain-transfer, transfer learning, multi-task learning • Learning from small amounts of data • Semi-supervised, weakly-supervised, “Wiki-ly” supervised, distantly-supervised, lightly-supervised, minimally-supervised • Unsupervised learning 52 / 68
  • 69. Problem 2: NLP for low-resource scenarios Word translation without parallel data: [Conneau et al., ICLR’18] 53 / 68
  • 70. Problem 2: NLP for low-resource scenarios [Chung et al., arXiv’18] 54 / 68
  • 71. Problem 2: NLP for low-resource scenarios Questions to panellists/audience: • Is it necessary to develop specialised NLP tools for specific languages, or is it enough to work on general NLP? 55 / 68
  • 72. Problem 2: NLP for low-resource scenarios Questions to panellists/audience: • Is it necessary to develop specialised NLP tools for specific languages, or is it enough to work on general NLP? • Since there is inherently only small amounts of text available for under-resourced languages, the benefits of NLP in such settings will also be limited. Agree or disagree? 55 / 68
  • 73. Problem 2: NLP for low-resource scenarios Questions to panellists/audience: • Is it necessary to develop specialised NLP tools for specific languages, or is it enough to work on general NLP? • Since there is inherently only small amounts of text available for under-resourced languages, the benefits of NLP in such settings will also be limited. Agree or disagree? • Unsupervised learning vs. transfer learning from high-resource languages? • Questions from audience 55 / 68
  • 74. Problem 3: Reasoning about large or multiple documents • Related to understanding • How do we deal with large contexts? • Can be either text or spoken documents • Again incorporating common sense is essential 56 / 68
  • 75. Problem 3: Reasoning about large or multiple documents Example from NarrativeQA dataset: [Kočiský et al., TACL’18] 57 / 68
  • 76. Problem 3: Reasoning about large or multiple documents Questions to panellists/audience: • Do we need better models or just train on more data? 58 / 68
  • 77. Problem 3: Reasoning about large or multiple documents Questions to panellists/audience: • Do we need better models or just train on more data? • Questions from audience 58 / 68
  • 78. Problem 4: Datasets, problems and evaluation Perhaps the biggest problem is to properly define the problems themselves. And by properly defining a problem, I mean building datasets and evaluation procedures that are appropriate to measure our progress towards concrete goals. Things would be easier if we could reduce everything to Kaggle style competitions! — Mikel Artetxe . . . basic resources (e.g. stop word lists) — Alta de Waal 59 / 68
  • 79. Problem 4: Datasets, problems and evaluation https://rma.nwu.ac.za 60 / 68
  • 80. Problem 4: Datasets, problems and evaluation Questions to panellists/audience: • What are the most important NLP problems that should be tackled for societies in Africa? 61 / 68
  • 81. Problem 4: Datasets, problems and evaluation Questions to panellists/audience: • What are the most important NLP problems that should be tackled for societies in Africa? • How do we make sure that we don’t overfit to our benchmarks? 61 / 68
  • 82. Problem 4: Datasets, problems and evaluation Questions to panellists/audience: • What are the most important NLP problems that should be tackled for societies in Africa? • How do we make sure that we don’t overfit to our benchmarks? • Questions from audience 61 / 68
  • 83. We asked the experts a few more questions:
  • 84. We asked the experts a few more questions: What, if anything, has led the field in the wrong direction?
  • 85. What has led the field in the wrong direction? • “Synthetic data/synthetic problems” — Hal Daumé III • “Benchmark/leaderboard chasing” — Sebastian Riedel • “Obsession of . . . beating the state of the art through “neural architecture search” — Isabelle Augenstein 63 / 68
  • 86. What has led the field in the wrong direction? • “Synthetic data/synthetic problems” — Hal Daumé III • “Benchmark/leaderboard chasing” — Sebastian Riedel • “Obsession of . . . beating the state of the art through “neural architecture search” — Isabelle Augenstein • “Chomskyan theories of linguistics instead of corpus linguistics” — Brink van der Merwe 63 / 68
  • 87. What has led the field in the wrong direction? • “Synthetic data/synthetic problems” — Hal Daumé III • “Benchmark/leaderboard chasing” — Sebastian Riedel • “Obsession of . . . beating the state of the art through “neural architecture search” — Isabelle Augenstein • “Chomskyan theories of linguistics instead of corpus linguistics” — Brink van der Merwe • “Not incorporating enough Chomskyan theory into our models” — Someone Else 63 / 68
  • 88. What has led the field in the wrong direction? • “Synthetic data/synthetic problems” — Hal Daumé III • “Benchmark/leaderboard chasing” — Sebastian Riedel • “Obsession of . . . beating the state of the art through “neural architecture search” — Isabelle Augenstein • “Chomskyan theories of linguistics instead of corpus linguistics” — Brink van der Merwe • “Not incorporating enough Chomskyan theory into our models” — Someone Else • “Too much emphasis on Bayesian methods (sorry :)”— Karen Livescu 63 / 68
  • 89. What has led the field in the wrong direction? • “Synthetic data/synthetic problems” — Hal Daumé III • “Benchmark/leaderboard chasing” — Sebastian Riedel • “Obsession of . . . beating the state of the art through “neural architecture search” — Isabelle Augenstein • “Chomskyan theories of linguistics instead of corpus linguistics” — Brink van der Merwe • “Not incorporating enough Chomskyan theory into our models” — Someone Else • “Too much emphasis on Bayesian methods (sorry :)”— Karen Livescu • “Haha, as if the field as a whole moved in a single direction” — Michael Roth 63 / 68
  • 90. What has led the field in the wrong direction? I don’t think there is anything like that. We can learn from “wrong” directions and “correct” directions, if such a thing even exists. — Miguel Ballesteros Anything new will temporarily lead the field in the wrong direction, I guess, but upon returning, we may nevertheless have pushed research horizons. — Anders Søgaard Sentiment shared in many of the other responses 64 / 68
  • 91. We asked the experts a few more questions:
  • 92. We asked the experts a few more questions: What advice would you give a postgraduate student in NLP starting their project now?
  • 93. What advice would you give a postgraduate student in NLP starting their project now? Do not limit yourself to reading NLP papers. Read a lot of machine learning, deep learning, reinforcement learning papers. A PhD is a great time in one’s life to go for a big goal, and even small steps towards that will be valued. — Yoshua Bengio Learn how to tune your models, learn how to make strong baselines, and learn how to build baselines that test particular hypotheses. Don’t take any single paper too seriously, wait for its conclusions to show up more than once. — George Dahl 66 / 68
  • 94. What advice would you give a postgraduate student in NLP starting their project now? i believe scientific pursuit is meant to be full of failures. . . . if every idea works out, it’s either (a) you’re not ambitious enough, (b) you’re subconciously cheating yourself, or (c) you’re a genius, the last of which i heard happens only once every century or so. so, don’t despair! — Kyunghyun Cho Understand psychology and the core problems of semantic cognition. Read . . . Go to CogSci. Understand machine learning. Go to NIPS. Don’t worry about ACL. Submit something terrible (or even good, if possible) to a workshop as soon as you can. You can’t learn how to do these things without going through the process. — Felix Hill 67 / 68
  • 95. Summary of session • What is NLP? What are the major developments in the last few years? • What are the biggest open problems in NLP? • Get to know the local community and start thinking about collaborations 68 / 68
  • 96. Summary of session • What is NLP? What are the major developments in the last few years? • What are the biggest open problems in NLP? • Get to know the local community and start thinking about collaborations • We now have the closing ceremony, so eat and chat! 68 / 68