issues
search
diprism
/
fggs
Factor Graph Grammars in Python
MIT License
13
stars
3
forks
source link
Adds a directory examples/pcfg with a more substantial example
#49
Closed
davidweichiang
closed
3 years ago
davidweichiang
commented
3 years ago
pcfg.json is a FGG simulating a PCFG (Example 19 from the FGG paper), with a very simple PCFG
atis.pcfg is a PCFG extracted from the ATIS portion of the PTB with some simple binarization applied (same as used in the NLP class, HW3)
make_pcfg.py takes a PCFG (*.pcfg) and uses pcfg.json to make a new FGG for the PCFG
atis.json is the output of make_pcfg.py atis.pcfg atis.json
davidweichiang
commented
3 years ago
It's not the most beautiful Makefile though.