Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library...

73
Hal Daumé III | University of Maryland | [email protected] | @haldaume3 Stuff I did in the Spring while not Replying to Email (aka “advances in structured prediction”)

Transcript of Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library...

Page 1: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Hal Daumé III | University of Maryland | [email protected] | @haldaume3

Stuff I did in the Spring while not

Replying to Email(aka “advances in structured prediction”)

Page 2: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Examples of

The monster ate a big sandwich

structured predictionjoint

Page 3: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Sequence labeling

The monster ate a big sandwich

x = the monster ate the sandwichy = Dt Nn Vb Dt Nn

x = Yesterday I traveled to Lilley = - PER - - LOC

image credit: Richard Padgett

Page 4: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

OUTPUT

INPUTNLP algorithms use a kitchen sink of features

n-mod

object

subject n-mod

n-mod

p-mod n-mod

[root]

Natural language parsing

Page 5: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

image credit: Ben Taskar; Liz Jurrus

(Bipartite) matching

Page 6: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Machine translation

Page 7: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

image credit: Daniel Muñoz

Segmentation

Page 8: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Protein secondary structure prediction

Page 9: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS9 Hal Daumé III ([email protected])

Outline➢ Background: learning to search

➢ Stuff I did in the Spring➢ Imperative DSL/library for learning to search➢ SOTA examples for tagging, parsing, relation extraction, etc.➢ Learning to search under bandit feedback➢ Hardness results for learning to search➢ Active learning for accelerating learning to search

➢ Stuff I'm trying to do now➢ Distant supervision➢ Mashups with recurrent neural networks

Isn't thiskinda narrow?

Page 10: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS10 Hal Daumé III ([email protected])

My experience, 6 months in industry➢ Standard adage: academia=freedom, industry=time

➢ Number of responsibilities vs number of bosses

➢ Aspects I didn't anticipate➢ Breadth (academia) versus depth (industry)➢ Collaborating through students versus directly➢ Security through tenure versus security through $

➢ At the end of the day: who are your colleagues and what do you have to do to pay the piper?

Major caveat: this is comparing a top ranked CS dept to top industry lab, in a time when there's tons of money in this area (more in industry)

Page 11: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Joint prediction via learning to searchPart of Speech Tagging

Dependency Parsing

NLP algorithms use a kitchen sink of features

*ROOT*

NLP algorithms use a kitchen sink of featuresNN NNS VBP DT NN NN IN NNS

Page 12: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

NLP

algorithmsuse a

kitchen

sink

offeatures

*ROOT*

Joint Prediction Haiku

A joint predictionAcross a single inputLoss measured jointly

Joint Prediction Haiku

A joint predictionAcross a single inputLoss measured jointly

Joint prediction via learning to search

Page 13: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Back to the original problem...● How to optimize a discrete, joint loss?

● Input: x X● Truth: y Y(x)● Outputs: Y(x)● Predicted: ŷ Y(x)● Loss: loss(y, ŷ)● Data: (x,y) ~ D

I can can a can

Pro Md Vb Dt Nn

Pro Md Vb Dt Vb

Pro Md Vb Dt Md

Pro Md Nn Dt Nn

Pro Md Nn Dt Vb

Pro Md Nn Dt Md

Pro Md Md Dt Nn

Pro Md Md Dt Vb

Page 14: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Back to the original problem...● How to optimize a discrete, joint loss?

● Input: x X● Truth: y Y(x)● Outputs: Y(x)● Predicted: ŷ Y(x)● Loss: loss(y, ŷ)● Data: (x,y) ~ D

Goal:find h H

such that h(x) Y(x)minimizing

E(x,y)~D [ loss(y, h(x)) ]based on N samples

(xn, yn) ~ D

Page 15: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Search spaces● When y decomposes in an ordered manner,

a sequential decision making process emergesI

Pro Md Vb Dt Nn

can

Pro Md Vb Dt Nn

can

Pro Md Vb Dt Nn

decision

actiondecision

actiondecision

action

Page 16: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Search spaces● When y decomposes in an ordered manner,

a sequential decision making process emerges

a

Pro Md Vb Dt Nn

can

Pro Md Vb Dt Nn

e end

Encodes an outputŷ = ŷ(e)

from whichloss(y, ŷ)

can be computed(at training time)

Page 17: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Policies● A policy maps observations to actions

( )=aobs.

input: xtimestep: tpartial traj: τ… anything else

Page 18: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Jump in {0,1}Right in {0,1}Left in {0,1}Speed in {0,1}

Extracted 27K+ binary featuresfrom last 4 observations(14 binary features for every cell)

Output:Input:

From Mario AI competition 2009

An analogy from playing Mario

High level goal:Watch an expert play and

learn to mimic her behavior

Page 19: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Training (expert)Video credit: Stéphane Ross, Geoff Gordon and Drew Bagnell

Page 20: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Warm-up: Supervised learning

ππrefref

1.Collect trajectories from expert πref

2.Store as dataset D = { ( o, πref(o,y) ) | o ~ πref }3.Train classifier π on D

● Let π play the game!

Page 21: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Test-time execution (sup. learning)Video credit: Stéphane Ross, Geoff Gordon and Drew Bagnell

Page 22: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

What's the (biggest) failure mode?

ππrefref

The expert never gets stuck next to pipes Classifier doesn't learn to recover!

Page 23: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Warm-up II: Imitation learning

ππrefref

1. Collect trajectories from expert πref

2. Dataset D0 = { ( o, πref(o,y) ) | o ~ πref }

3. Train π1 on D0

4. Collect new trajectories from π1

➢ But let the expert steer!5. Dataset D1 = { ( o, πref(o,y) ) | o ~ π1 }

6. Train π2 on D0 ∪ D1

● In general:● Dn = { ( o, πref(o,y) ) | o ~ πn }● Train πn+1 on ∪i≤n Di

ππ11

ππ22

If N = T log T,

L(πn) < T N + O(1)

for some n

Page 24: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Test-time execution (DAgger)Video credit: Stéphane Ross, Geoff Gordon and Drew Bagnell

Page 25: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

What's the biggest failure mode?Classifier only sees right versus not-right● No notion of better or worse● No partial credit● Must have a single target answer

ππ**

ππ11

ππ22

Page 26: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Learning to search: AggraVaTe1.Let learned policy π drive for t timesteps to obs. o2.For each possible action a:

● Take action a, and let expert πref drive the rest● Record the overall loss, ca

3.Update π based on example: (o, ⟨c1, c2,..., cK⟩)

4.Goto (1)

ππ

00.4

100

Page 27: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Training time versus test accuracy

Page 28: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Training time versus test accuracy

Page 29: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

Test time speed

Page 30: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

State of the art accuracy in....● Part of speech tagging (1 million words)

● wc: 3.2 seconds● US: 6 lines of code 10 seconds to train● CRFsgd: 1068 lines 30 minutes● CRF++: 777 lines hours

● Named entity recognition (200 thousand words)● wc: 0.8 seconds● US: 30 lines of code 5 seconds to train● CRFsgd: 1 minute● CRF++: 10 minutes● SVMstr: 876 lines 30 minutes (suboptimal accuracy)

Page 31: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

The Magic● You write some greedy “test-time” code

● In your favorite imperative language (C++/Python)● It makes arbitrary calls to a Predict function● And you add some minor decoration

● We will automatically:● Perform learning● Generate non-determinstic (beam) search● Run faster than specialized learning software

Page 32: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

How to train?

1.Generate an initial trajectoryusing a rollin policy

2.Foreach state R on that trajectory:a)Foreach possible action a (one-step deviations)

i. Take that actionii. Complete this trajectory using a rollout policyiii.Obtain a final loss

b)Generate a cost-sensitive classification example:( Φ(R), caaA )

S R E

E

E

rollin

rollout

one-step

deviations

loss=.2

loss=0

loss=.8

Page 33: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

The magic in practicerun(vector<example> ec) for i = 0 .. ec.size y_true = get_example_label(ec[i]) y_pred = Predict(ec[i], y_true) Loss( # of y_true != y_pred )

How bad was the entiresequence of predictions

(at training time)

void run(search& sch, vector<example*> ec) { for (size_t i=0; i<ec.size(); i++) { uint32_t y_true = get_example_label(ec[i]); uint32_t y_pred = sch.predict(ec[i], y_true);

sch.loss( y_true != y_pred );

if (sch.output().good()) sch.output() << y_pred << ' '; }}

I'm reallynot hidinganything...

A “hint” about thecorrect decision only at training time

Page 34: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

The illusion of control● Execute run O(TxA) times, modifying Predict● For each time step myT = 1 .. T:

For each possible action myA = 1 .. A:

define Predict(...) =

run your code in fullset costa = result of Loss

Make classification example on xmyT with <costa>

myA if t = myT

π otherwise

run(vector<example> ec) for i = 0 .. ec.size y_true = get_example_label(ec[i]) y_pred = Predict(ec[i], y_true) Loss( # of y_true != y_pred )

Page 35: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS35 Hal Daumé III ([email protected])

Entity/relation identification

Page 36: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS36 Hal Daumé III ([email protected])

Dependency parsing

Page 37: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS37 Hal Daumé III ([email protected])

Outline➢ Background: learning to search

➢ Stuff I did in the Spring➢ Imperative DSL/library for learning to search➢ SOTA examples for tagging, parsing, relation extraction, etc.➢ Learning to search under bandit feedback➢ Hardness results for learning to search➢ Active learning for accelerating learning to search

➢ Stuff I'm trying to do now➢ Distant supervision➢ Mashups with recurrent neural networks

Page 38: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS38 Hal Daumé III ([email protected])

Page 39: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS39 Hal Daumé III ([email protected])

Page 40: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS40 Hal Daumé III ([email protected])

Page 41: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS41 Hal Daumé III ([email protected])

Page 42: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS42 Hal Daumé III ([email protected])

Page 43: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS43 Hal Daumé III ([email protected])

Page 44: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS44 Hal Daumé III ([email protected])

Page 45: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS45 Hal Daumé III ([email protected])

Page 46: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS46 Hal Daumé III ([email protected])

Page 47: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS47 Hal Daumé III ([email protected])

Page 48: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS48 Hal Daumé III ([email protected])

Page 49: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS49 Hal Daumé III ([email protected])

Page 50: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS50 Hal Daumé III ([email protected])

Page 51: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS51 Hal Daumé III ([email protected])

Page 52: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS52 Hal Daumé III ([email protected])

Page 53: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS53 Hal Daumé III ([email protected])

Page 54: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS54 Hal Daumé III ([email protected])

Page 55: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS55 Hal Daumé III ([email protected])

Page 56: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS56 Hal Daumé III ([email protected])

Page 57: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS57 Hal Daumé III ([email protected])

Page 58: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS58 Hal Daumé III ([email protected])

Page 59: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS59 Hal Daumé III ([email protected])

Page 60: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS60 Hal Daumé III ([email protected])

Page 61: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS61 Hal Daumé III ([email protected])

Page 62: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS62 Hal Daumé III ([email protected])

Page 63: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS63 Hal Daumé III ([email protected])

Page 64: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS64 Hal Daumé III ([email protected])

Page 65: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS65 Hal Daumé III ([email protected])

Page 66: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS66 Hal Daumé III ([email protected])

Page 67: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS67 Hal Daumé III ([email protected])

Page 68: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS68 Hal Daumé III ([email protected])

Page 69: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS69 Hal Daumé III ([email protected])

Page 70: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS70 Hal Daumé III ([email protected])

Outline➢ Background: learning to search

➢ Stuff I did in the Spring➢ Imperative DSL/library for learning to search➢ SOTA examples for tagging, parsing, relation extraction, etc.➢ Learning to search under bandit feedback➢ Hardness results for learning to search➢ Active learning for accelerating learning to search

➢ Stuff I'm trying to do now➢ Distant supervision➢ Mashups with recurrent neural networks

Observation: rollouts at alltime steps not equally useful

Solution: importance-weightedactive learning selection ofwhere to rollout vs skip

Hacky heuristic: 5* speedup,slightly increased accuracy

Training RNNs with LOLSyields drastic increases in

performance on non-adversarial synthetic data

Page 71: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

LOLS71 Hal Daumé III ([email protected])

Distant supervision➢ Learning with a human in the loop

➢ Repeat forever:➢ Information need➢ Machine makes complex prediction➢ Human is happy or unhappy, provides extra feedback➢ Machine learns➢ Human learns

➢ How to handle the last step?

Page 72: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

AlekhAgarwal

Kai-WeiChang

AkshayKrishnamurthy

JohnLangford

AlinaBeygelzimmer

PaulMineiro

StéphaneRoss

HeHe

Page 73: Stuff I did in the Spring while not Replying to Email · 2015. 12. 4. · Imperative DSL/library for learning to search SOTA examples for tagging, parsing, relation extraction, etc.

● Novel programming paradigm for integrating ML into software

● State of the art results on many tasks, very quickly, little code

● New problems, new algorithms● Positive results (notion of local

optimality, and regret guarantees)● Negative results (hardness of exact

local optimality)● Lots of places to go from here...

Thanks! Questions?