├── .gitignore ├── LICENCE.TXT ├── README.md ├── bin └── .gitkeep ├── cg ├── bm_morf-prestat.cg ├── bm_morf.cg └── nn_morf.cg ├── gpl.txt ├── tag-bm.sh ├── tag-nostat-bm.sh └── tag-nostat-nn.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/mtag 2 | -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cg/bm_morf-prestat.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/cg/bm_morf-prestat.cg -------------------------------------------------------------------------------- /cg/bm_morf.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/cg/bm_morf.cg -------------------------------------------------------------------------------- /cg/nn_morf.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/cg/nn_morf.cg -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/gpl.txt -------------------------------------------------------------------------------- /tag-bm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/tag-bm.sh -------------------------------------------------------------------------------- /tag-nostat-bm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/tag-nostat-bm.sh -------------------------------------------------------------------------------- /tag-nostat-nn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noklesta/The-Oslo-Bergen-Tagger/HEAD/tag-nostat-nn.sh --------------------------------------------------------------------------------