SlideShare a Scribd company logo
1 of 59
Download to read offline
Correlation Clustering
Bounding and Comparing Methods Beyond ILP
Micha Elsner and Warren Schudy
Department of Computer Science
Brown University
May 26, 2009
Document clustering
rec.motorcycles soc.religion.christian
2
Document clustering: pairwise decisions
rec.motorcycles soc.religion.christian
3
Document clustering: partitioning
rec.motorcycles soc.religion.christian
4
How good is this?
rec.motorcycles soc.religion.christian
Cut green arc Uncut red arc
5
Correlation clustering
Given green edges w+ and red edges w−...
Partition to minimize disagreement.
minx xij w−
ij + (1 − xij )w+
ij
s.t.
xij form a consistent clustering
relation must be transitive: xij and xjk → xik
Minimization is NP-hard (Bansal et al. ‘04).
How do we solve it?
6
ILP scalability
ILP:
◮ O(n2) variables (each pair of points).
◮ O(n3) constraints (triangle inequality).
◮ Solvable for about 200 items.
Good enough for single-document coreference or generation.
Beyond this, need something else.
7
Previous applications
◮ Coreference resolution (Soon et al. ‘01), (Ng+Cardie ‘02),
(McCallum+Wellner ‘04), (Finkel+Manning ‘08).
◮ Grouping named entities (Cohen+Richman ‘02).
◮ Content aggregation (Barzilay+Lapata ‘06).
◮ Topic segmentation (Malioutov+Barzilay ‘06).
◮ Chat disentanglement (Elsner+Charniak ‘08).
Solutions: heuristic, ILP, approximate, special-case,
8
This talk
Not about when you should use correlation clustering.
◮ When you can’t use ILP, what should you do?
◮ How well can you do in practice?
◮ Does the objective predict real performance?
9
This talk
Not about when you should use correlation clustering.
◮ When you can’t use ILP, what should you do?
◮ Greedy voting scheme, then local search.
◮ How well can you do in practice?
◮ Does the objective predict real performance?
9
This talk
Not about when you should use correlation clustering.
◮ When you can’t use ILP, what should you do?
◮ Greedy voting scheme, then local search.
◮ How well can you do in practice?
◮ Reasonably close to optimal.
◮ Does the objective predict real performance?
9
This talk
Not about when you should use correlation clustering.
◮ When you can’t use ILP, what should you do?
◮ Greedy voting scheme, then local search.
◮ How well can you do in practice?
◮ Reasonably close to optimal.
◮ Does the objective predict real performance?
◮ Often, but not always.
9
Overview
Motivation
Algorithms
Bounding
Task 1: Twenty Newsgroups
Task 2: Chat Disentanglement
Conclusions
10
Algorithms
Some fast, simple algorithms from the literature.
Greedy algorithms
◮ First link
◮ Best link
◮ Voted link
◮ Pivot
Local search
◮ Best one-element move
(BOEM)
◮ Simulated annealing
11
Greedy algorithms
Step through the nodes in random order.
Use a linking rule to place each unlabeled node.
Previously assigned
Next node
?
12
First link (Soon ‘01)
Previously assigned
Next node
?
the most recent positive arc
13
Best link (Ng+Cardie ‘02)
Previously assigned
Next node
?
the highest scoring arc
14
Voted link
Previously assigned
Next node
?
the cluster with highest arc sum
15
Pivot (Ailon+al ‘08)
Create each whole cluster at once.
Take the first node as the pivot.
add all nodes
with positive arcs
pivot node
16
Pivot
Choose the next unlabeled node as the pivot.
new pivot node
add all nodes
with positive arcs
17
Local searches
One-element moves change the label of a single node.
Current state
18
Local searches
One-element moves change the label of a single node.
Current state New state
◮ Greedily: best one-element move (BOEM)
◮ Stochastically (annealing)
18
Overview
Motivation
Algorithms
Bounding
Task 1: Twenty Newsgroups
Task 2: Chat Disentanglement
Conclusions
19
Why bound?
objective value
better
worse
all singletons clustering
various heuristics
20
Why bound?
objective value
better
worse
optimal
all singletons clustering
various heuristics
20
Why bound?
objective value
better
worse
optimal
all singletons clustering
various heuristics
20
Why bound?
objective value
better
worse
lower bound
optimal
all singletons clustering
various heuristics
20
Trivial bound from previous work
rec.motorcycles soc.religion.christian
cut all red arcs
no transitivity!
21
Semidefinite programming bound (Charikar et al.‘05)
Represent each item by an n-dimensional basis vector:
For an item in cluster c, vector r is:
(0, 0, . . . , 0,
| {z }
c−1
1, 0, . . . , 0
| {z }
n−c
)
For two items clustered together, ri • rj = 1.
Otherwise ri • rj = 0.
22
Semidefinite programming bound (Charikar et al.‘05)
Represent each item by an n-dimensional basis vector:
For an item in cluster c, vector r is:
(0, 0, . . . , 0,
| {z }
c−1
1, 0, . . . , 0
| {z }
n−c
)
For two items clustered together, ri • rj = 1.
Otherwise ri • rj = 0.
Relaxation
Allow ri to be any real-valued vectors with:
◮ Unit length.
◮ All products ri • rj non-negative.
22
Semidefinite programming bound (2)
Semidefinite program (SDP)
minr
P
(ri • rj )w−
ij + (1 − rj • rj )w+
ij
s.t.
ri • ri = 1 ∀i
ri • rj ≥ 0 ∀i 6= j
Objective and constraints are linear in the dot products of the ri .
23
Semidefinite programming bound (2)
Semidefinite program (SDP)
minx
P
xij w−
ij + (1 − xij )w+
ij
s.t.
xij = 1 ∀i
xij ≥ 0 ∀i 6= j
Objective and constraints are linear in the dot products of the ri .
Replace dot products with variables xij.
New constraint: xij must be dot products of some vectors r!
23
Semidefinite programming bound (2)
Semidefinite program (SDP)
minx
P
xij w−
ij + (1 − xij )w+
ij
s.t.
xij = 1 ∀i
xij ≥ 0 ∀i 6= j
matrix X PSD
Objective and constraints are linear in the dot products of the ri .
Replace dot products with variables xij.
New constraint: xij must be dot products of some vectors r!
Equivalent: matrix X is positive semi-definite.
23
Solving the SDP
◮ SDP bound previously studied in theory.
◮ We actually solve it!
◮ Conic Bundle method (Helmberg ‘00).
◮ Scales to several thousand points.
◮ Iteratively improves bounds.
◮ Run for 60 hrs.
24
Bounds
objective value
better
worse
trivial bound
SDP bound
(100%)
(0%)
optimal
all singletons clustering
various heuristics
25
Overview
Motivation
Algorithms
Bounding
Task 1: Twenty Newsgroups
Task 2: Chat Disentanglement
Conclusions
26
Twenty Newsgroups
A standard clustering dataset.
Subsample of 2000 posts.
Hold out four newsgroups to train a pairwise classifier:
27
Twenty Newsgroups
A standard clustering dataset.
Subsample of 2000 posts.
Hold out four newsgroups to train a pairwise classifier:
Is this message pair from the same newsgroup?
◮ Word overlap (bucketed by IDF).
◮ Cosine in LSA space.
◮ Overlap in subject lines (by IDF).
Max-ent model with F-score of 29%.
27
Affinity matrix
Ground truth
Affinities
28
Results
Objective F-score One-to-one
Bounds
Trivial bound 0%
SDP bound 51.1%
29
Results
Objective F-score One-to-one
Bounds
Trivial bound 0%
SDP bound 51.1%
Local
search
Vote/BOEM 55.8%
Sim Anneal 56.3%
Pivot/BOEM 56.6%
Best/BOEM 57.6%
First/BOEM 57.9%
BOEM 60.1%
29
Results
Objective F-score One-to-one
Bounds
Trivial bound 0%
SDP bound 51.1%
Local
search
Vote/BOEM 55.8%
Sim Anneal 56.3%
Pivot/BOEM 56.6%
Best/BOEM 57.6%
First/BOEM 57.9%
BOEM 60.1%
Greedy
Vote 59.0%
Pivot 100%
Best 138%
First 619%
29
Results
Objective F-score One-to-one
Bounds
Trivial bound 0%
SDP bound 51.1%
Local
search
Vote/BOEM 55.8% 33 41
Sim Anneal 56.3% 31 36
Pivot/BOEM 56.6% 32 39
Best/BOEM 57.6% 31 38
First/BOEM 57.9% 30 36
BOEM 60.1% 30 35
Greedy
Vote 59.0% 29 35
Pivot 100% 17 27
Best 138% 20 29
First 619% 11 8
29
Objective vs. metrics
Objective
One−to−one
30
Objective vs. metrics
Objective
One−to−one
30
Overview
Motivation
Algorithms
Bounding
Task 1: Twenty Newsgroups
Task 2: Chat Disentanglement
Conclusions
31
Chat disentanglement
Separate IRC chat log into threads of conversation.
800 utterance dataset and max-ent classifier from
(Elsner+Charniak ‘08).
Classifier is run on pairs less than 129 seconds apart.
Ruthe question: what could cause linux not to
find a dhcp server?
Christiana Arlie: I dont eat bananas.
Renate Ruthe, the fact that there isn’t one?
Arlie Christiana, you should, they have lots of
potassium goodness
Ruthe Renate, xp computer finds it
Renate eh? dunno then
Christiana Arlie: I eat cardboard boxes because of the fibers.
32
Affinity matrix
Ground truth
Affinities
33
Results
Objective Local One-to-one
Bounds
Trivial bound 0%
SDP bound 13.0%
34
Results
Objective Local One-to-one
Bounds
Trivial bound 0%
SDP bound 13.0%
Local
search
First/BOEM 19.3%
Vote/BOEM 20.0%
Sim Anneal 20.3%
Best/BOEM 21.3%
BOEM 21.5%
Pivot/BOEM 22.0%
34
Results
Objective Local One-to-one
Bounds
Trivial bound 0%
SDP bound 13.0%
Local
search
First/BOEM 19.3%
Vote/BOEM 20.0%
Sim Anneal 20.3%
Best/BOEM 21.3%
BOEM 21.5%
Pivot/BOEM 22.0%
Greedy
Vote 26.3%
Best 37.1%
Pivot 44.4%
First 58.3%
34
Results
Objective Local One-to-one
Bounds
Trivial bound 0%
SDP bound 13.0%
Local
search
First/BOEM 19.3% 74 41
Vote/BOEM 20.0% 73 46
Sim Anneal 20.3% 73 42
Best/BOEM 21.3% 73 43
BOEM 21.5% 72 22
Pivot/BOEM 22.0% 72 45
Greedy
Vote 26.3% 72 44
Best 37.1% 67 40
Pivot 44.4% 66 39
First 58.3% 62 39
34
Objective doesn’t always predict performance
Most edges have weight .5:
◮ Some systems link too much.
◮ Doesn’t affect local metric much...
◮ But global metric suffers.
In this situation, useful to have an external measure of quality.
Better inference is still useful:
◮ Vote/BOEM 12% better than (Elsner+Charniak ‘08).
◮ Exact same classifier!
35
Overview
Motivation
Algorithms
Bounding
Task 1: Twenty Newsgroups
Task 2: Chat Disentanglement
Conclusions
36
Conclusions
◮ Always use local search!
◮ Best greedy algorithm is voting.
37
Conclusions
◮ Always use local search!
◮ Best greedy algorithm is voting.
◮ SDP provides a tighter bound than previous work.
◮ Best heuristics are not too far from optimal.
37
Conclusions
◮ Always use local search!
◮ Best greedy algorithm is voting.
◮ SDP provides a tighter bound than previous work.
◮ Best heuristics are not too far from optimal.
◮ Better inference usually provides better solutions.
◮ But not always!
◮ Especially for the top few solutions.
◮ Useful to check statistics like number of clusters.
37
Conclusions
◮ Always use local search!
◮ Best greedy algorithm is voting.
◮ SDP provides a tighter bound than previous work.
◮ Best heuristics are not too far from optimal.
◮ Better inference usually provides better solutions.
◮ But not always!
◮ Especially for the top few solutions.
◮ Useful to check statistics like number of clusters.
◮ More experiments and discussion in the paper.
37
Acknowledgements
Software is available:
http://cs.brown.edu/∼melsner
Thanks:
◮ Christoph Helmberg
◮ Claire Matheiu
◮ Lidan Wang and Doug Oard
◮ Three reviewers
38

More Related Content

Similar to ilp-nlp-slides.pdf

Building graphs to discover information by David Martínez at Big Data Spain 2015
Building graphs to discover information by David Martínez at Big Data Spain 2015Building graphs to discover information by David Martínez at Big Data Spain 2015
Building graphs to discover information by David Martínez at Big Data Spain 2015Big Data Spain
 
Fast ALS-based matrix factorization for explicit and implicit feedback datasets
Fast ALS-based matrix factorization for explicit and implicit feedback datasetsFast ALS-based matrix factorization for explicit and implicit feedback datasets
Fast ALS-based matrix factorization for explicit and implicit feedback datasetsGravity - Rock Solid Recommendations
 
Mncs 16-10-1주-변승규-introduction to the machine learning #2
Mncs 16-10-1주-변승규-introduction to the machine learning #2Mncs 16-10-1주-변승규-introduction to the machine learning #2
Mncs 16-10-1주-변승규-introduction to the machine learning #2Seung-gyu Byeon
 
Support Vector Machines is the the the the the the the the the
Support Vector Machines is the the the the the the the the theSupport Vector Machines is the the the the the the the the the
Support Vector Machines is the the the the the the the the thesanjaibalajeessn
 
Functional specialization in human cognition: a large-scale neuroimaging init...
Functional specialization in human cognition: a large-scale neuroimaging init...Functional specialization in human cognition: a large-scale neuroimaging init...
Functional specialization in human cognition: a large-scale neuroimaging init...Ana Luísa Pinho
 
Community structure in complex networks
Community structure in complex networksCommunity structure in complex networks
Community structure in complex networksVincent Traag
 
Relational machine-learning
Relational machine-learningRelational machine-learning
Relational machine-learningBhushan Kotnis
 
Sienna 13 limitations
Sienna 13 limitationsSienna 13 limitations
Sienna 13 limitationschidabdu
 
Data simulation basics
Data simulation basicsData simulation basics
Data simulation basicsDorothy Bishop
 
Machine learning by using python By: Professor Lili Saghafi
Machine learning by using python By: Professor Lili SaghafiMachine learning by using python By: Professor Lili Saghafi
Machine learning by using python By: Professor Lili SaghafiProfessor Lili Saghafi
 
Data structure-questions
Data structure-questionsData structure-questions
Data structure-questionsShekhar Chander
 
17- Kernels and Clustering.pptx
17- Kernels and Clustering.pptx17- Kernels and Clustering.pptx
17- Kernels and Clustering.pptxssuser2023c6
 
Introduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesIntroduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesXavier Rafael Palou
 
Understanding Basics of Machine Learning
Understanding Basics of Machine LearningUnderstanding Basics of Machine Learning
Understanding Basics of Machine LearningPranav Ainavolu
 
SVD and the Netflix Dataset
SVD and the Netflix DatasetSVD and the Netflix Dataset
SVD and the Netflix DatasetBen Mabey
 
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...Florent Renucci
 

Similar to ilp-nlp-slides.pdf (20)

Building graphs to discover information by David Martínez at Big Data Spain 2015
Building graphs to discover information by David Martínez at Big Data Spain 2015Building graphs to discover information by David Martínez at Big Data Spain 2015
Building graphs to discover information by David Martínez at Big Data Spain 2015
 
Fast ALS-based matrix factorization for explicit and implicit feedback datasets
Fast ALS-based matrix factorization for explicit and implicit feedback datasetsFast ALS-based matrix factorization for explicit and implicit feedback datasets
Fast ALS-based matrix factorization for explicit and implicit feedback datasets
 
Mncs 16-10-1주-변승규-introduction to the machine learning #2
Mncs 16-10-1주-변승규-introduction to the machine learning #2Mncs 16-10-1주-변승규-introduction to the machine learning #2
Mncs 16-10-1주-변승규-introduction to the machine learning #2
 
Support Vector Machines is the the the the the the the the the
Support Vector Machines is the the the the the the the the theSupport Vector Machines is the the the the the the the the the
Support Vector Machines is the the the the the the the the the
 
Functional specialization in human cognition: a large-scale neuroimaging init...
Functional specialization in human cognition: a large-scale neuroimaging init...Functional specialization in human cognition: a large-scale neuroimaging init...
Functional specialization in human cognition: a large-scale neuroimaging init...
 
Community structure in complex networks
Community structure in complex networksCommunity structure in complex networks
Community structure in complex networks
 
Relational machine-learning
Relational machine-learningRelational machine-learning
Relational machine-learning
 
Sienna 13 limitations
Sienna 13 limitationsSienna 13 limitations
Sienna 13 limitations
 
Data simulation basics
Data simulation basicsData simulation basics
Data simulation basics
 
Machine learning by using python By: Professor Lili Saghafi
Machine learning by using python By: Professor Lili SaghafiMachine learning by using python By: Professor Lili Saghafi
Machine learning by using python By: Professor Lili Saghafi
 
Data structure-questions
Data structure-questionsData structure-questions
Data structure-questions
 
17- Kernels and Clustering.pptx
17- Kernels and Clustering.pptx17- Kernels and Clustering.pptx
17- Kernels and Clustering.pptx
 
Introduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesIntroduction to conventional machine learning techniques
Introduction to conventional machine learning techniques
 
Machine Learning Tools and Particle Swarm Optimization for Content-Based Sear...
Machine Learning Tools and Particle Swarm Optimization for Content-Based Sear...Machine Learning Tools and Particle Swarm Optimization for Content-Based Sear...
Machine Learning Tools and Particle Swarm Optimization for Content-Based Sear...
 
Understanding Basics of Machine Learning
Understanding Basics of Machine LearningUnderstanding Basics of Machine Learning
Understanding Basics of Machine Learning
 
SVD and the Netflix Dataset
SVD and the Netflix DatasetSVD and the Netflix Dataset
SVD and the Netflix Dataset
 
Realtime Analytics
Realtime AnalyticsRealtime Analytics
Realtime Analytics
 
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...
Manifold Blurring Mean Shift algorithms for manifold denoising, presentation,...
 
nber_slides.pdf
nber_slides.pdfnber_slides.pdf
nber_slides.pdf
 
Blinkdb
BlinkdbBlinkdb
Blinkdb
 

Recently uploaded

Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 

Recently uploaded (20)

Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 

ilp-nlp-slides.pdf