Commit 16d19f7
File tree
5 files changed
+11
-5
lines changed- src/main
- cpp
- java/com/github/jfasttext
5 files changed
+11
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
- .circleci/config.yml+27-27
- CMakeLists.txt+8-2
- CODE_OF_CONDUCT.md+77
- Makefile+16-7
- README.md+4-4
- alignment/README.md+43-4
- alignment/align.py+1
- alignment/example.sh+6-6
- alignment/unsup_align.py+109
- alignment/unsup_multialign.py+198
- crawl/README.md+26
- crawl/dedup.cc+51
- crawl/download_crawl.sh+57
- crawl/filter_dedup.sh+13
- crawl/filter_utf8.cc+105
- crawl/process_wet_file.sh+30
- docs/aligned-vectors.md+11-11
- docs/autotune.md+138
- docs/cheatsheet.md+23
- docs/crawl-vectors.md+54-54
- docs/english-vectors.md+4-4
- docs/faqs.md+7-2
- docs/language-identification.md+2-2
- docs/options.md+15-5
- docs/pretrained-vectors.md+98-98
- docs/python-module.md+314
- docs/supervised-models.md+4-4
- docs/supervised-tutorial.md+337-29
- docs/support.md+23-1
- docs/unsupervised-tutorials.md+188-18
- pretrained-vectors.md-134
- python/README.md+265-38
- python/README.rst+327-53
- python/benchmarks/get_word_vector.py+2-2
- python/doc/examples/FastTextEmbeddingBag.py+1-1
- python/doc/examples/bin_to_vec.py+1-1
- python/doc/examples/compute_accuracy.py+2-2
- python/doc/examples/get_vocab.py+1-1
- python/doc/examples/train_supervised.py+1-1
- python/doc/examples/train_unsupervised.py+1-1
- python/fasttext_module/fasttext/FastText.py+167-75
- python/fasttext_module/fasttext/__init__.py+4
- python/fasttext_module/fasttext/pybind/fasttext_pybind.cc+140-47
- python/fasttext_module/fasttext/tests/__init__.py
- python/fasttext_module/fasttext/tests/test_configurations.py+1-1
- python/fasttext_module/fasttext/tests/test_script.py+15-15
- python/fasttext_module/fasttext/util/__init__.py
- python/fasttext_module/fasttext/util/util.py
- runtests.py+2-2
- setup.py+18-14
- src/args.cc+123-2
- src/args.h+21-1
- src/autotune.cc+458
- src/autotune.h+90
- src/densematrix.cc+167
- src/densematrix.h+82
- src/fasttext.cc+195-201
- src/fasttext.h+30-67
- src/loss.cc+358
- src/loss.h+163
- src/main.cc+19-6
- src/matrix.cc+7-115
- src/matrix.h+12-46
- src/meter.cc+14-1
- src/meter.h+13-3
- src/model.cc+37-373
- src/model.h+39-93
- src/productquantizer.cc+1-1
- src/productquantizer.h+1-1
- src/qmatrix.h-59
- src/quantmatrix.cc+37-32
- src/quantmatrix.h+60
- src/utils.cc+21
- src/utils.h+19
- src/vector.cc+4-30
- src/vector.h+4-7
- tests/fetch_test_data.sh+1-1
- website/blog/2019-06-25-blog-post.md+168
- website/core/Footer.js+5-4
- website/sidebars.json+2-2
- website/siteConfig.js+5-2
- website/static/tabber.js+42
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
| 7 | + | |
6 | 8 | | |
| 9 | + | |
7 | 10 | | |
8 | 11 | | |
9 | | - | |
| 12 | + | |
10 | 13 | | |
11 | 14 | | |
12 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
333 | 333 | | |
334 | 334 | | |
335 | 335 | | |
| 336 | + | |
336 | 337 | | |
337 | 338 | | |
| 339 | + | |
338 | 340 | | |
| 341 | + | |
339 | 342 | | |
340 | 343 | | |
341 | | - | |
| 344 | + | |
342 | 345 | | |
343 | 346 | | |
344 | 347 | | |
| |||
0 commit comments