fasttext 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +251 -0
- data/ext/fasttext/ext.cpp +291 -0
- data/ext/fasttext/extconf.rb +15 -0
- data/lib/fasttext.rb +41 -0
- data/lib/fasttext/classifier.rb +92 -0
- data/lib/fasttext/ext.bundle +0 -0
- data/lib/fasttext/model.rb +60 -0
- data/lib/fasttext/vectorizer.rb +58 -0
- data/lib/fasttext/version.rb +3 -0
- data/vendor/fastText/CMakeLists.txt +68 -0
- data/vendor/fastText/CODE_OF_CONDUCT.md +2 -0
- data/vendor/fastText/CONTRIBUTING.md +32 -0
- data/vendor/fastText/LICENSE +21 -0
- data/vendor/fastText/MANIFEST.in +5 -0
- data/vendor/fastText/Makefile +63 -0
- data/vendor/fastText/README.md +339 -0
- data/vendor/fastText/alignment/README.md +53 -0
- data/vendor/fastText/alignment/align.py +145 -0
- data/vendor/fastText/alignment/eval.py +60 -0
- data/vendor/fastText/alignment/example.sh +51 -0
- data/vendor/fastText/alignment/unsup_align.py +109 -0
- data/vendor/fastText/alignment/utils.py +154 -0
- data/vendor/fastText/classification-example.sh +41 -0
- data/vendor/fastText/classification-results.sh +94 -0
- data/vendor/fastText/crawl/README.md +26 -0
- data/vendor/fastText/crawl/dedup.cc +51 -0
- data/vendor/fastText/crawl/download_crawl.sh +57 -0
- data/vendor/fastText/crawl/filter_dedup.sh +13 -0
- data/vendor/fastText/crawl/filter_utf8.cc +105 -0
- data/vendor/fastText/crawl/process_wet_file.sh +30 -0
- data/vendor/fastText/docs/aligned-vectors.md +64 -0
- data/vendor/fastText/docs/api.md +6 -0
- data/vendor/fastText/docs/cheatsheet.md +66 -0
- data/vendor/fastText/docs/crawl-vectors.md +125 -0
- data/vendor/fastText/docs/dataset.md +6 -0
- data/vendor/fastText/docs/english-vectors.md +53 -0
- data/vendor/fastText/docs/faqs.md +63 -0
- data/vendor/fastText/docs/language-identification.md +47 -0
- data/vendor/fastText/docs/options.md +50 -0
- data/vendor/fastText/docs/pretrained-vectors.md +142 -0
- data/vendor/fastText/docs/python-module.md +314 -0
- data/vendor/fastText/docs/references.md +41 -0
- data/vendor/fastText/docs/supervised-models.md +54 -0
- data/vendor/fastText/docs/supervised-tutorial.md +349 -0
- data/vendor/fastText/docs/support.md +58 -0
- data/vendor/fastText/docs/unsupervised-tutorials.md +309 -0
- data/vendor/fastText/eval.py +95 -0
- data/vendor/fastText/get-wikimedia.sh +79 -0
- data/vendor/fastText/python/README.md +322 -0
- data/vendor/fastText/python/README.rst +406 -0
- data/vendor/fastText/python/benchmarks/README.rst +3 -0
- data/vendor/fastText/python/benchmarks/get_word_vector.py +49 -0
- data/vendor/fastText/python/doc/examples/FastTextEmbeddingBag.py +81 -0
- data/vendor/fastText/python/doc/examples/bin_to_vec.py +41 -0
- data/vendor/fastText/python/doc/examples/compute_accuracy.py +163 -0
- data/vendor/fastText/python/doc/examples/get_vocab.py +48 -0
- data/vendor/fastText/python/doc/examples/train_supervised.py +42 -0
- data/vendor/fastText/python/doc/examples/train_unsupervised.py +56 -0
- data/vendor/fastText/python/fasttext_module/fasttext/FastText.py +468 -0
- data/vendor/fastText/python/fasttext_module/fasttext/__init__.py +22 -0
- data/vendor/fastText/python/fasttext_module/fasttext/pybind/fasttext_pybind.cc +388 -0
- data/vendor/fastText/python/fasttext_module/fasttext/tests/__init__.py +14 -0
- data/vendor/fastText/python/fasttext_module/fasttext/tests/test_configurations.py +239 -0
- data/vendor/fastText/python/fasttext_module/fasttext/tests/test_script.py +629 -0
- data/vendor/fastText/python/fasttext_module/fasttext/util/__init__.py +13 -0
- data/vendor/fastText/python/fasttext_module/fasttext/util/util.py +60 -0
- data/vendor/fastText/quantization-example.sh +40 -0
- data/vendor/fastText/runtests.py +60 -0
- data/vendor/fastText/scripts/kbcompletion/README.md +19 -0
- data/vendor/fastText/scripts/kbcompletion/data.sh +69 -0
- data/vendor/fastText/scripts/kbcompletion/eval.cpp +108 -0
- data/vendor/fastText/scripts/kbcompletion/fb15k.sh +49 -0
- data/vendor/fastText/scripts/kbcompletion/fb15k237.sh +45 -0
- data/vendor/fastText/scripts/kbcompletion/svo.sh +38 -0
- data/vendor/fastText/scripts/kbcompletion/wn18.sh +49 -0
- data/vendor/fastText/scripts/quantization/quantization-results.sh +43 -0
- data/vendor/fastText/setup.cfg +2 -0
- data/vendor/fastText/setup.py +203 -0
- data/vendor/fastText/src/args.cc +320 -0
- data/vendor/fastText/src/args.h +68 -0
- data/vendor/fastText/src/densematrix.cc +155 -0
- data/vendor/fastText/src/densematrix.h +75 -0
- data/vendor/fastText/src/dictionary.cc +540 -0
- data/vendor/fastText/src/dictionary.h +111 -0
- data/vendor/fastText/src/fasttext.cc +821 -0
- data/vendor/fastText/src/fasttext.h +191 -0
- data/vendor/fastText/src/loss.cc +346 -0
- data/vendor/fastText/src/loss.h +163 -0
- data/vendor/fastText/src/main.cc +435 -0
- data/vendor/fastText/src/matrix.cc +25 -0
- data/vendor/fastText/src/matrix.h +44 -0
- data/vendor/fastText/src/meter.cc +68 -0
- data/vendor/fastText/src/meter.h +69 -0
- data/vendor/fastText/src/model.cc +98 -0
- data/vendor/fastText/src/model.h +79 -0
- data/vendor/fastText/src/productquantizer.cc +251 -0
- data/vendor/fastText/src/productquantizer.h +63 -0
- data/vendor/fastText/src/quantmatrix.cc +117 -0
- data/vendor/fastText/src/quantmatrix.h +60 -0
- data/vendor/fastText/src/real.h +15 -0
- data/vendor/fastText/src/utils.cc +28 -0
- data/vendor/fastText/src/utils.h +43 -0
- data/vendor/fastText/src/vector.cc +97 -0
- data/vendor/fastText/src/vector.h +61 -0
- data/vendor/fastText/tests/fetch_test_data.sh +202 -0
- data/vendor/fastText/website/README.md +6 -0
- data/vendor/fastText/website/blog/2016-08-18-blog-post.md +42 -0
- data/vendor/fastText/website/blog/2017-05-02-blog-post.md +60 -0
- data/vendor/fastText/website/blog/2017-10-02-blog-post.md +90 -0
- data/vendor/fastText/website/blog/2019-06-25-blog-post.md +168 -0
- data/vendor/fastText/website/core/Footer.js +127 -0
- data/vendor/fastText/website/package.json +12 -0
- data/vendor/fastText/website/pages/en/index.js +286 -0
- data/vendor/fastText/website/sidebars.json +18 -0
- data/vendor/fastText/website/siteConfig.js +102 -0
- data/vendor/fastText/website/static/docs/en/html/annotated.html +115 -0
- data/vendor/fastText/website/static/docs/en/html/annotated_dup.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/args_8cc.html +113 -0
- data/vendor/fastText/website/static/docs/en/html/args_8h.html +134 -0
- data/vendor/fastText/website/static/docs/en/html/args_8h.js +14 -0
- data/vendor/fastText/website/static/docs/en/html/args_8h_source.html +139 -0
- data/vendor/fastText/website/static/docs/en/html/bc_s.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/bdwn.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/classes.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Args-members.html +140 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Args.html +753 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Args.js +40 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Dictionary-members.html +148 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Dictionary.html +1266 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Dictionary.js +43 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1FastText-members.html +145 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1FastText.html +1149 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1FastText.js +45 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Matrix-members.html +123 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Matrix.html +610 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Matrix.js +23 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Model-members.html +150 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Model.html +1400 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Model.js +48 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1ProductQuantizer-members.html +131 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1ProductQuantizer.html +950 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1ProductQuantizer.js +31 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1QMatrix-members.html +122 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1QMatrix.html +565 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1QMatrix.js +22 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Vector-members.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Vector.html +542 -0
- data/vendor/fastText/website/static/docs/en/html/classfasttext_1_1Vector.js +21 -0
- data/vendor/fastText/website/static/docs/en/html/closed.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/dictionary_8cc.html +116 -0
- data/vendor/fastText/website/static/docs/en/html/dictionary_8h.html +142 -0
- data/vendor/fastText/website/static/docs/en/html/dictionary_8h.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/dictionary_8h_source.html +127 -0
- data/vendor/fastText/website/static/docs/en/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +145 -0
- data/vendor/fastText/website/static/docs/en/html/dir_68267d1309a1af8e8297ef4c3efbcdba.js +29 -0
- data/vendor/fastText/website/static/docs/en/html/doc.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/doxygen.css +1596 -0
- data/vendor/fastText/website/static/docs/en/html/doxygen.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/dynsections.js +97 -0
- data/vendor/fastText/website/static/docs/en/html/fasttext_8cc.html +119 -0
- data/vendor/fastText/website/static/docs/en/html/fasttext_8h.html +168 -0
- data/vendor/fastText/website/static/docs/en/html/fasttext_8h.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/fasttext_8h_source.html +155 -0
- data/vendor/fastText/website/static/docs/en/html/favicon.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/files.html +125 -0
- data/vendor/fastText/website/static/docs/en/html/files.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/folderclosed.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/folderopen.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/functions.html +139 -0
- data/vendor/fastText/website/static/docs/en/html/functions_0x7e.html +112 -0
- data/vendor/fastText/website/static/docs/en/html/functions_b.html +115 -0
- data/vendor/fastText/website/static/docs/en/html/functions_c.html +143 -0
- data/vendor/fastText/website/static/docs/en/html/functions_d.html +135 -0
- data/vendor/fastText/website/static/docs/en/html/functions_dup.js +27 -0
- data/vendor/fastText/website/static/docs/en/html/functions_e.html +115 -0
- data/vendor/fastText/website/static/docs/en/html/functions_f.html +112 -0
- data/vendor/fastText/website/static/docs/en/html/functions_func.html +563 -0
- data/vendor/fastText/website/static/docs/en/html/functions_g.html +145 -0
- data/vendor/fastText/website/static/docs/en/html/functions_h.html +112 -0
- data/vendor/fastText/website/static/docs/en/html/functions_i.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/functions_k.html +106 -0
- data/vendor/fastText/website/static/docs/en/html/functions_l.html +140 -0
- data/vendor/fastText/website/static/docs/en/html/functions_m.html +153 -0
- data/vendor/fastText/website/static/docs/en/html/functions_n.html +164 -0
- data/vendor/fastText/website/static/docs/en/html/functions_o.html +116 -0
- data/vendor/fastText/website/static/docs/en/html/functions_p.html +161 -0
- data/vendor/fastText/website/static/docs/en/html/functions_q.html +135 -0
- data/vendor/fastText/website/static/docs/en/html/functions_r.html +116 -0
- data/vendor/fastText/website/static/docs/en/html/functions_s.html +159 -0
- data/vendor/fastText/website/static/docs/en/html/functions_t.html +138 -0
- data/vendor/fastText/website/static/docs/en/html/functions_u.html +106 -0
- data/vendor/fastText/website/static/docs/en/html/functions_v.html +106 -0
- data/vendor/fastText/website/static/docs/en/html/functions_vars.html +486 -0
- data/vendor/fastText/website/static/docs/en/html/functions_w.html +124 -0
- data/vendor/fastText/website/static/docs/en/html/functions_z.html +104 -0
- data/vendor/fastText/website/static/docs/en/html/globals.html +170 -0
- data/vendor/fastText/website/static/docs/en/html/globals_defs.html +113 -0
- data/vendor/fastText/website/static/docs/en/html/globals_func.html +155 -0
- data/vendor/fastText/website/static/docs/en/html/index.html +100 -0
- data/vendor/fastText/website/static/docs/en/html/jquery.js +87 -0
- data/vendor/fastText/website/static/docs/en/html/main_8cc.html +582 -0
- data/vendor/fastText/website/static/docs/en/html/main_8cc.js +22 -0
- data/vendor/fastText/website/static/docs/en/html/matrix_8cc.html +114 -0
- data/vendor/fastText/website/static/docs/en/html/matrix_8h.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/matrix_8h_source.html +123 -0
- data/vendor/fastText/website/static/docs/en/html/menu.js +26 -0
- data/vendor/fastText/website/static/docs/en/html/menudata.js +90 -0
- data/vendor/fastText/website/static/docs/en/html/model_8cc.html +113 -0
- data/vendor/fastText/website/static/docs/en/html/model_8h.html +183 -0
- data/vendor/fastText/website/static/docs/en/html/model_8h.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/model_8h_source.html +139 -0
- data/vendor/fastText/website/static/docs/en/html/namespacefasttext.html +343 -0
- data/vendor/fastText/website/static/docs/en/html/namespacefasttext.js +13 -0
- data/vendor/fastText/website/static/docs/en/html/namespacefasttext_1_1utils.html +158 -0
- data/vendor/fastText/website/static/docs/en/html/namespacemembers.html +125 -0
- data/vendor/fastText/website/static/docs/en/html/namespacemembers_enum.html +107 -0
- data/vendor/fastText/website/static/docs/en/html/namespacemembers_func.html +110 -0
- data/vendor/fastText/website/static/docs/en/html/namespacemembers_type.html +104 -0
- data/vendor/fastText/website/static/docs/en/html/namespaces.html +106 -0
- data/vendor/fastText/website/static/docs/en/html/namespaces.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/nav_f.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/nav_g.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/nav_h.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/navtree.css +146 -0
- data/vendor/fastText/website/static/docs/en/html/navtree.js +517 -0
- data/vendor/fastText/website/static/docs/en/html/navtreedata.js +40 -0
- data/vendor/fastText/website/static/docs/en/html/navtreeindex0.js +253 -0
- data/vendor/fastText/website/static/docs/en/html/navtreeindex1.js +139 -0
- data/vendor/fastText/website/static/docs/en/html/open.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/productquantizer_8cc.html +118 -0
- data/vendor/fastText/website/static/docs/en/html/productquantizer_8cc.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/productquantizer_8h.html +124 -0
- data/vendor/fastText/website/static/docs/en/html/productquantizer_8h_source.html +133 -0
- data/vendor/fastText/website/static/docs/en/html/qmatrix_8cc.html +112 -0
- data/vendor/fastText/website/static/docs/en/html/qmatrix_8h.html +126 -0
- data/vendor/fastText/website/static/docs/en/html/qmatrix_8h_source.html +128 -0
- data/vendor/fastText/website/static/docs/en/html/real_8h.html +117 -0
- data/vendor/fastText/website/static/docs/en/html/real_8h.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/real_8h_source.html +103 -0
- data/vendor/fastText/website/static/docs/en/html/resize.js +114 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_0.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_1.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_10.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_10.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_11.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_11.js +25 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_12.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_12.js +15 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_13.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_13.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_14.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_14.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_15.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_15.js +11 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_16.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_16.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_17.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_17.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_2.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_3.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_4.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_5.js +12 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_6.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_6.js +18 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_7.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_7.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_8.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_8.js +11 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_9.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_9.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_a.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_a.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_b.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_b.js +27 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_c.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_c.js +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_d.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_d.js +9 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_e.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_e.js +35 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_f.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/all_f.js +16 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_0.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_1.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_2.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_3.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_4.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_5.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_6.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_6.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_7.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_7.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_8.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/classes_8.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/close.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_0.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_1.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_2.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/defines_3.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_0.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_1.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enums_2.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_0.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_1.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_2.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_3.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_4.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/enumvalues_5.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_0.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_1.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_2.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_3.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_4.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_5.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_6.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_6.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_7.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_7.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_8.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/files_8.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_0.js +14 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_1.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_10.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_10.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_11.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_11.js +18 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_12.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_12.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_13.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_13.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_14.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_14.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_15.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_15.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_16.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_16.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_17.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_17.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_2.js +11 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_3.js +9 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_4.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_5.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_6.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_6.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_7.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_7.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_8.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_8.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_9.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_9.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_a.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_a.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_b.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_b.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_c.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_c.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_d.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_d.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_e.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_e.js +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_f.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/functions_f.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/search/mag_sel.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/search/namespaces_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/namespaces_0.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/nomatches.html +12 -0
- data/vendor/fastText/website/static/docs/en/html/search/search.css +271 -0
- data/vendor/fastText/website/static/docs/en/html/search/search.js +791 -0
- data/vendor/fastText/website/static/docs/en/html/search/search_l.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/search/search_m.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/search/search_r.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/search/searchdata.js +42 -0
- data/vendor/fastText/website/static/docs/en/html/search/typedefs_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/typedefs_0.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/typedefs_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/typedefs_1.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_0.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_0.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_1.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_1.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_10.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_10.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_11.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_11.js +11 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_12.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_12.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_13.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_13.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_2.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_2.js +9 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_3.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_3.js +9 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_4.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_4.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_5.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_5.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_6.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_6.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_7.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_7.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_8.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_8.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_9.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_9.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_a.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_a.js +14 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_b.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_b.js +17 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_c.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_c.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_d.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_d.js +10 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_e.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_e.js +11 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_f.html +26 -0
- data/vendor/fastText/website/static/docs/en/html/search/variables_f.js +6 -0
- data/vendor/fastText/website/static/docs/en/html/splitbar.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1Node-members.html +108 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1Node.html +194 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1Node.js +8 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1entry-members.html +107 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1entry.html +178 -0
- data/vendor/fastText/website/static/docs/en/html/structfasttext_1_1entry.js +7 -0
- data/vendor/fastText/website/static/docs/en/html/sync_off.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/sync_on.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/tab_a.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/tab_b.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/tab_h.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/tab_s.png +0 -0
- data/vendor/fastText/website/static/docs/en/html/tabs.css +1 -0
- data/vendor/fastText/website/static/docs/en/html/utils_8cc.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/utils_8cc.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/utils_8h.html +122 -0
- data/vendor/fastText/website/static/docs/en/html/utils_8h.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/utils_8h_source.html +104 -0
- data/vendor/fastText/website/static/docs/en/html/vector_8cc.html +121 -0
- data/vendor/fastText/website/static/docs/en/html/vector_8cc.js +4 -0
- data/vendor/fastText/website/static/docs/en/html/vector_8h.html +126 -0
- data/vendor/fastText/website/static/docs/en/html/vector_8h.js +5 -0
- data/vendor/fastText/website/static/docs/en/html/vector_8h_source.html +120 -0
- data/vendor/fastText/website/static/fasttext.css +48 -0
- data/vendor/fastText/website/static/img/authors/armand_joulin.jpg +0 -0
- data/vendor/fastText/website/static/img/authors/christian_puhrsch.png +0 -0
- data/vendor/fastText/website/static/img/authors/edouard_grave.jpeg +0 -0
- data/vendor/fastText/website/static/img/authors/piotr_bojanowski.jpg +0 -0
- data/vendor/fastText/website/static/img/authors/tomas_mikolov.jpg +0 -0
- data/vendor/fastText/website/static/img/blog/2016-08-18-blog-post-img1.png +0 -0
- data/vendor/fastText/website/static/img/blog/2016-08-18-blog-post-img2.png +0 -0
- data/vendor/fastText/website/static/img/blog/2017-05-02-blog-post-img1.jpg +0 -0
- data/vendor/fastText/website/static/img/blog/2017-05-02-blog-post-img2.jpg +0 -0
- data/vendor/fastText/website/static/img/blog/2017-10-02-blog-post-img1.png +0 -0
- data/vendor/fastText/website/static/img/cbo_vs_skipgram.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-api.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-bg-web.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-color-square.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-color-web.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-faq.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-tutorial.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-icon-white-web.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-logo-color-web.png +0 -0
- data/vendor/fastText/website/static/img/fasttext-logo-white-web.png +0 -0
- data/vendor/fastText/website/static/img/logo-color.png +0 -0
- data/vendor/fastText/website/static/img/model-black.png +0 -0
- data/vendor/fastText/website/static/img/model-blue.png +0 -0
- data/vendor/fastText/website/static/img/model-red.png +0 -0
- data/vendor/fastText/website/static/img/ogimage.png +0 -0
- data/vendor/fastText/website/static/img/oss_logo.png +0 -0
- data/vendor/fastText/wikifil.pl +57 -0
- data/vendor/fastText/word-vector-example.sh +39 -0
- metadata +621 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_a.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['l2normrow',['l2NormRow',['../classfasttext_1_1Matrix.html#aa61bc6b1a1b2467d7fb41a9e99d96922',1,'fasttext::Matrix::l2NormRow(int64_t i) const'],['../classfasttext_1_1Matrix.html#afb690a9d64bc7e941cbd48f20cab872e',1,'fasttext::Matrix::l2NormRow(Vector &norms) const']]],
|
4
|
+
['load',['load',['../classfasttext_1_1Args.html#a7f7c0f446795a8ffa23db55583ae29c4',1,'fasttext::Args::load()'],['../classfasttext_1_1Dictionary.html#a3bb32f8fb16493e1e0acb5444d266ca3',1,'fasttext::Dictionary::load()'],['../classfasttext_1_1Matrix.html#a8a04afebc25fcf38376f272371e0b60d',1,'fasttext::Matrix::load()'],['../classfasttext_1_1ProductQuantizer.html#a4060617809c0099a9e5ca73ec0497056',1,'fasttext::ProductQuantizer::load()'],['../classfasttext_1_1QMatrix.html#a03c039b81b5aaed30d95149de9379998',1,'fasttext::QMatrix::load()']]],
|
5
|
+
['loadmodel',['loadModel',['../classfasttext_1_1FastText.html#ae0e6922404294aabbb9d6322e6f464cd',1,'fasttext::FastText::loadModel(std::istream &)'],['../classfasttext_1_1FastText.html#ac844ddc1573e80a8b5a255668fc97247',1,'fasttext::FastText::loadModel(const std::string &)']]],
|
6
|
+
['loadvectors',['loadVectors',['../classfasttext_1_1FastText.html#a9e503be304e98ead00a2eaed3127f64a',1,'fasttext::FastText']]],
|
7
|
+
['log',['log',['../classfasttext_1_1Model.html#af797332e236982f2570a3b94b686e816',1,'fasttext::Model']]]
|
8
|
+
];
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_b.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['main',['main',['../main_8cc.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main.cc']]],
|
4
|
+
['matrix',['Matrix',['../classfasttext_1_1Matrix.html#ae3eed8f78b046582d6504eaae17b9890',1,'fasttext::Matrix::Matrix()'],['../classfasttext_1_1Matrix.html#adb3094376193874860df45e9346eebd6',1,'fasttext::Matrix::Matrix(int64_t, int64_t)'],['../classfasttext_1_1Matrix.html#ad70f2182e0dd1b520ee42200e2d0ed04',1,'fasttext::Matrix::Matrix(const Matrix &)']]],
|
5
|
+
['model',['Model',['../classfasttext_1_1Model.html#a63f17ed51e4a9adf73322bf62d2cf338',1,'fasttext::Model']]],
|
6
|
+
['mstep',['MStep',['../classfasttext_1_1ProductQuantizer.html#a5f6cc5e957f5546523aea7dd9e826f25',1,'fasttext::ProductQuantizer']]],
|
7
|
+
['mul',['mul',['../classfasttext_1_1Vector.html#af14f0011942b0a98562ca2f677aa4395',1,'fasttext::Vector::mul(real)'],['../classfasttext_1_1Vector.html#aec343a9bf909342d633f09c4fa3da97d',1,'fasttext::Vector::mul(const QMatrix &, const Vector &)'],['../classfasttext_1_1Vector.html#a4540e8d1c7bf5110302f5ab41d601e0c',1,'fasttext::Vector::mul(const Matrix &, const Vector &)']]],
|
8
|
+
['mulcode',['mulcode',['../classfasttext_1_1ProductQuantizer.html#a82e0fb5da37c5c6a62d6f9f6d34d91d6',1,'fasttext::ProductQuantizer']]],
|
9
|
+
['multiplyrow',['multiplyRow',['../classfasttext_1_1Matrix.html#a103b48301d251f8af69409c123435b3c',1,'fasttext::Matrix']]]
|
10
|
+
];
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_c.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['negativesampling',['negativeSampling',['../classfasttext_1_1Model.html#a670d5e0695fe61398ec4a2352c897660',1,'fasttext::Model']]],
|
4
|
+
['ngramvectors',['ngramVectors',['../classfasttext_1_1FastText.html#a62a84e26a04b64eb35edfa110dd8dc32',1,'fasttext::FastText']]],
|
5
|
+
['nlabels',['nlabels',['../classfasttext_1_1Dictionary.html#a610cf116879e0897f286ea9dd8c09895',1,'fasttext::Dictionary']]],
|
6
|
+
['nn',['nn',['../classfasttext_1_1FastText.html#a5509f491ca6c2fa3e57bc3443536f885',1,'fasttext::FastText::nn()'],['../main_8cc.html#a821b5934bab6d9d7daf366e92a4621e4',1,'nn(): main.cc']]],
|
7
|
+
['norm',['norm',['../classfasttext_1_1Vector.html#aa88e78466e3db802c403f6fe13421ff6',1,'fasttext::Vector']]],
|
8
|
+
['ntokens',['ntokens',['../classfasttext_1_1Dictionary.html#a8b4d977429d7c264a9fcc4765b2e3972',1,'fasttext::Dictionary']]],
|
9
|
+
['nwords',['nwords',['../classfasttext_1_1Dictionary.html#ad8f09843ce250ad1bca19bb849e8111d',1,'fasttext::Dictionary']]]
|
10
|
+
];
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_d.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['operator_3c_3c',['operator<<',['../namespacefasttext.html#a23eb4596f3beb9859b22cf64a83461d6',1,'fasttext']]],
|
4
|
+
['operator_3d',['operator=',['../classfasttext_1_1Matrix.html#abe27a5e1c276ab145297c4941cd468f3',1,'fasttext::Matrix']]],
|
5
|
+
['operator_5b_5d',['operator[]',['../classfasttext_1_1Vector.html#ad60a80620d695fc64062b9b493bc6232',1,'fasttext::Vector::operator[](int64_t)'],['../classfasttext_1_1Vector.html#a06c176b63c43754de86ff01846ebd47b',1,'fasttext::Vector::operator[](int64_t) const']]]
|
6
|
+
];
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_e.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['parseargs',['parseArgs',['../classfasttext_1_1Args.html#ad5c7a7235b1e37ceb80c704ceff9c765',1,'fasttext::Args']]],
|
4
|
+
['precomputewordvectors',['precomputeWordVectors',['../classfasttext_1_1FastText.html#ace82dc820d98f504af16b8b8c501a6f4',1,'fasttext::FastText']]],
|
5
|
+
['predict',['predict',['../classfasttext_1_1FastText.html#a831dff689fbc2af4f93c91ee1bde7e95',1,'fasttext::FastText::predict(std::istream &, int32_t, bool)'],['../classfasttext_1_1FastText.html#a167bc72147d4bc02bd67203e7ebd7699',1,'fasttext::FastText::predict(std::istream &, int32_t, std::vector< std::pair< real, std::string >> &) const'],['../classfasttext_1_1Model.html#aa7c62c0f736b4703c9d52130a3747d86',1,'fasttext::Model::predict(const std::vector< int32_t > &, int32_t, std::vector< std::pair< real, int32_t >> &, Vector &, Vector &) const'],['../classfasttext_1_1Model.html#a6e7ad347856d6d9b6994a4263e10585a',1,'fasttext::Model::predict(const std::vector< int32_t > &, int32_t, std::vector< std::pair< real, int32_t >> &)'],['../main_8cc.html#a4479606e315746032f4ecde4b62ebc26',1,'predict(): main.cc']]],
|
6
|
+
['printanalogiesusage',['printAnalogiesUsage',['../main_8cc.html#a2f26c98424ff31f8d5d4604f5bc91b15',1,'main.cc']]],
|
7
|
+
['printbasichelp',['printBasicHelp',['../classfasttext_1_1Args.html#af4aeb36b5332a2343e0720bd98061a4e',1,'fasttext::Args']]],
|
8
|
+
['printdictionaryhelp',['printDictionaryHelp',['../classfasttext_1_1Args.html#a9d5bd3895b25bfac8f4ba0421fde52fe',1,'fasttext::Args']]],
|
9
|
+
['printhelp',['printHelp',['../classfasttext_1_1Args.html#a8b8ee9a22203491d47ba19eb78e440a6',1,'fasttext::Args']]],
|
10
|
+
['printinfo',['printInfo',['../classfasttext_1_1FastText.html#adb757902284f53288aa41a5ae45e001f',1,'fasttext::FastText']]],
|
11
|
+
['printngrams',['printNgrams',['../main_8cc.html#af2bf6913aa4d5fa8fa15100be6cbe705',1,'main.cc']]],
|
12
|
+
['printnnusage',['printNNUsage',['../main_8cc.html#a8126ecd2d93d3b73b1c516e323575052',1,'main.cc']]],
|
13
|
+
['printpredictusage',['printPredictUsage',['../main_8cc.html#aa858ef5149aa995107818c079d930037',1,'main.cc']]],
|
14
|
+
['printprintngramsusage',['printPrintNgramsUsage',['../main_8cc.html#a086a02edc37d73f760db2882df2ea57d',1,'main.cc']]],
|
15
|
+
['printprintsentencevectorsusage',['printPrintSentenceVectorsUsage',['../main_8cc.html#a4328b0d06690e73334e2e7e1135efc37',1,'main.cc']]],
|
16
|
+
['printprintwordvectorsusage',['printPrintWordVectorsUsage',['../main_8cc.html#ab9897a3337e4f0833d547e044fd033eb',1,'main.cc']]],
|
17
|
+
['printquantizationhelp',['printQuantizationHelp',['../classfasttext_1_1Args.html#a3f176b6f6d3d87c1c23edb43fbce85dd',1,'fasttext::Args']]],
|
18
|
+
['printquantizeusage',['printQuantizeUsage',['../main_8cc.html#aa743c1f04268af8569712a85c561a67f',1,'main.cc']]],
|
19
|
+
['printsentencevectors',['printSentenceVectors',['../classfasttext_1_1FastText.html#af4d659c58cd72b67f5cc0cce2c1925cf',1,'fasttext::FastText::printSentenceVectors()'],['../main_8cc.html#a4c172f0e6b3cdcfac214743a95254c7d',1,'printSentenceVectors(): main.cc']]],
|
20
|
+
['printtestusage',['printTestUsage',['../main_8cc.html#a2cbfad77fba337d7d8b35790de95f0b8',1,'main.cc']]],
|
21
|
+
['printtraininghelp',['printTrainingHelp',['../classfasttext_1_1Args.html#a0bf37a9497365a4c9296318b78b7e7b7',1,'fasttext::Args']]],
|
22
|
+
['printusage',['printUsage',['../main_8cc.html#aead97c99e70c0da7036fbbe230ef68b6',1,'main.cc']]],
|
23
|
+
['printwordvectors',['printWordVectors',['../classfasttext_1_1FastText.html#a74e01ba3737bd625bf0602fb808b1501',1,'fasttext::FastText::printWordVectors()'],['../main_8cc.html#a133e93a6033465d23657e023a022c16e',1,'printWordVectors(): main.cc']]],
|
24
|
+
['productquantizer',['ProductQuantizer',['../classfasttext_1_1ProductQuantizer.html#a08b62937f9073fb4d95f161da7121850',1,'fasttext::ProductQuantizer::ProductQuantizer()'],['../classfasttext_1_1ProductQuantizer.html#a8563da401dbfaa98983ef0c92f92a18f',1,'fasttext::ProductQuantizer::ProductQuantizer(int32_t, int32_t)']]],
|
25
|
+
['prune',['prune',['../classfasttext_1_1Dictionary.html#a82c496a7bdfe076ac3f887b04eb54f01',1,'fasttext::Dictionary']]]
|
26
|
+
];
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="functions_f.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
var searchData=
|
2
|
+
[
|
3
|
+
['qmatrix',['QMatrix',['../classfasttext_1_1QMatrix.html#a976442aaed5b1afee2f2cd4473c0d62b',1,'fasttext::QMatrix::QMatrix()'],['../classfasttext_1_1QMatrix.html#ae10f3f12bf4c8483381ecb122b7fda5a',1,'fasttext::QMatrix::QMatrix(const Matrix &, int32_t, bool)']]],
|
4
|
+
['quantize',['quantize',['../classfasttext_1_1FastText.html#aa01f053de2afa22056c594d96988c1ad',1,'fasttext::FastText::quantize()'],['../classfasttext_1_1QMatrix.html#ab9ae1914dc1b72e305880a8c22626afc',1,'fasttext::QMatrix::quantize()'],['../main_8cc.html#a6e07bb2da057cf6a518eed616b490bdd',1,'quantize(): main.cc']]],
|
5
|
+
['quantizenorm',['quantizeNorm',['../classfasttext_1_1QMatrix.html#a0e4d84be1c6cd0cbfc4568f905961017',1,'fasttext::QMatrix']]]
|
6
|
+
];
|
Binary file
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<meta name="generator" content="Doxygen 1.8.13"/>
|
5
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
6
|
+
<script type="text/javascript" src="namespaces_0.js"></script>
|
7
|
+
<script type="text/javascript" src="search.js"></script>
|
8
|
+
</head>
|
9
|
+
<body class="SRPage">
|
10
|
+
<div id="SRIndex">
|
11
|
+
<div class="SRStatus" id="Loading">Loading...</div>
|
12
|
+
<div id="SRResults"></div>
|
13
|
+
<script type="text/javascript"><!--
|
14
|
+
createResults();
|
15
|
+
--></script>
|
16
|
+
<div class="SRStatus" id="Searching">Searching...</div>
|
17
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
18
|
+
<script type="text/javascript"><!--
|
19
|
+
document.getElementById("Loading").style.display="none";
|
20
|
+
document.getElementById("NoMatches").style.display="none";
|
21
|
+
var searchResults = new SearchResults("searchResults");
|
22
|
+
searchResults.Search();
|
23
|
+
--></script>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html><head><title></title>
|
3
|
+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
4
|
+
<link rel="stylesheet" type="text/css" href="search.css"/>
|
5
|
+
<script type="text/javascript" src="search.js"></script>
|
6
|
+
</head>
|
7
|
+
<body class="SRPage">
|
8
|
+
<div id="SRIndex">
|
9
|
+
<div class="SRStatus" id="NoMatches">No Matches</div>
|
10
|
+
</div>
|
11
|
+
</body>
|
12
|
+
</html>
|
@@ -0,0 +1,271 @@
|
|
1
|
+
/*---------------- Search Box */
|
2
|
+
|
3
|
+
#FSearchBox {
|
4
|
+
float: left;
|
5
|
+
}
|
6
|
+
|
7
|
+
#MSearchBox {
|
8
|
+
white-space : nowrap;
|
9
|
+
float: none;
|
10
|
+
margin-top: 8px;
|
11
|
+
right: 0px;
|
12
|
+
width: 170px;
|
13
|
+
height: 24px;
|
14
|
+
z-index: 102;
|
15
|
+
}
|
16
|
+
|
17
|
+
#MSearchBox .left
|
18
|
+
{
|
19
|
+
display:block;
|
20
|
+
position:absolute;
|
21
|
+
left:10px;
|
22
|
+
width:20px;
|
23
|
+
height:19px;
|
24
|
+
background:url('search_l.png') no-repeat;
|
25
|
+
background-position:right;
|
26
|
+
}
|
27
|
+
|
28
|
+
#MSearchSelect {
|
29
|
+
display:block;
|
30
|
+
position:absolute;
|
31
|
+
width:20px;
|
32
|
+
height:19px;
|
33
|
+
}
|
34
|
+
|
35
|
+
.left #MSearchSelect {
|
36
|
+
left:4px;
|
37
|
+
}
|
38
|
+
|
39
|
+
.right #MSearchSelect {
|
40
|
+
right:5px;
|
41
|
+
}
|
42
|
+
|
43
|
+
#MSearchField {
|
44
|
+
display:block;
|
45
|
+
position:absolute;
|
46
|
+
height:19px;
|
47
|
+
background:url('search_m.png') repeat-x;
|
48
|
+
border:none;
|
49
|
+
width:115px;
|
50
|
+
margin-left:20px;
|
51
|
+
padding-left:4px;
|
52
|
+
color: #909090;
|
53
|
+
outline: none;
|
54
|
+
font: 9pt Arial, Verdana, sans-serif;
|
55
|
+
-webkit-border-radius: 0px;
|
56
|
+
}
|
57
|
+
|
58
|
+
#FSearchBox #MSearchField {
|
59
|
+
margin-left:15px;
|
60
|
+
}
|
61
|
+
|
62
|
+
#MSearchBox .right {
|
63
|
+
display:block;
|
64
|
+
position:absolute;
|
65
|
+
right:10px;
|
66
|
+
top:8px;
|
67
|
+
width:20px;
|
68
|
+
height:19px;
|
69
|
+
background:url('search_r.png') no-repeat;
|
70
|
+
background-position:left;
|
71
|
+
}
|
72
|
+
|
73
|
+
#MSearchClose {
|
74
|
+
display: none;
|
75
|
+
position: absolute;
|
76
|
+
top: 4px;
|
77
|
+
background : none;
|
78
|
+
border: none;
|
79
|
+
margin: 0px 4px 0px 0px;
|
80
|
+
padding: 0px 0px;
|
81
|
+
outline: none;
|
82
|
+
}
|
83
|
+
|
84
|
+
.left #MSearchClose {
|
85
|
+
left: 6px;
|
86
|
+
}
|
87
|
+
|
88
|
+
.right #MSearchClose {
|
89
|
+
right: 2px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.MSearchBoxActive #MSearchField {
|
93
|
+
color: #000000;
|
94
|
+
}
|
95
|
+
|
96
|
+
/*---------------- Search filter selection */
|
97
|
+
|
98
|
+
#MSearchSelectWindow {
|
99
|
+
display: none;
|
100
|
+
position: absolute;
|
101
|
+
left: 0; top: 0;
|
102
|
+
border: 1px solid #90A5CE;
|
103
|
+
background-color: #F9FAFC;
|
104
|
+
z-index: 10001;
|
105
|
+
padding-top: 4px;
|
106
|
+
padding-bottom: 4px;
|
107
|
+
-moz-border-radius: 4px;
|
108
|
+
-webkit-border-top-left-radius: 4px;
|
109
|
+
-webkit-border-top-right-radius: 4px;
|
110
|
+
-webkit-border-bottom-left-radius: 4px;
|
111
|
+
-webkit-border-bottom-right-radius: 4px;
|
112
|
+
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
113
|
+
}
|
114
|
+
|
115
|
+
.SelectItem {
|
116
|
+
font: 8pt Arial, Verdana, sans-serif;
|
117
|
+
padding-left: 2px;
|
118
|
+
padding-right: 12px;
|
119
|
+
border: 0px;
|
120
|
+
}
|
121
|
+
|
122
|
+
span.SelectionMark {
|
123
|
+
margin-right: 4px;
|
124
|
+
font-family: monospace;
|
125
|
+
outline-style: none;
|
126
|
+
text-decoration: none;
|
127
|
+
}
|
128
|
+
|
129
|
+
a.SelectItem {
|
130
|
+
display: block;
|
131
|
+
outline-style: none;
|
132
|
+
color: #000000;
|
133
|
+
text-decoration: none;
|
134
|
+
padding-left: 6px;
|
135
|
+
padding-right: 12px;
|
136
|
+
}
|
137
|
+
|
138
|
+
a.SelectItem:focus,
|
139
|
+
a.SelectItem:active {
|
140
|
+
color: #000000;
|
141
|
+
outline-style: none;
|
142
|
+
text-decoration: none;
|
143
|
+
}
|
144
|
+
|
145
|
+
a.SelectItem:hover {
|
146
|
+
color: #FFFFFF;
|
147
|
+
background-color: #3D578C;
|
148
|
+
outline-style: none;
|
149
|
+
text-decoration: none;
|
150
|
+
cursor: pointer;
|
151
|
+
display: block;
|
152
|
+
}
|
153
|
+
|
154
|
+
/*---------------- Search results window */
|
155
|
+
|
156
|
+
iframe#MSearchResults {
|
157
|
+
width: 60ex;
|
158
|
+
height: 15em;
|
159
|
+
}
|
160
|
+
|
161
|
+
#MSearchResultsWindow {
|
162
|
+
display: none;
|
163
|
+
position: absolute;
|
164
|
+
left: 0; top: 0;
|
165
|
+
border: 1px solid #000;
|
166
|
+
background-color: #EEF1F7;
|
167
|
+
z-index:10000;
|
168
|
+
}
|
169
|
+
|
170
|
+
/* ----------------------------------- */
|
171
|
+
|
172
|
+
|
173
|
+
#SRIndex {
|
174
|
+
clear:both;
|
175
|
+
padding-bottom: 15px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.SREntry {
|
179
|
+
font-size: 10pt;
|
180
|
+
padding-left: 1ex;
|
181
|
+
}
|
182
|
+
|
183
|
+
.SRPage .SREntry {
|
184
|
+
font-size: 8pt;
|
185
|
+
padding: 1px 5px;
|
186
|
+
}
|
187
|
+
|
188
|
+
body.SRPage {
|
189
|
+
margin: 5px 2px;
|
190
|
+
}
|
191
|
+
|
192
|
+
.SRChildren {
|
193
|
+
padding-left: 3ex; padding-bottom: .5em
|
194
|
+
}
|
195
|
+
|
196
|
+
.SRPage .SRChildren {
|
197
|
+
display: none;
|
198
|
+
}
|
199
|
+
|
200
|
+
.SRSymbol {
|
201
|
+
font-weight: bold;
|
202
|
+
color: #425E97;
|
203
|
+
font-family: Arial, Verdana, sans-serif;
|
204
|
+
text-decoration: none;
|
205
|
+
outline: none;
|
206
|
+
}
|
207
|
+
|
208
|
+
a.SRScope {
|
209
|
+
display: block;
|
210
|
+
color: #425E97;
|
211
|
+
font-family: Arial, Verdana, sans-serif;
|
212
|
+
text-decoration: none;
|
213
|
+
outline: none;
|
214
|
+
}
|
215
|
+
|
216
|
+
a.SRSymbol:focus, a.SRSymbol:active,
|
217
|
+
a.SRScope:focus, a.SRScope:active {
|
218
|
+
text-decoration: underline;
|
219
|
+
}
|
220
|
+
|
221
|
+
span.SRScope {
|
222
|
+
padding-left: 4px;
|
223
|
+
}
|
224
|
+
|
225
|
+
.SRPage .SRStatus {
|
226
|
+
padding: 2px 5px;
|
227
|
+
font-size: 8pt;
|
228
|
+
font-style: italic;
|
229
|
+
}
|
230
|
+
|
231
|
+
.SRResult {
|
232
|
+
display: none;
|
233
|
+
}
|
234
|
+
|
235
|
+
DIV.searchresults {
|
236
|
+
margin-left: 10px;
|
237
|
+
margin-right: 10px;
|
238
|
+
}
|
239
|
+
|
240
|
+
/*---------------- External search page results */
|
241
|
+
|
242
|
+
.searchresult {
|
243
|
+
background-color: #F0F3F8;
|
244
|
+
}
|
245
|
+
|
246
|
+
.pages b {
|
247
|
+
color: white;
|
248
|
+
padding: 5px 5px 3px 5px;
|
249
|
+
background-image: url("../tab_a.png");
|
250
|
+
background-repeat: repeat-x;
|
251
|
+
text-shadow: 0 1px 1px #000000;
|
252
|
+
}
|
253
|
+
|
254
|
+
.pages {
|
255
|
+
line-height: 17px;
|
256
|
+
margin-left: 4px;
|
257
|
+
text-decoration: none;
|
258
|
+
}
|
259
|
+
|
260
|
+
.hl {
|
261
|
+
font-weight: bold;
|
262
|
+
}
|
263
|
+
|
264
|
+
#searchresults {
|
265
|
+
margin-bottom: 20px;
|
266
|
+
}
|
267
|
+
|
268
|
+
.searchpages {
|
269
|
+
margin-top: 10px;
|
270
|
+
}
|
271
|
+
|