vacancy / SceneGraphParser

A python toolkit for parsing captions (in natural language) into scene graphs (as symbolic representations).
MIT License
539 stars 54 forks source link

Comparison to Stanford Scene Graph Parser #7

Open berthyf96 opened 5 years ago

berthyf96 commented 5 years ago

Thanks for the great implementation. Does this function the exact same way as the Stanford Scene Graph Parser? If not, how is it different from the Stanford parser?

vacancy commented 5 years ago

No. They are not identical. This repo tries to replicate only part of the results of the rule-based scene graph parser by Schuster et al, with a focus on the empirical performance.

It DOES cover all rules implemented in the Stanford Parser, with minor heuristic optimizations and extra rules for handling

However, it does NOT cover some features of the Stanford Parser, including:

berthyf96 commented 5 years ago

Thanks for the quick and detailed response!