Difference between revisions of "Hypergraph Format"

From ACL Wiki
Jump to navigation Jump to search
Line 9: Line 9:
  
 
Con:  
 
Con:  
* Space inefficiency
+
* Space inefficient
 
* Requires custom parser for speed
 
* Requires custom parser for speed
  
Line 22: Line 22:
 
* Very fast to read (particularly in C++ and Java, hopefully soon in python)
 
* Very fast to read (particularly in C++ and Java, hopefully soon in python)
 
* Very space efficient
 
* Very space efficient
* Implementations in Java, C++ and Python
+
* Implementations in Java, C++ and Python; generates typed stubs in those languages
* Automatically generates typed stubs  
 
  
 
Con:
 
Con:

Revision as of 11:18, 8 November 2010

JSON

JSON Description

Pro:

  • Implementations in every language (often packaged with language).
  • Human readable
  • Already used in CDec for forest output

Con:

  • Space inefficient
  • Requires custom parser for speed

Protocol Buffers

Protocol Buffer Description

Implementation Sketch

Pro:

  • Conversion to and from JSON (protobuf-json)
  • Very fast to read (particularly in C++ and Java, hopefully soon in python)
  • Very space efficient
  • Implementations in Java, C++ and Python; generates typed stubs in those languages

Con:

  • No implementations for Perl, C#, or other languages commonly used by NLP folks
  • Requires a separate library; adds an external dependency to spec
  • "It's really easy to get up to some of the data size limits that are in place to prevent malicious data from having the PB parser allocate too much memory". Some of the limits are described in the section describing SetTotalBytesLimit on this page.
  • "You typically have to create a full hypergraph protocol buffer object before you can serialize it, so you either have to use the PB data structures internally in your code or you have to copy your data structure. While doing this copy, you can end up with two copies of the forest in memory, which is bad for memory usage."

Variation of SLF (Standard Lattice Format)

SLF Specification

Pro:

  • Blindingly fast.
  • Could be implemented to work lazy/streaming.

Con:

  • Requires a custom format
  • Probably need specialized language bindings.

Tiburon Format

Tiburon Specification