├── .project ├── .pydevproject ├── EMNLP2015figment.pdf ├── LICENSE.txt ├── README.md ├── figment.gif ├── gm.sh └── src ├── algorithms.py ├── big2smallmatrix.py ├── config ├── layers.py ├── matrix2measures-headtail-ents.py ├── matrix2measures-headtail-types.py ├── myutils.py ├── test_cm.py ├── test_gm.py ├── train_cm.py └── train_gm.py /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/.pydevproject -------------------------------------------------------------------------------- /EMNLP2015figment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/EMNLP2015figment.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/README.md -------------------------------------------------------------------------------- /figment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/figment.gif -------------------------------------------------------------------------------- /gm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/gm.sh -------------------------------------------------------------------------------- /src/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/algorithms.py -------------------------------------------------------------------------------- /src/big2smallmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/big2smallmatrix.py -------------------------------------------------------------------------------- /src/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/config -------------------------------------------------------------------------------- /src/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/layers.py -------------------------------------------------------------------------------- /src/matrix2measures-headtail-ents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/matrix2measures-headtail-ents.py -------------------------------------------------------------------------------- /src/matrix2measures-headtail-types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/matrix2measures-headtail-types.py -------------------------------------------------------------------------------- /src/myutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/myutils.py -------------------------------------------------------------------------------- /src/test_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/test_cm.py -------------------------------------------------------------------------------- /src/test_gm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/test_gm.py -------------------------------------------------------------------------------- /src/train_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/train_cm.py -------------------------------------------------------------------------------- /src/train_gm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyaghoobzadeh/figment/HEAD/src/train_gm.py --------------------------------------------------------------------------------