File tree Expand file tree Collapse file tree
python/fasttext_module/fasttext/util Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
66[project ]
77name = " fasttext-community"
8- version = " 0.11.2 "
8+ version = " 0.11.3 "
99description = " fasttext Python bindings"
1010readme = { file = " python/README.rst" , content-type = " text/x-rst" }
1111requires-python = " >=3.9, <3.14"
Original file line number Diff line number Diff line change 88 "https://dl.fbaipublicfiles.com/fasttext/vectors-english/crawl-300d-2M-subword.zip" ,
99 ],
1010 "vectors_crawl" : {
11- "cc.{lang_id}.300. bin.gz " : "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.bin.gz" ,
12- "cc.{lang_id}.300. vec.gz " : "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.vec.gz" ,
11+ "bin" : "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.bin.gz" ,
12+ "vec" : "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.vec.gz" ,
1313 },
1414 "vectors_wiki" : {
1515 "bin+text" : "https://dl.fbaipublicfiles.com/fasttext/vectors-wiki/wiki.{lang_id}.zip" ,
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ def download_model(
230230def download_model (
231231 category : Literal ["datasets" ],
232232 * ,
233- model_name : Literal ["default" ],
233+ model_type : Literal ["default" ],
234234 save_dir : str = "." ,
235235 if_exists : IF_EXISTS_TYPE = "ignore" ,
236236 auth : Optional [Union [tuple , str ]] = None ,
You can’t perform that action at this time.
0 commit comments