SlideShare ist ein Scribd-Unternehmen logo
1 von 57
Downloaden Sie, um offline zu lesen
Word embeddings and
neural language modeling
AACIMP 2015
Sergii Gavrylov
Overview
● Natural language processing
● Word representations
● Statistical language modeling
● Neural models
● Recurrent neural network models
● Long short-term memory rnn models
Natural language
processing
● NLP mostly works with text data (but its methods could be applied
to music, bioinformatic, speech etc.)
● From the perspective of machine learning NL is a sequence of
variable-length sequences of high-dimensional vectors.
Word representation
One-hot encoding
V = {zebra, horse, school, summer}
One-hot encoding
V = {zebra, horse, school, summer}
v(zebra) = [1, 0, 0, 0]
v(horse) = [0, 1, 0, 0]
v(school) = [0, 0, 1, 0]
v(summer) = [0, 0, 0, 1]
One-hot encoding
V = {zebra, horse, school, summer}
v(zebra) = [1, 0, 0, 0]
v(horse) = [0, 1, 0, 0]
v(school) = [0, 0, 1, 0]
v(summer) = [0, 0, 0, 1]
(+) Pros:
Simplicity
(-) Cons:
One-hot encoding can be memory inefficient
Notion of word similarity is undefined with one-hot encoding
Distributional
representation
Is there a representation that preserves the similarities of word meanings?
d(v(zebra), v(horse)) < d(v(zebra), v(summer))
Distributional
representation
Is there a representation that preserves the similarities of word meanings?
d(v(zebra), v(horse)) < d(v(zebra), v(summer))
“You shall know a word by the company it keeps” -
John Rupert Firth
Distributional
representation
clic.cimec.unitn.it/marco/publications/acl2014/lazaridou-etal-wampimuk-acl2014.pdf
“A cute, hairy wampimuk is
sitting on the hands.”
Distributional
representation
www.cs.ox.ac.uk/files/6605/aclVectorTutorial.pdf
Distributional
representation
www.cs.ox.ac.uk/files/6605/aclVectorTutorial.pdf
Distributional
representation
(+) Pros:
Simplicity
Has notion of word similarity
(-) Cons:
Distributional representation can be memory inefficient
Distributed
representation
V is a vocabulary
wi
∈ V
v(wi
) ∈ Rn
v(wi
) is a low-dimensional, learnable,
dense word vector
Distributed
representation
colah.github.io/posts/2014-07-NLP-RNNs-Representations
Distributed
representation
(+) Pros:
Has notion of word similarity
is memory efficient (low dimensional)
(-) Cons:
is computationally intensive
Distributed representation as a
lookup table
W is a matrix whose rows are v(wi
) ∈ Rn
v(wi
) returns ith
row of W
Statistical language
modeling
A sentence s = (x1
, x2
, 
 , xT
)
How likely is s?
p(x1
, x2
, 
 , xT
)
according to the chain rule (probability)
n-gram models
n-th order Markov assumption
n-gram models
n-th order Markov assumption
bigram model of s = (a, cute, wampimuk, is, on, the, tree, .)
1. How likely does ‘a’ follow ‘<S>’?
2. How likely does ‘cute’ follow ‘a’?
3. How likely does ‘wampimuk’ follow ‘cute’?
4. How likely does ‘is’ follow ‘wampimuk’?
5. How likely does ‘on’ follow ‘is’?
6. How likely does ‘the’ follow ‘on’?
7. How likely does ‘tree’ follow ‘the’?
8. How likely does ‘.’ follow ‘tree’?
9. How likely does ‘<S>’ follow ‘.’?
n-gram models
n-th order Markov assumption
bigram model of s = (a, cute, wampimuk, is, on, the, tree, .)
the counts are obtained from a training corpus
n-gram models
Issues:
Data sparsity
Lack of generalization:
[ride a horse], [ride a llama]
[ride a zebra]
Neural language model
ride
a
lookup table
Neural language model
0
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
ride
a
lookup table
Neural language model
0
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
...
ride
a
lookup table
0
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
...
ride
a
lookup table Neural language model
Neural language model
0
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
...
ride
a
lookup table
neural network
Neural language model
0
0
0
0
1
0
0
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0
1
0
...
ride
a
lookup table
neural network
Neural language model
0
0
0
0
1
0
0
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0
1
0
...
ride
a
lookup table
neural network
zebra should have
representation similar to
horse and llama
Now we can generalize to
the unseen n-grams
[ride a zebra]
Recurrent neural network
models
There is no Markov assumption
Recurrent neural network
models
There is no Markov assumption
arxiv.org/pdf/1503.04069v1.pdf
Recurrent neural network models
yesterday
Recurrent neural network models
yesterday
Recurrent neural network models
yesterday
Recurrent neural network models
yesterday
Recurrent neural network models
yesterday we
Recurrent neural network models
yesterday we
Recurrent neural network models
yesterday we
Recurrent neural network models
yesterday we
Recurrent neural network models
yesterday we were
Recurrent neural network models
yesterday we were
Recurrent neural network models
yesterday we were
Recurrent neural network models
yesterday we were
Recurrent neural network models
yesterday we were riding a
Recurrent neural network models
yesterday we were riding a
horse
Recurrent neural network
models
Vanishing/exploding gradient problem
www.jmlr.org/proceedings/papers/v28/pascanu13.pdf
NaĂŻve transition has difficulty in handling long-term dependencies
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Long short-term memory
rnn models
arxiv.org/pdf/1503.04069v1.pdf
Neural
machine
translation
devblogs.nvidia.com/parallelforall/introduction-
neural-machine-translation-with-gpus
devblogs.nvidia.com/parallelforall/introduction-
neural-machine-translation-gpus-part-2
devblogs.nvidia.com/parallelforall/introduction-
neural-machine-translation-gpus-part-3
Image captioning
cs.stanford.edu/people/karpathy/cvpr2015.pdf
Image captioning
cs.stanford.edu/people/karpathy/cvpr2015.pdf
arxiv.org/pdf/1411.4555v2.pdf
Conclusion
CS224d: Deep Learning for Natural Language Processing
cs224d.stanford.edu
● Neural methods provide us with a powerful set of tools for
embedding language.
● They provide better ways of tying language learning to extra-
linguistic contexts (images, knowledge-bases, cross-lingual data).

Weitere Àhnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Deep learning for nlp
Deep learning for nlpDeep learning for nlp
Deep learning for nlp
 
Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)
 
Word2Vec: Learning of word representations in a vector space - Di Mitri & Her...
Word2Vec: Learning of word representations in a vector space - Di Mitri & Her...Word2Vec: Learning of word representations in a vector space - Di Mitri & Her...
Word2Vec: Learning of word representations in a vector space - Di Mitri & Her...
 
Tutorial on word2vec
Tutorial on word2vecTutorial on word2vec
Tutorial on word2vec
 
Using Text Embeddings for Information Retrieval
Using Text Embeddings for Information RetrievalUsing Text Embeddings for Information Retrieval
Using Text Embeddings for Information Retrieval
 
TomĂĄĆĄ Mikolov - Distributed Representations for NLP
TomĂĄĆĄ Mikolov - Distributed Representations for NLPTomĂĄĆĄ Mikolov - Distributed Representations for NLP
TomĂĄĆĄ Mikolov - Distributed Representations for NLP
 
Yoav Goldberg: Word Embeddings What, How and Whither
Yoav Goldberg: Word Embeddings What, How and WhitherYoav Goldberg: Word Embeddings What, How and Whither
Yoav Goldberg: Word Embeddings What, How and Whither
 
Word2vec slide(lab seminar)
Word2vec slide(lab seminar)Word2vec slide(lab seminar)
Word2vec slide(lab seminar)
 
ÙˆŰ±ŰŽŰ© ŰȘŰ¶Ù…ÙŠÙ† Ű§Ù„ÙƒÙ„Ù…Ű§ŰȘ في Ű§Ù„ŰȘŰčلم Ű§Ù„Űčميق Word embeddings workshop
ÙˆŰ±ŰŽŰ© ŰȘŰ¶Ù…ÙŠÙ† Ű§Ù„ÙƒÙ„Ù…Ű§ŰȘ في Ű§Ù„ŰȘŰčلم Ű§Ù„Űčميق Word embeddings workshopÙˆŰ±ŰŽŰ© ŰȘŰ¶Ù…ÙŠÙ† Ű§Ù„ÙƒÙ„Ù…Ű§ŰȘ في Ű§Ù„ŰȘŰčلم Ű§Ù„Űčميق Word embeddings workshop
ÙˆŰ±ŰŽŰ© ŰȘŰ¶Ù…ÙŠÙ† Ű§Ù„ÙƒÙ„Ù…Ű§ŰȘ في Ű§Ù„ŰȘŰčلم Ű§Ù„Űčميق Word embeddings workshop
 
Word2Vec
Word2VecWord2Vec
Word2Vec
 
Word2vec: From intuition to practice using gensim
Word2vec: From intuition to practice using gensimWord2vec: From intuition to practice using gensim
Word2vec: From intuition to practice using gensim
 
Text Mining for Lexicography
Text Mining for LexicographyText Mining for Lexicography
Text Mining for Lexicography
 
What is word2vec?
What is word2vec?What is word2vec?
What is word2vec?
 
Vectorland: Brief Notes from Using Text Embeddings for Search
Vectorland: Brief Notes from Using Text Embeddings for SearchVectorland: Brief Notes from Using Text Embeddings for Search
Vectorland: Brief Notes from Using Text Embeddings for Search
 
Introduction to word embeddings with Python
Introduction to word embeddings with PythonIntroduction to word embeddings with Python
Introduction to word embeddings with Python
 
Deep Learning for Information Retrieval
Deep Learning for Information RetrievalDeep Learning for Information Retrieval
Deep Learning for Information Retrieval
 
Thai Word Embedding with Tensorflow
Thai Word Embedding with Tensorflow Thai Word Embedding with Tensorflow
Thai Word Embedding with Tensorflow
 
Word Embedding In IR
Word Embedding In IRWord Embedding In IR
Word Embedding In IR
 
GDG Tbilisi 2017. Word Embedding Libraries Overview: Word2Vec and fastText
GDG Tbilisi 2017. Word Embedding Libraries Overview: Word2Vec and fastTextGDG Tbilisi 2017. Word Embedding Libraries Overview: Word2Vec and fastText
GDG Tbilisi 2017. Word Embedding Libraries Overview: Word2Vec and fastText
 
Deep Learning for Natural Language Processing: Word Embeddings
Deep Learning for Natural Language Processing: Word EmbeddingsDeep Learning for Natural Language Processing: Word Embeddings
Deep Learning for Natural Language Processing: Word Embeddings
 

Andere mochten auch

Transcranial Electrostim Asd
Transcranial Electrostim AsdTranscranial Electrostim Asd
Transcranial Electrostim Asd
WinesforAutism
 
Language development in children
Language development in childrenLanguage development in children
Language development in children
Anam_ Khan
 
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč Đ°ĐżĐżĐ°Ń€Đ°Ń‚ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
kulibin
 
Ux paper prototyping
Ux paper prototypingUx paper prototyping
Ux paper prototyping
Grace Ng
 

Andere mochten auch (20)

Noam chomsky-
Noam chomsky-Noam chomsky-
Noam chomsky-
 
Transcranial Electrostim Asd
Transcranial Electrostim AsdTranscranial Electrostim Asd
Transcranial Electrostim Asd
 
DataRobot project
DataRobot projectDataRobot project
DataRobot project
 
Deep Learning for Machine Translation, by Satoshi Enoue, SYSTRAN
Deep Learning for Machine Translation, by Satoshi Enoue, SYSTRANDeep Learning for Machine Translation, by Satoshi Enoue, SYSTRAN
Deep Learning for Machine Translation, by Satoshi Enoue, SYSTRAN
 
Machine learning on Hadoop data lakes
Machine learning on Hadoop data lakesMachine learning on Hadoop data lakes
Machine learning on Hadoop data lakes
 
Computational Linguistics week 5
Computational Linguistics  week 5Computational Linguistics  week 5
Computational Linguistics week 5
 
On using monolingual corpora in neural machine translation
On using monolingual corpora in neural machine translationOn using monolingual corpora in neural machine translation
On using monolingual corpora in neural machine translation
 
Language development in children
Language development in childrenLanguage development in children
Language development in children
 
DataRobot R Package
DataRobot R PackageDataRobot R Package
DataRobot R Package
 
Deep Learning for Machine Translation
Deep Learning for Machine TranslationDeep Learning for Machine Translation
Deep Learning for Machine Translation
 
(Kpi summer school 2015) theano tutorial part1
(Kpi summer school 2015) theano tutorial part1(Kpi summer school 2015) theano tutorial part1
(Kpi summer school 2015) theano tutorial part1
 
(Kpi summer school 2015) theano tutorial part2
(Kpi summer school 2015) theano tutorial part2(Kpi summer school 2015) theano tutorial part2
(Kpi summer school 2015) theano tutorial part2
 
Model selection and tuning at scale
Model selection and tuning at scaleModel selection and tuning at scale
Model selection and tuning at scale
 
Make Sense Out of Data with Feature Engineering
Make Sense Out of Data with Feature EngineeringMake Sense Out of Data with Feature Engineering
Make Sense Out of Data with Feature Engineering
 
Chef training Day5
Chef training Day5Chef training Day5
Chef training Day5
 
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč Đ°ĐżĐżĐ°Ń€Đ°Ń‚ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
ĐŁĐœĐžĐČĐ”Ń€ŃĐ°Đ»ŃŒĐœŃ‹Đč ŃĐœĐ”Ń€ĐłĐŸŃĐ±Đ”Ń€Đ”ĐłĐ°ŃŽŃ‰ĐžĐč Ń€Đ”Đ¶ŃƒŃ‰ĐžĐč аппарат
 
Osaaminen uuden yrityksen johtajan nÀkökulmasta
Osaaminen uuden yrityksen johtajan nÀkökulmastaOsaaminen uuden yrityksen johtajan nÀkökulmasta
Osaaminen uuden yrityksen johtajan nÀkökulmasta
 
Chef training - Day1
Chef training - Day1Chef training - Day1
Chef training - Day1
 
Ux paper prototyping
Ux paper prototypingUx paper prototyping
Ux paper prototyping
 
Daily Newsletter: 16th December, 2010
Daily Newsletter: 16th December, 2010Daily Newsletter: 16th December, 2010
Daily Newsletter: 16th December, 2010
 

Ähnlich wie (Kpi summer school 2015) word embeddings and neural language modeling

Interview presentation
Interview presentationInterview presentation
Interview presentation
Joseph Gubbins
 
SNLI_presentation_2
SNLI_presentation_2SNLI_presentation_2
SNLI_presentation_2
Viral Gupta
 
Natural Language Processing: Lecture 255
Natural Language Processing: Lecture 255Natural Language Processing: Lecture 255
Natural Language Processing: Lecture 255
deffa5
 

Ähnlich wie (Kpi summer school 2015) word embeddings and neural language modeling (20)

Contemporary Models of Natural Language Processing
Contemporary Models of Natural Language ProcessingContemporary Models of Natural Language Processing
Contemporary Models of Natural Language Processing
 
Semeval Deep Learning In Semantic Similarity
Semeval Deep Learning In Semantic SimilaritySemeval Deep Learning In Semantic Similarity
Semeval Deep Learning In Semantic Similarity
 
Interview presentation
Interview presentationInterview presentation
Interview presentation
 
lec03-LanguageModels_230214_161016.pdf
lec03-LanguageModels_230214_161016.pdflec03-LanguageModels_230214_161016.pdf
lec03-LanguageModels_230214_161016.pdf
 
SNLI_presentation_2
SNLI_presentation_2SNLI_presentation_2
SNLI_presentation_2
 
Skip-gram Model Broken Down
Skip-gram Model Broken DownSkip-gram Model Broken Down
Skip-gram Model Broken Down
 
David Barber - Deep Nets, Bayes and the story of AI
David Barber - Deep Nets, Bayes and the story of AIDavid Barber - Deep Nets, Bayes and the story of AI
David Barber - Deep Nets, Bayes and the story of AI
 
INFO-2950-Languages-and-Grammars.ppt
INFO-2950-Languages-and-Grammars.pptINFO-2950-Languages-and-Grammars.ppt
INFO-2950-Languages-and-Grammars.ppt
 
Recursive Neural Networks
Recursive Neural NetworksRecursive Neural Networks
Recursive Neural Networks
 
A Panorama of Natural Language Processing
A Panorama of Natural Language ProcessingA Panorama of Natural Language Processing
A Panorama of Natural Language Processing
 
Neural Language Generation Head to Toe
Neural Language Generation Head to Toe Neural Language Generation Head to Toe
Neural Language Generation Head to Toe
 
Natural Language parsing.pptx
Natural Language parsing.pptxNatural Language parsing.pptx
Natural Language parsing.pptx
 
transfer.pptx
transfer.pptxtransfer.pptx
transfer.pptx
 
Neural Networks with Focus on Language Modeling
Neural Networks with Focus on Language ModelingNeural Networks with Focus on Language Modeling
Neural Networks with Focus on Language Modeling
 
Natural Language Processing: Lecture 255
Natural Language Processing: Lecture 255Natural Language Processing: Lecture 255
Natural Language Processing: Lecture 255
 
natural language processing
natural language processing natural language processing
natural language processing
 
Deep Learning and Watson Studio
Deep Learning and Watson StudioDeep Learning and Watson Studio
Deep Learning and Watson Studio
 
Lda2vec text by the bay 2016 with notes
Lda2vec text by the bay 2016 with notesLda2vec text by the bay 2016 with notes
Lda2vec text by the bay 2016 with notes
 
L6.pptxsdv dfbdfjftj hgjythgfvfhjyggunghb fghtffn
L6.pptxsdv dfbdfjftj hgjythgfvfhjyggunghb fghtffnL6.pptxsdv dfbdfjftj hgjythgfvfhjyggunghb fghtffn
L6.pptxsdv dfbdfjftj hgjythgfvfhjyggunghb fghtffn
 
Towards a Rewriting Framework for Textual Entailment
Towards a Rewriting Framework for Textual EntailmentTowards a Rewriting Framework for Textual Entailment
Towards a Rewriting Framework for Textual Entailment
 

KĂŒrzlich hochgeladen

development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virus
NazaninKarimi6
 
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
 
Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptx
Silpa
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
SĂ©rgio Sacani
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
SĂ©rgio Sacani
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
Areesha Ahmad
 

KĂŒrzlich hochgeladen (20)

Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.
 
development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virus
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .
 
GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
 
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.
 
Grade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsGrade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its Functions
 
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
 
Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptx
 
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
 
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
 
Stages in the normal growth curve
Stages in the normal growth curveStages in the normal growth curve
Stages in the normal growth curve
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
 
An introduction on sequence tagged site mapping
An introduction on sequence tagged site mappingAn introduction on sequence tagged site mapping
An introduction on sequence tagged site mapping
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
 
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIACURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
 
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
 
Bhiwandi Bhiwandi ❀CALL GIRL 7870993772 ❀CALL GIRLS ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❀CALL GIRL 7870993772 ❀CALL GIRLS  ESCORT SERVICE In Bhiwan...Bhiwandi Bhiwandi ❀CALL GIRL 7870993772 ❀CALL GIRLS  ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❀CALL GIRL 7870993772 ❀CALL GIRLS ESCORT SERVICE In Bhiwan...
 
Velocity and Acceleration PowerPoint.ppt
Velocity and Acceleration PowerPoint.pptVelocity and Acceleration PowerPoint.ppt
Velocity and Acceleration PowerPoint.ppt
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
 

(Kpi summer school 2015) word embeddings and neural language modeling