laurievb commited on
Commit
e807787
1 Parent(s): cc5a33a

correct model name

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -36,7 +36,7 @@ Here is how to use this model to detect the language of a given text. For best r
36
  >>> from openlid import clean_text
37
  >>> from huggingface_hub import hf_hub_download
38
 
39
- >>> model_path = hf_hub_download(repo_id="laurievb/OpenLID-v2", filename="model.bin")
40
  >>> model = fasttext.load_model(model_path)
41
  >>> input_text = clean_text("Hello, world!")
42
  >>> model.predict(input_text)
 
36
  >>> from openlid import clean_text
37
  >>> from huggingface_hub import hf_hub_download
38
 
39
+ >>> model_path = hf_hub_download(repo_id="laurievb/OpenLID-v2", filename="openlid_v2.bin")
40
  >>> model = fasttext.load_model(model_path)
41
  >>> input_text = clean_text("Hello, world!")
42
  >>> model.predict(input_text)