├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── src ├── classifier.rs ├── distance.rs ├── lib.rs ├── ngram.rs ├── phonetics.rs ├── tf_idf.rs └── tokenize.rs └── tests ├── classification_tests.rs ├── data ├── output.txt └── voc.txt ├── distance_tests.rs ├── ngram_tests.rs ├── phonetics_tests.rs ├── tf_idf_test.rs └── tokenize_tests.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/README.md -------------------------------------------------------------------------------- /src/classifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/classifier.rs -------------------------------------------------------------------------------- /src/distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/distance.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/ngram.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/ngram.rs -------------------------------------------------------------------------------- /src/phonetics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/phonetics.rs -------------------------------------------------------------------------------- /src/tf_idf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/tf_idf.rs -------------------------------------------------------------------------------- /src/tokenize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/src/tokenize.rs -------------------------------------------------------------------------------- /tests/classification_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/classification_tests.rs -------------------------------------------------------------------------------- /tests/data/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/data/output.txt -------------------------------------------------------------------------------- /tests/data/voc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/data/voc.txt -------------------------------------------------------------------------------- /tests/distance_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/distance_tests.rs -------------------------------------------------------------------------------- /tests/ngram_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/ngram_tests.rs -------------------------------------------------------------------------------- /tests/phonetics_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/phonetics_tests.rs -------------------------------------------------------------------------------- /tests/tf_idf_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/tf_idf_test.rs -------------------------------------------------------------------------------- /tests/tokenize_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexi-sh/rs-natural/HEAD/tests/tokenize_tests.rs --------------------------------------------------------------------------------