Arailym-tleubayeva commited on
Commit
156d624
·
verified ·
1 Parent(s): 8536af5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -84,4 +84,17 @@ Aidos Mukhatayev⁸, Saltanat Sharipova⁹
84
  ⁹ Astana IT University, Kazakhstan
85
 
86
  ## Citation
87
- Biloshchytska, S., Tleubayeva, A., Kuchanskyi, O., Biloshchytskyi, A., Andrashko, Y., Toxanov, S., Mukhatayev, A., & Sharipova, S. (2025). Text Similarity Detection in Agglutinative Languages: A Case Study of Kazakh Using Hybrid N-Gram and Semantic Models. Applied Sciences, 15(12), 6707. https://doi.org/10.3390/app15126707
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  ⁹ Astana IT University, Kazakhstan
85
 
86
  ## Citation
87
+ Biloshchytska, S., Tleubayeva, A., Kuchanskyi, O., Biloshchytskyi, A., Andrashko, Y., Toxanov, S., Mukhatayev, A., & Sharipova, S. (2025). Text Similarity Detection in Agglutinative Languages: A Case Study of Kazakh Using Hybrid N-Gram and Semantic Models. Applied Sciences, 15(12), 6707. https://doi.org/10.3390/app15126707
88
+
89
+ ## How to Download
90
+
91
+ ### Using huggingface_hub
92
+ ```python
93
+ from huggingface_hub import hf_hub_download
94
+
95
+ repo_id = "Arailym-tleubayeva/kazakh-hybrid-duplicate-detector"
96
+
97
+ tfidf_path = hf_hub_download(repo_id, "tfidf_vectorizer.joblib")
98
+ lsa_path = hf_hub_download(repo_id, "lsa_svd.joblib")
99
+ lda_path = hf_hub_download(repo_id, "lda_model.joblib")
100
+ meta_path = hf_hub_download(repo_id, "meta.json")