-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linear Chain CRF with SGD method #11
base: master
Are you sure you want to change the base?
Conversation
Sweet! As for the time, have you tried profiling with I suspect calling |
I have not tried it yet. Will do this next week. |
Training is about 5% faster.
Just profiling
|
Saved some time on computing w_update, new profiling result on w_update:
|
Hi,
I tried to implement linear chain CRF with SGD method based on these two paper:
For performance, I tested it on CoNLL 2000 shared task and got:
I think the biggest problem in my implementation is the training time. I will try to work on parallel training or improve the cython code.
Maybe you can review it and give me some feedback.
Any suggestions are welcomed.
Thanks!