├── .gitignore ├── AveragedPerceptron.py ├── LICENSE ├── PerceptronTagger.py ├── README.md └── data ├── test.txt └── train.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/.gitignore -------------------------------------------------------------------------------- /AveragedPerceptron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/AveragedPerceptron.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/LICENSE -------------------------------------------------------------------------------- /PerceptronTagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/PerceptronTagger.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/README.md -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/data/test.txt -------------------------------------------------------------------------------- /data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hankcs/AveragedPerceptronPython/HEAD/data/train.txt --------------------------------------------------------------------------------