├── .gitignore ├── README.md ├── benchmark-testing ├── analyze.ts ├── constants.js ├── data │ └── .gitkeep ├── download-test-data.js ├── helpers.js ├── package-lock.json ├── package.json └── results │ ├── COMPARISONS.md │ ├── RESULTS.md │ ├── RESULTS_with_metadata.csv │ ├── benchmark_results_0.2.1.json │ ├── benchmark_results_0.2.1_data.json │ ├── benchmark_results_0.2.2.json │ ├── benchmark_results_0.2.2_data.json │ ├── benchmark_results_0.2.3.json │ ├── benchmark_results_0.2.3_data.json │ ├── reliability_list_0.2.2.json │ └── reliability_list_0.2.3.json ├── model └── .gitkeep ├── package.json ├── rollup.config.js ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/README.md -------------------------------------------------------------------------------- /benchmark-testing/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/analyze.ts -------------------------------------------------------------------------------- /benchmark-testing/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/constants.js -------------------------------------------------------------------------------- /benchmark-testing/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark-testing/download-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/download-test-data.js -------------------------------------------------------------------------------- /benchmark-testing/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/helpers.js -------------------------------------------------------------------------------- /benchmark-testing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/package-lock.json -------------------------------------------------------------------------------- /benchmark-testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/package.json -------------------------------------------------------------------------------- /benchmark-testing/results/COMPARISONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/COMPARISONS.md -------------------------------------------------------------------------------- /benchmark-testing/results/RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/RESULTS.md -------------------------------------------------------------------------------- /benchmark-testing/results/RESULTS_with_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/RESULTS_with_metadata.csv -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.1.json -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.1_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.1_data.json -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.2.json -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.2_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.2_data.json -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.3.json -------------------------------------------------------------------------------- /benchmark-testing/results/benchmark_results_0.2.3_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/benchmark_results_0.2.3_data.json -------------------------------------------------------------------------------- /benchmark-testing/results/reliability_list_0.2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/reliability_list_0.2.2.json -------------------------------------------------------------------------------- /benchmark-testing/results/reliability_list_0.2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/benchmark-testing/results/reliability_list_0.2.3.json -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | place holder for location of fast-text model -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smodin-io/fast-text-language-detection/HEAD/tsconfig.json --------------------------------------------------------------------------------