-
Notifications
You must be signed in to change notification settings - Fork 208
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
Question about CRF model #87
Comments
If you can extract a "sequence" from your image, and expect sequence labels + one global label, I suggest you to look at TriCRF instead. The implemented model by TriCRF is:
The sequence labels as well as the global image label must be discrete. |
Thanks for your response. Looks the h nodes in TriCRF are in a chain, Can I use a full connected ? |
@TompsonL In principle yes, in practice inference in such graphs would be ahem difficult. Even this triangular chain CRF is fairly expensive (the way it is implemented). Unfortunately I am not familiar well enough with graphical models to suggest or make bigger claims. |
@TompsonL I would try out a neural architecture - sequence model as for NER for "h" and classification on top of that for "y". |
Thanks for your effort.
…On Wed, Aug 2, 2017 at 1:08 PM, Vladislavs Dovgalecs < ***@***.***> wrote:
@TompsonL <https://github.com/tompsonl> I would try out a neural
architecture - sequence model as for NER for "h" and classification on top
of that for "y".
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#87 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AdJ8GJ_yLMltBGAELEObwCAzThRRNDKOks5sUARSgaJpZM4Ono8S>
.
|
Hi ,
Can I use the crfsuite to implement the model in the attached image? Thanks a lot.
The text was updated successfully, but these errors were encountered: