cld3 0.1.1

Rust binding for Compact Language Detector v3 (CLD3), a neural network model for language identification. the C++ code is from https://github.com/google/cld3
1
2
3
4
5
6
7
8
9
10
11
12
13
test:
	cargo test -- --nocapture

test/ok: test/hello test/find_language

test/hello:
	cargo test --color=always --package cld3 --lib tests::implicit_constructor -- --exact

test/find_language:
	cargo test --color=always --package cld3 --lib tests::find_language -- --exact

test/find_topn_most_freq_langs:
	cargo test --color=always --package cld3 --lib tests::find_topn_most_freq_langs -- --exact