From c88664be45da7c9f7fb90e7c4215207c52a297ce Mon Sep 17 00:00:00 2001 From: jian Date: Fri, 17 Oct 2025 14:57:13 -0400 Subject: [PATCH] Update data source URLs in downloader.py --- gensim/downloader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gensim/downloader.py b/gensim/downloader.py index 4fd7ea01e5..ee86d1aff5 100644 --- a/gensim/downloader.py +++ b/gensim/downloader.py @@ -88,8 +88,8 @@ logger = logging.getLogger(__name__) -DATA_LIST_URL = "https://raw.githubusercontent.com/RaRe-Technologies/gensim-data/master/list.json" -DOWNLOAD_BASE_URL = "https://github.com/RaRe-Technologies/gensim-data/releases/download" +DATA_LIST_URL = "https://raw.githubusercontent.com/piskvorky/gensim-data/refs/heads/master/list.json" +DOWNLOAD_BASE_URL = "https://github.com/piskvorky/gensim-data/releases/download" def _progress(chunks_downloaded, chunk_size, total_size, part=1, total_parts=1):