Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle Interrupted Model Weight Downloads #253

Merged
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions laser_encoders/download_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import logging
import os
import sys
import tempfile
from pathlib import Path

import requests
Expand Down Expand Up @@ -46,20 +47,27 @@ def __init__(self, model_dir: str = None):

def download(self, filename: str):
url = os.path.join(self.base_url, filename)
local_file_path = self.model_dir / filename
local_file_path = os.path.join(self.model_dir, filename)

if local_file_path.exists():
if os.path.exists(local_file_path):
logger.info(f" - {filename} already downloaded")
else:
logger.info(f" - Downloading {filename}")
response = requests.get(url, stream=True)
total_size = int(response.headers.get("Content-Length", 0))
progress_bar = tqdm(total=total_size, unit_scale=True, unit="B")
with open(local_file_path, "wb") as f:

tf = tempfile.NamedTemporaryFile(delete=False)
temp_file_path = tf.name

with tf:
response = requests.get(url, stream=True)
total_size = int(response.headers.get("Content-Length", 0))
progress_bar = tqdm(total=total_size, unit_scale=True, unit="B")

for chunk in response.iter_content(chunk_size=1024):
f.write(chunk)
tf.write(chunk)
progress_bar.update(len(chunk))
progress_bar.close()
progress_bar.close()

os.rename(temp_file_path, local_file_path)

def get_language_code(self, language_list: dict, lang: str) -> str:
try:
Expand Down
Loading