@@ -1352,6 +1352,14 @@ Subset fasttext vectors to include only words in `target_col` of `data`, and
1352
1352
subset data to only include words in `target_col` for which semantic vector
1353
1353
is available.
1354
1354
1355
+ The last parameter, default_file, specifies which vectors are loaded.
1356
+ To learn about all available vectors, use the following commands:
1357
+ ```
1358
+ using Embeddings
1359
+ language_files(FastText_Text{:nl})
1360
+ ```
1361
+ replacing the language code (here `:nl`) with the language you are interested in.
1362
+ In general, for all languages other than English, these files are available:
1355
1363
- `default_file=1` loads from https://fasttext.cc/docs/en/crawl-vectors.html,
1356
1364
paper: E. Grave*, P. Bojanowski*, P. Gupta, A. Joulin, T. Mikolov,
1357
1365
Learning Word Vectors for 157 Languages
@@ -1402,6 +1410,14 @@ subset data to only include words in `target_col` for which semantic vector
1402
1410
is available.
1403
1411
Returns subsetted train and val data and train and val semantic matrices.
1404
1412
1413
+ The last parameter, default_file, specifies which vectors are loaded.
1414
+ To learn about all available vectors, use the following commands:
1415
+ ```
1416
+ using Embeddings
1417
+ language_files(FastText_Text{:nl})
1418
+ ```
1419
+ replacing the language code (here `:nl`) with the language you are interested in.
1420
+ In general, for all languages other than English, these files are available:
1405
1421
- `default_file=1` loads from https://fasttext.cc/docs/en/crawl-vectors.html,
1406
1422
paper: E. Grave*, P. Bojanowski*, P. Gupta, A. Joulin, T. Mikolov,
1407
1423
Learning Word Vectors for 157 Languages
0 commit comments