JuliaText / TextAnalysis.jl

Julia package for text analysis
Other
374 stars 96 forks source link

Feature : Dependency Parsing #132

Open Ayushk4 opened 5 years ago

Ayushk4 commented 5 years ago

It would be nice to have support for Dependency Parsing in Julia. We can have it as a part of TextModels.jl as per #111.

If we go with Graph Based parser then we get accuracy for more time, however a Greedy one will be faster for little less accuracy. Some possible implementations could be - Deep Biaffine, https://arxiv.org/pdf/1505.08075v1.pdf

dellison commented 5 years ago

For what it's worth, I've recently registered DependencyTrees.jl. So far I've only implemented greedy transition-based parsing algorithms, but I'm hoping to add support for graph-based methods soon. Maybe that could be helpful.

dellison commented 5 years ago

Also- please feel free to open an issue over on DependencyTrees.jl if you have a feature request or a usage question or anything else like that! Anything that could help me improve it would be very welcome :)