Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf ·...

85
Machine Learning Alessandro Moschitti Department of information and communication technology University of Trento Email: [email protected] Kernel Engineering

Transcript of Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf ·...

Page 1: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Machine Learning

Alessandro Moschitti

Department of information and communication technology University of Trento

Email: [email protected]

Kernel Engineering

Page 2: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernel Function Definition

  Kernel function are mappings such as

mm

n xxxxx ℜ∈=ℜ∈ ))(),...,(),(()(, 21

φφφφ

Page 3: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Valid Kernels

Page 4: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Valid Kernels cont’d

  If the matrix is positive semi-definite then we can find a mapping φ implementing the kernel function

Page 5: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Valid Kernel operations

  k(x,z) = k1(x,z)+k2(x,z)

  k(x,z) = k1(x,z)*k2(x,z)

  k(x,z) = α k1(x,z)

  k(x,z) = f(x)f(z)

  k(x,z) = k1(φ(x),φ(z))

  k(x,z) = x'Bz

Page 6: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Basic Kernels for unstructured data

  Linear Kernel   Your features

  Polynomial Kernel   Feature conjunctions

  Lexical kernel   similarity between your features

Page 7: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernels for structured data

  String Kernel   Character sequences   Word sequences   Spectrum kernel

  Tree kernels   Subtree,   Subset Tree,   Partial Tree kernels

  Applies properties of string kernels

Page 8: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernel Engineering for Language Applications

  Basic Combinations

  Canonical Mappings, e.g. object transformations

  Merging of Kernels

Page 9: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernel Combinations an example

  Kernel Combinations:

3

3

3

3

33

,

,

pTree

pTreePTree

p

p

Tree

TreePTree

pTreePTreepTreePTree

KKKK

KKK

KKK

KKKKKK

×

×=+×=

×=+×=

×+

×+

γ

γ

kernel Tree

featuresflat of kernel polynomial 3

Tree

p

K

K

Page 10: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Object Transformation [CLJ 2008]

  Canonical Mapping, φM()   object transformation,   e. g. a syntactic parse tree, into a verb

subcategorization frame tree.

  Feature Extraction, φE()   maps the canonical structure in all its fragments   different fragment spaces, e. g. ST, SST and PT.

),()()(

))(())(()()(),(2121

212121

SSKSSOOOOOOK

EEE

MEME=⋅=

⋅=⋅=φφ

φφφφφφ

Page 11: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Classification

  In an event:   target words describe relation among different entities   the participants are often seen as predicate's

arguments.

  Example: Paul gives a talk in Rome

Page 12: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Classification

  In an event:   target words describe relation among different entities   the participants are often seen as predicate's

arguments.

  Example: [ Arg0 Paul] [ predicate gives ] [ Arg1 a talk] [ ArgM in Rome]

Page 13: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate-Argument Feature Representation

Given a sentence, a predicate p: 1.  Derive the sentence parse tree 2.  For each node pair <Np,Nx>

a.  Extract a feature representation set F

b.  If Nx exactly covers the Arg-i, F is one of its positive examples

c.  F is a negative example otherwise

Page 14: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Vector Representation for the linear kernel

Phrase Type

Predicate Word

Head Word

Parse Tree Path

Voice Active

Position Right

Page 15: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernel Engineering: Tree Tailoring

Page 16: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

PAT Kernel [Moschitti, 2004]

S

N

NP

D N

VP

V Paul

in

delivers

a talk

PP

IN NP

jj

Fv,arg.0

formal

N

style

Arg. 0

a) S

N

NP

D N

VP

V Paul

in

delivers

a talk

PP

IN NP

jj

formal

N

style

Fv,arg.1 b) S

N

NP

D N

VP

V Paul

in

delivers

a talk

PP

IN NP

jj

formal

N

style Arg. 1

Fv,arg.M

c)

Arg.M

  These are Semantic Structures

  Given the sentence:

[ Arg0 Paul] [ predicate delivers] [ Arg1 a talk] [ ArgM in formal Style]

Page 17: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

In other words we consider…

NP

D N

VP

V

delivers

a talk

S

N

Paul

in

PP

IN NP

jj

formal

N

style Arg. 1

Page 18: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Sub-Categorization Kernel (SCF) [Moschitti, 2004]

S

N

NP

D N

VP

V Paul

in

delivers

a talk

PP

IN NP

jj

formal

N

style

Arg. 1

Arg. M

Arg. 0

Predicate

Page 19: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Experiments on Gold Standard Trees

  PropBank and PennTree bank   about 53,700 sentences   Sections from 2 to 21 train., 23 test., 1 and 22 dev.   Arguments from Arg0 to Arg5, ArgA and ArgM for a total of 122,774 and 7,359

  FrameNet and Collins’ automatic trees   24,558 sentences from the 40 frames of Senseval 3   18 roles (same names are mapped together)   Only verbs   70% for training and 30% for testing

Page 20: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Argument Classification with Poly Kernel

Page 21: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

PropBank Results

Page 22: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Argument Classification on PAT using different Tree Fragment Extractor [Moschitti, ECML 2006]

0.75

0.78

0.80

0.83

0.85

0.88

0 10 20 30 40 50 60 70 80 90 100% Training Data

Accur

acy --

-

ST SSTLinear PT

Page 23: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

FrameNet Results

  ProbBank arguments vs. Semantic Roles

Page 24: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernel Engineering: Node marking [Moschitti et al, CLJ 2008]

Page 25: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Marking Boundary nodes

Page 26: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Node Marking Effect

Page 27: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Different tailoring and marking

CMST

MMST

Page 28: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Experiments

  PropBank and PennTree bank   about 53,700 sentences   Charniak trees from CoNLL 2005

  Boundary detection:   Section 2 training   Section 24 testing   PAF and MPAF

Page 29: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Number of examples/nodes of Section 2

Page 30: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Feature (PAF) vs. Marked PAF (MPAF) [ACL-ws-2005]

Page 31: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Other Canonical mappings: Semantic structures for re-ranking [Moschitti et al., CoNLL06]

Page 32: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question Classification

Page 33: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question Taxonomy

  Definition: What does HTML stand for?

  Description: What's the final line in the Edgar Allan Poe poem "The Raven"?

  Entity: What foods can cause allergic reaction in people?

  Human: Who won the Nobel Peace Prize in 1992?

  Location: Where is the Statue of Liberty?

  Manner: How did Bob Marley die?

  Numeric: When was Martin Luther King Jr. born?

  Organization: What company makes Bentley cars?

Page 34: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question Classifier based on Tree Kernels

  Question dataset (http://l2r.cs.uiuc.edu/~cogcomp/Data/QA/QC/) [Lin and Roth, 2005])   Distributed on 6 categories: Abbreviations, Descriptions, Entity,

Human, Location, and Numeric.

  Fixed split 5500 training and 500 test questions

  Cross-validation (10-folds)

  Using the whole question parse trees   Constituent parsing   Example

“What is an offer of direct stock purchase plan ?”

Page 35: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the
Page 36: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernels

  BOW, POS are obtained with a simple tree, e.g.

  PT (parse tree)

  PAS (predicate argument structure)

BOX

is What an offer an

* * * * *

Page 37: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question classification

Page 38: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Merging of Kernels [Bloehdorn and Moschitti, ECIR and CIKM 2007]:

  Syntactic/Semantic Tree Kernel

  Kernel Combinations

  Experiments

Page 39: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Efficient evaluation of the scalar product

x ⋅ z = φ(Tx ) ⋅ φ(Tz ) = K(Tx,Tz ) =

=nx ∈Tx

∑ Δ(nx,nz)nz ∈Tz

Page 40: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Efficient evaluation of the scalar product

  [Collins and Duffy, ACL 2002] evaluate Δ in O(n2):

Δ(nx,nz ) = 0, if the productions are different elseΔ(nx,nz ) =1, if pre - terminals else

Δ(nx,nz ) = (1+ Δ(ch(nx, j),ch(nz, j)))j=1

nc(nx )

x ⋅ z = φ(Tx ) ⋅ φ(Tz ) = K(Tx,Tz ) =

=nx ∈Tx

∑ Δ(nx,nz)nz ∈Tz

Page 41: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Merging of Kernels

Page 42: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Merging of Kernels

NP

D N

VP

V

gives

a talk

N

good

NP

D N

VP

V

gives

a talk

N

solid

Page 43: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Delta Evaluation is very simple

Page 44: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Similarity based on WordNet

Page 45: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question Classification with S/STK

Page 46: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Practical Example

Page 47: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

SVM-light-TK Software

  Encodes ST, SST and combination kernels

in SVM-light [Joachims, 1999]

  Available at http://dit.unitn.it/~moschitt/

  Tree forests, vector sets

  New extensions: the PT kernel will be released asap

Page 48: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Data Format

  “What does Html stand for?”   1 |BT| (SBARQ (WHNP (WP What))(SQ (AUX does)(NP (NNP

S.O.S.))(VP (VB stand)(PP (IN for))))(. ?))

|BT| (BOW (What *)(does *)(S.O.S. *)(stand *)(for *)(? *))

|BT| (BOP (WP *)(AUX *)(NNP *)(VB *)(IN *)(. *)) |BT| (PAS (ARG0 (R-A1 (What *)))(ARG1 (A1 (S.O.S. NNP)))(ARG2

(rel stand)))

|ET| 1:1 21:2.742439465642236E-4 23:1 30:1 36:1 39:1 41:1 46:1 49:1 66:1 152:1 274:1 333:1

|BV| 2:1 21:1.4421347148614654E-4 23:1 31:1 36:1 39:1 41:1 46:1 49:1 52:1 66:1 152:1 246:1 333:1 392:1 |EV|

Page 49: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Basic Commands

  Training and classification   ./svm_learn -t 5 -C T train.dat model   ./svm_classify test.dat model

  Learning with a vector sequence   ./svm_learn -t 5 -C V train.dat model

  Learning with the sum of vector and kernel sequences   ./svm_learn -t 5 -C + train.dat model

Page 50: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Question and Answer Classification Canonical Mapping + Kernel

Combinations

Page 51: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

TASK: Automatic Classification [Moschitti, CIKM 2008]

  The classifier detects if a pair (question and answer) is correct or not

  A representation for the pair is needed

  The classifier can be used to re-rank the output of a basic QA system

Page 52: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Dataset 2: TREC data

  138 TREC 2001 test questions labeled as “description”

  2,256 sentences, extracted from the best ranked paragraphs (using a basic QA system based on Lucene search engine on TREC dataset)

  216 of which labeled as correct by one annotator

Page 53: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Dataset 2: TREC data

  138 TREC 2001 test questions labeled as “description”

  2,256 sentences, extracted from the best ranked paragraphs (using a basic QA system based on Lucene search engine on TREC dataset)

  216 of which labeled as correct by one annotator

A question is linked to many answers: all its derived pairs cannot be shared by training and test sets

Page 54: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Bags of words (BOW) and POS-tags (POS)

  To save time, apply STK to these trees:

BOX

is What an offer of

* * * * *

BOX

VBZ WHNP DT NN IN

* * * * *

Page 55: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Word and POS Sequences

  What is an offer of…? (word sequence, WSK)

What_is_offer

What_is

  WHNP VBZ DT NN IN…(POS sequence, POSSK)

WHNP_VBZ_NN

WHNP_NN_IN

Page 56: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Syntactic Parse Trees (PT)

Page 57: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Structure for Partial Tree Kernel (PASPTK)

Page 58: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Structure for Partial Tree Kernel (PASPTK)

Page 59: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Predicate Argument Structure for Partial Tree Kernel (PASPTK)

Page 60: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Common Substructures

Page 61: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Shallow Semantic Trees for SST kernel [Moschitti et al, ACL 2007]

  To generate the substructures with STK we need to add slot nodes (from (a) obtain (b) and (C))

Page 62: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Kernels and Combinations

  Exploiting the property: k(x,z) = k1(x,z)+k2(x,z)

  BOW, POS, WSK, POSSK, PT, PASPTK

⇒ BOW+POS, BOW+PT, PT+POS, …

Page 63: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 64: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 65: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 66: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 67: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 68: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

Page 69: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Results on TREC Data (5 folds cross validation)

20 22 24 26 28 30 32 34 36 38 40

F1-m

easu

re

Kernel Type

BOW ≈ 24 POSSK+STK+PAS-PTK≈ 39 ⇒62 % of improvement

Page 70: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Custom Kernel

  double custom_kernel(KERNEL_PARM

*kernel_parm, DOC *a, DOC *b) {

  int i=0; double k1;

  k1 = tree_kernel(kernel_parm, a, b, i, i);

  return k1;

  }

Page 71: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Conclusions

  Kernel methods and SVMs are useful tools to design language applications

  Kernel design still require some level of expertise   Engineering approaches to tree kernels

  Basic Combinations   Canonical Mappings, e.g.

  Node Marking   Merging of kernels in more complex kernels

  State-of-the-art in SRL and QC   An efficient tool to use them

Page 72: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Thank you

Page 73: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  Alessandro Moschitti, Silvia Quarteroni, Roberto Basili and Suresh Manandhar, Exploiting Syntactic and Shallow Semantic Kernels for Question/Answer Classification, Proceedings of the 45th Conference of the Association for Computational Linguistics (ACL), Prague, June 2007.

  Alessandro Moschitti and Fabio Massimo Zanzotto, Fast and Effective Kernels for Relational Learning from Texts, Proceedings of The 24th Annual International Conference on Machine Learning (ICML 2007), Corvallis, OR, USA.

  Daniele Pighin, Alessandro Moschitti and Roberto Basili, RTV: Tree Kernels for Thematic Role Classification, Proceedings of the 4th International Workshop on Semantic Evaluation (SemEval-4), English Semantic Labeling, Prague, June 2007.

  Stephan Bloehdorn and Alessandro Moschitti, Combined Syntactic and Semanitc Kernels for Text Classification, to appear in the 29th European Conference on Information Retrieval (ECIR), April 2007, Rome, Italy.

  Fabio Aiolli, Giovanni Da San Martino, Alessandro Sperduti, and Alessandro Moschitti, Efficient Kernel-based Learning for Trees, to appear in the IEEE Symposium on Computational Intelligence and Data Mining (CIDM), Honolulu, Hawaii, 2007

Page 74: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

An introductory book on SVMs, Kernel methods and Text Categorization

Page 75: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  Roberto Basili and Alessandro Moschitti, Automatic Text Categorization: from Information Retrieval to Support Vector Learning, Aracne editrice, Rome, Italy.

  Alessandro Moschitti, Efficient Convolution Kernels for Dependency and Constituent Syntactic Trees. In Proceedings of the 17th European Conference on Machine Learning, Berlin, Germany, 2006.

  Alessandro Moschitti, Daniele Pighin, and Roberto Basili, Tree Kernel Engineering for Proposition Re-ranking, In Proceedings of Mining and Learning with Graphs (MLG 2006), Workshop held with ECML/PKDD 2006, Berlin, Germany, 2006.

  Elisa Cilia, Alessandro Moschitti, Sergio Ammendola, and Roberto Basili, Structured Kernels for Automatic Detection of Protein Active Sites. In Proceedings of Mining and Learning with Graphs (MLG 2006), Workshop held with ECML/PKDD 2006, Berlin, Germany, 2006.

Page 76: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  Fabio Massimo Zanzotto and Alessandro Moschitti, Automatic learning of textual entailments with cross-pair similarities. In Proceedings of COLING-ACL, Sydney, Australia, 2006.

  Alessandro Moschitti, Making tree kernels practical for natural language learning. In Proceedings of the Eleventh International Conference on European Association for Computational Linguistics, Trento, Italy, 2006.

  Alessandro Moschitti, Daniele Pighin and Roberto Basili. Semantic Role Labeling via Tree Kernel joint inference. In Proceedings of the 10th Conference on Computational Natural Language Learning, New York, USA, 2006.

  Alessandro Moschitti, Bonaventura Coppola, Daniele Pighin and Roberto Basili, Semantic Tree Kernels to classify Predicate Argument Structures. In Proceedings of the the 17th European Conference on Artificial Intelligence, Riva del Garda, Italy, 2006.

Page 77: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  Alessandro Moschitti and Roberto Basili, A Tree Kernel approach to Question and Answer Classification in Question Answering Systems. In Proceedings of the Conference on Language Resources and Evaluation, Genova, Italy, 2006.

  Ana-Maria Giuglea and Alessandro Moschitti, Semantic Role Labeling via FrameNet, VerbNet and PropBank. In Proceedings of the Joint 21st International Conference on Computational Linguistics and 44th Annual Meeting of the Association for Computational Linguistics (COLING-ACL), Sydney, Australia, 2006.

  Roberto Basili, Marco Cammisa and Alessandro Moschitti, Effective use of wordnet semantics via kernel-based learning. In Proceedings of the 9th Conference on Computational Natural Language Learning (CoNLL 2005), Ann Arbor(MI), USA, 2005

Page 78: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  Alessandro Moschitti, Ana-Maria Giuglea, Bonaventura Coppola and Roberto Basili. Hierarchical Semantic Role Labeling. In Proceedings of the 9th Conference on Computational Natural Language Learning (CoNLL 2005 shared task), Ann Arbor(MI), USA, 2005.

  Roberto Basili, Marco Cammisa and Alessandro Moschitti, A Semantic Kernel to classify texts with very few training examples. In Proceedings of the Workshop on Learning in Web Search, at the 22nd International Conference on Machine Learning (ICML 2005), Bonn, Germany, 2005.

  Alessandro Moschitti, Bonaventura Coppola, Daniele Pighin and Roberto Basili. Engineering of Syntactic Features for Shallow Semantic Parsing. In Proceedings of the ACL05 Workshop on Feature Engineering for Machine Learning in Natural Language Processing, Ann Arbor (MI), USA, 2005.

Page 79: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References   Alessandro Moschitti, A study on Convolution Kernel for Shallow

Semantic Parsing. In proceedings of ACL-2004, Spain, 2004.   Alessandro Moschitti and Cosmin Adrian Bejan, A Semantic Kernel for

Predicate Argument Classification. In proceedings of the CoNLL-2004, Boston, MA, USA, 2004.

  M. Collins and N. Duffy, New ranking algorithms for parsing and tagging: Kernels over discrete structures, and the voted perceptron. In ACL02, 2002.

  S.V.N. Vishwanathan and A.J. Smola. Fast kernels on strings and trees. In Proceedings of Neural Information Processing Systems, 2002.

Page 80: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

References

  AN INTRODUCTION TO SUPPORT VECTOR MACHINES (and other kernel-based learning methods) N. Cristianini and J. Shawe-Taylor Cambridge University Press

  Xavier Carreras and Llu´ıs M`arquez. 2005. Introduction to the CoNLL-2005 Shared Task: Semantic Role Labeling. In proceedings of CoNLL’05.

  Sameer Pradhan, Kadri Hacioglu, Valeri Krugler, Wayne Ward, James H. Martin, and Daniel Jurafsky. 2005. Support vector learning for semantic argument classification. to appear in Machine Learning Journal.

Page 81: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Algorithm

Page 82: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

The Impact of SSTK in Answer Classification

64

64.5

65

65.5

66

66.5

67

67.5

68

68.5

69

1.5 2 2.5 3 3.5 4 4.5 5 5.5 6 6.5 7

j

F1-measure

Q(BOW)+A(BOW)

Q(BOW)+A(PT,BOW)

Q(PT)+A(PT,BOW)

Q(BOW)+A(BOW,PT,PAS)

Q(BOW)+A(BOW,PT,PAS_N)

Q(PT)+A(PT,BOW,PAS)

Q(BOW)+A(BOW,PAS)

Q(BOW)+A(BOW,PAS_N)

Page 83: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Mercer’s conditions (1)

Page 84: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

Mercer’s conditions (2)

  If the Gram matrix:

is positive semi-definite there is a mapping φ that produces the target kernel function

), ji xxkG (=

Page 85: Kernel Engineering Alessandro Moschittidisi.unitn.it/moschitti/ML2009-10/Kernel Engineering.pdf · Question Taxonomy Definition: What does HTML stand for? Description: What's the

The lexical semantic kernel is not always a kernel

  It may not be a kernel so we can use M´·M, where M is the initial similarity matrix