├── LICENSE ├── benchmark.py ├── benchmark.pyc ├── dictionary.py ├── pipeline_generate.py ├── pipeline_generate_without_repeat.py ├── resources ├── affix.txt ├── ncbi-spell-check.txt ├── ncbi-wiki-abbreviations.txt ├── number.txt ├── prefix.txt ├── semeval-spell-check.txt ├── semeval-wiki-abbreviations.txt ├── stopwords.txt └── suffix.txt ├── src ├── alphabet.py ├── conv1d.py ├── embeddings │ └── vec_50.bin ├── extract_embeddings.py ├── nn_layers.py ├── parse.py ├── parse_with_sys.py ├── run_build_datasets.sh ├── run_eval.sh ├── run_nnet.py ├── sgd_trainer.py └── utils.py └── terminology.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/LICENSE -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/benchmark.py -------------------------------------------------------------------------------- /benchmark.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/benchmark.pyc -------------------------------------------------------------------------------- /dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/dictionary.py -------------------------------------------------------------------------------- /pipeline_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/pipeline_generate.py -------------------------------------------------------------------------------- /pipeline_generate_without_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/pipeline_generate_without_repeat.py -------------------------------------------------------------------------------- /resources/affix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/affix.txt -------------------------------------------------------------------------------- /resources/ncbi-spell-check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/ncbi-spell-check.txt -------------------------------------------------------------------------------- /resources/ncbi-wiki-abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/ncbi-wiki-abbreviations.txt -------------------------------------------------------------------------------- /resources/number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/number.txt -------------------------------------------------------------------------------- /resources/prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/prefix.txt -------------------------------------------------------------------------------- /resources/semeval-spell-check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/semeval-spell-check.txt -------------------------------------------------------------------------------- /resources/semeval-wiki-abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/semeval-wiki-abbreviations.txt -------------------------------------------------------------------------------- /resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/stopwords.txt -------------------------------------------------------------------------------- /resources/suffix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/resources/suffix.txt -------------------------------------------------------------------------------- /src/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/alphabet.py -------------------------------------------------------------------------------- /src/conv1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/conv1d.py -------------------------------------------------------------------------------- /src/embeddings/vec_50.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/embeddings/vec_50.bin -------------------------------------------------------------------------------- /src/extract_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/extract_embeddings.py -------------------------------------------------------------------------------- /src/nn_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/nn_layers.py -------------------------------------------------------------------------------- /src/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/parse.py -------------------------------------------------------------------------------- /src/parse_with_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/parse_with_sys.py -------------------------------------------------------------------------------- /src/run_build_datasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/run_build_datasets.sh -------------------------------------------------------------------------------- /src/run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/run_eval.sh -------------------------------------------------------------------------------- /src/run_nnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/run_nnet.py -------------------------------------------------------------------------------- /src/sgd_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/sgd_trainer.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/src/utils.py -------------------------------------------------------------------------------- /terminology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wglassly/cnnormaliztion/HEAD/terminology.py --------------------------------------------------------------------------------