sfu-natlang / glm-parser

Tree-adjoining grammar based statistical dependency parser using a general linear model (glm).
Other
28 stars 2 forks source link

provide hooks for alternative weight update procedures #8

Closed anoopsarkar closed 8 years ago

anoopsarkar commented 10 years ago

for instance we should have hooks for the following improvements to the perceptron:

anoopsarkar commented 10 years ago

For the pseudo-code of averaged perceptron, read:

yulanh commented 10 years ago

Implemented average perceptron.

TODO: Speed up by hashing the features and using sparse matrix in scipy

anoopsarkar commented 10 years ago

Let us implement MIRA next. This update procedure is explained in Ryan McDonald's thesis.

anoopsarkar commented 8 years ago

closing this and adding a new issue for MIRA implementation.