├── INSTALL ├── LICENSE ├── Makefile ├── README ├── Setup.lhs ├── data ├── es │ ├── freeling-dict │ │ ├── dicc-1.2.src │ │ ├── dicc-1.5.src │ │ └── dicc-2.0.src │ ├── model │ │ ├── conf.model │ │ ├── models.model │ │ └── mwe.model │ └── tokpos.zip └── fr │ ├── lexicon.ftb4.4morfette.csv │ ├── model │ ├── conf.model │ ├── models.model │ └── mwe.model │ └── tokpos.zip ├── morfette.cabal └── src ├── GramLab ├── BinarizeFeatures.hs ├── Binomial.hs ├── Commands.hs ├── Data │ ├── Assoc.hs │ ├── CommonSubstrings.hs │ ├── Diff │ │ ├── EditList.hs │ │ ├── EditListBidi.hs │ │ ├── EditListRev.hs │ │ ├── EditTree.hs │ │ ├── EditTree2.hs │ │ ├── EditTree2Rev.hs │ │ ├── FuzzyEditTree.hs │ │ └── Instances.hs │ └── StringLike.hs ├── FeatureSet.hs ├── Intern.hs ├── Morfette │ ├── BeamSearch.hs │ ├── BeamSearchChain.hs │ ├── BinaryInstances.hs │ ├── Config.hs │ ├── Evaluation.hs │ ├── Features │ │ └── Common.hs │ ├── LZipper.hs │ ├── Lang │ │ └── Conf.hs │ ├── MWE.hs │ ├── Main.hs │ ├── Models2.hs │ ├── NFDataIntances.hs │ ├── OldMain.hs │ ├── Settings │ │ └── Defaults.hs │ ├── Stat.hs │ ├── Token.hs │ └── Utils.hs ├── Perceptron │ ├── IntModel.hs │ ├── Model.hs │ ├── Multiclass.hs │ └── Vector.hs ├── ProbDist.hs ├── Statistics.hs └── Utils.hs ├── Lemma.hs ├── Main.hs ├── MorfoInduction.hs ├── POS.hs ├── contrib ├── README ├── convertFTBpos_to_morfette.pl ├── convert_tagset-ftbmax2ftbcc.pl ├── morfette2sent.pl ├── morfette_run_eval.sh ├── morfette_train.sh ├── run_morfette_all.sh └── sent2morfette.pl └── ghc_rts_opts.c /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/README -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/Setup.lhs -------------------------------------------------------------------------------- /data/es/freeling-dict/dicc-1.2.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/freeling-dict/dicc-1.2.src -------------------------------------------------------------------------------- /data/es/freeling-dict/dicc-1.5.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/freeling-dict/dicc-1.5.src -------------------------------------------------------------------------------- /data/es/freeling-dict/dicc-2.0.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/freeling-dict/dicc-2.0.src -------------------------------------------------------------------------------- /data/es/model/conf.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/model/conf.model -------------------------------------------------------------------------------- /data/es/model/models.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/model/models.model -------------------------------------------------------------------------------- /data/es/model/mwe.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/model/mwe.model -------------------------------------------------------------------------------- /data/es/tokpos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/es/tokpos.zip -------------------------------------------------------------------------------- /data/fr/lexicon.ftb4.4morfette.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/fr/lexicon.ftb4.4morfette.csv -------------------------------------------------------------------------------- /data/fr/model/conf.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/fr/model/conf.model -------------------------------------------------------------------------------- /data/fr/model/models.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/fr/model/models.model -------------------------------------------------------------------------------- /data/fr/model/mwe.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/fr/model/mwe.model -------------------------------------------------------------------------------- /data/fr/tokpos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/data/fr/tokpos.zip -------------------------------------------------------------------------------- /morfette.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/morfette.cabal -------------------------------------------------------------------------------- /src/GramLab/BinarizeFeatures.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/BinarizeFeatures.hs -------------------------------------------------------------------------------- /src/GramLab/Binomial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Binomial.hs -------------------------------------------------------------------------------- /src/GramLab/Commands.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Commands.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Assoc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Assoc.hs -------------------------------------------------------------------------------- /src/GramLab/Data/CommonSubstrings.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/CommonSubstrings.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditList.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditListBidi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditListBidi.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditListRev.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditListRev.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditTree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditTree.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditTree2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditTree2.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/EditTree2Rev.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/EditTree2Rev.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/FuzzyEditTree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/FuzzyEditTree.hs -------------------------------------------------------------------------------- /src/GramLab/Data/Diff/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/Diff/Instances.hs -------------------------------------------------------------------------------- /src/GramLab/Data/StringLike.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Data/StringLike.hs -------------------------------------------------------------------------------- /src/GramLab/FeatureSet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/FeatureSet.hs -------------------------------------------------------------------------------- /src/GramLab/Intern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Intern.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/BeamSearch.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/BeamSearch.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/BeamSearchChain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/BeamSearchChain.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/BinaryInstances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/BinaryInstances.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Config.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Evaluation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Evaluation.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Features/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Features/Common.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/LZipper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/LZipper.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Lang/Conf.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Lang/Conf.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/MWE.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/MWE.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Main.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Models2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Models2.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/NFDataIntances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/NFDataIntances.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/OldMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/OldMain.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Settings/Defaults.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Settings/Defaults.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Stat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Stat.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Token.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Token.hs -------------------------------------------------------------------------------- /src/GramLab/Morfette/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Morfette/Utils.hs -------------------------------------------------------------------------------- /src/GramLab/Perceptron/IntModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Perceptron/IntModel.hs -------------------------------------------------------------------------------- /src/GramLab/Perceptron/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Perceptron/Model.hs -------------------------------------------------------------------------------- /src/GramLab/Perceptron/Multiclass.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Perceptron/Multiclass.hs -------------------------------------------------------------------------------- /src/GramLab/Perceptron/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Perceptron/Vector.hs -------------------------------------------------------------------------------- /src/GramLab/ProbDist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/ProbDist.hs -------------------------------------------------------------------------------- /src/GramLab/Statistics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Statistics.hs -------------------------------------------------------------------------------- /src/GramLab/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/GramLab/Utils.hs -------------------------------------------------------------------------------- /src/Lemma.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/Lemma.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/Main.hs -------------------------------------------------------------------------------- /src/MorfoInduction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/MorfoInduction.hs -------------------------------------------------------------------------------- /src/POS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/POS.hs -------------------------------------------------------------------------------- /src/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/README -------------------------------------------------------------------------------- /src/contrib/convertFTBpos_to_morfette.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/convertFTBpos_to_morfette.pl -------------------------------------------------------------------------------- /src/contrib/convert_tagset-ftbmax2ftbcc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/convert_tagset-ftbmax2ftbcc.pl -------------------------------------------------------------------------------- /src/contrib/morfette2sent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/morfette2sent.pl -------------------------------------------------------------------------------- /src/contrib/morfette_run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/morfette_run_eval.sh -------------------------------------------------------------------------------- /src/contrib/morfette_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/morfette_train.sh -------------------------------------------------------------------------------- /src/contrib/run_morfette_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/run_morfette_all.sh -------------------------------------------------------------------------------- /src/contrib/sent2morfette.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchrupala/morfette/HEAD/src/contrib/sent2morfette.pl -------------------------------------------------------------------------------- /src/ghc_rts_opts.c: -------------------------------------------------------------------------------- 1 | char *ghc_rts_opts = "-K100m -H500m"; 2 | --------------------------------------------------------------------------------