1 Star 0 Fork 0

fengc_h/hnswlib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
download_bigann.py 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
Yury Malkov 提交于 2017-11-14 18:25 . fix script
import os.path
import os
links = ['ftp://ftp.irisa.fr/local/texmex/corpus/bigann_query.bvecs.gz',
'ftp://ftp.irisa.fr/local/texmex/corpus/bigann_gnd.tar.gz',
'ftp://ftp.irisa.fr/local/texmex/corpus/bigann_base.bvecs.gz']
os.makedirs('downloads', exist_ok=True)
os.makedirs('bigann', exist_ok=True)
for link in links:
name = link.rsplit('/', 1)[-1]
filename = os.path.join('downloads', name)
if not os.path.isfile(filename):
print('Downloading: ' + filename)
try:
os.system('wget --output-document=' + filename + ' ' + link)
except Exception as inst:
print(inst)
print(' Encountered unknown error. Continuing.')
else:
print('Already downloaded: ' + filename)
if filename.endswith('.tar.gz'):
command = 'tar -zxf ' + filename + ' --directory bigann'
else:
command = 'cat ' + filename + ' | gzip -dc > bigann/' + name.replace(".gz", "")
print("Unpacking file:", command)
os.system(command)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code0_FC/hnswlib.git
git@gitee.com:code0_FC/hnswlib.git
code0_FC
hnswlib
hnswlib
master

搜索帮助