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

Windows fixes #2235

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
6 changes: 4 additions & 2 deletions torchbenchmark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ def _install_deps(model_path: str, verbose: bool = True) -> Tuple[bool, Any]:
[sys.executable, install_file],
]
run_env = os.environ.copy()
run_env["PYTHONPATH"] = this_dir.parent
run_env["PYTHONPATH"] = Path(this_dir.parent).as_posix()
run_kwargs = {
"cwd": model_path,
"check": True,
"env": run_env,
}

output_buffer = None
_, stdout_fpath = tempfile.mkstemp()
fd, stdout_fpath = tempfile.mkstemp()

try:
output_buffer = io.FileIO(stdout_fpath, mode="w")
Expand All @@ -89,7 +89,9 @@ def _install_deps(model_path: str, verbose: bool = True) -> Tuple[bool, Any]:
except Exception as e:
return (False, e, io.FileIO(stdout_fpath, mode="r").read().decode())
finally:
output_buffer.close()
del output_buffer
os.close(fd)
os.remove(stdout_fpath)

return (True, None, None)
Expand Down
2 changes: 1 addition & 1 deletion torchbenchmark/models/fastNLP_Bert/cmrc2018_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _generate_train(batch_size):
def _generate_vocab():
never_split = ["[UNK]", "[SEP]", "[PAD]", "[CLS]", "[MASK]"]
VOCAB_SET.update(never_split)
with open(CMRC2018_VOCAB_SIM, "w") as vf:
with open(CMRC2018_VOCAB_SIM, "w", encoding='utf-8') as vf:
vf.write("\n".join(list(VOCAB_SET)))

def _copy_bert_config():
Expand Down
19 changes: 17 additions & 2 deletions torchbenchmark/models/sam/install.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
import os
import subprocess
import sys
import requests

def download(uri):
directory = '.data'
filename = os.path.basename(uri) # Extracts the filename from the URI
filepath = os.path.join(directory, filename)
os.makedirs(directory, exist_ok=True)
response = requests.get(uri, stream=True)
if response.status_code == 200:
with open(filepath, 'wb') as f:
for chunk in response.iter_content(chunk_size=8192): # Define the chunk size to be used
f.write(chunk)
else:
print(f'Failed to download file with status code {response.status_code}')


def pip_install_requirements():
subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt'])

def download_checkpoint():
subprocess.check_call(['wget', '-P', '.data', 'https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth'])
download('https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth')

def download_data():
subprocess.check_call(['wget', '-P', '.data', 'https://github.com/facebookresearch/segment-anything/raw/main/notebooks/images/truck.jpg'])
download('https://github.com/facebookresearch/segment-anything/raw/main/notebooks/images/truck.jpg')

if __name__ == '__main__':
pip_install_requirements()
Expand Down
19 changes: 17 additions & 2 deletions torchbenchmark/models/sam_fast/install.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
import os
import subprocess
import sys
import requests

def download(uri):
directory = '.data'
filename = os.path.basename(uri) # Extracts the filename from the URI
filepath = os.path.join(directory, filename)
os.makedirs(directory, exist_ok=True)
response = requests.get(uri, stream=True)
if response.status_code == 200:
with open(filepath, 'wb') as f:
for chunk in response.iter_content(chunk_size=8192): # Define the chunk size to be used
f.write(chunk)
else:
print(f'Failed to download file with status code {response.status_code}')


def pip_install_requirements():
subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt'])

def download_checkpoint():
subprocess.check_call(['wget', '-P', '.data', 'https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth'])
download('https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth')

def download_data():
subprocess.check_call(['wget', '-P', '.data', 'https://github.com/facebookresearch/segment-anything/raw/main/notebooks/images/truck.jpg'])
download('https://github.com/facebookresearch/segment-anything/raw/main/notebooks/images/truck.jpg')

if __name__ == '__main__':
pip_install_requirements()
Expand Down
13 changes: 12 additions & 1 deletion torchbenchmark/models/torch_multimodal_clip/install.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
import os
import subprocess
import sys
import requests

def download(output_filename, uri):
# Download the file with streaming to handle large files
response = requests.get(uri, stream=True)
if response.status_code == 200:
with open(output_filename, 'wb') as f:
for chunk in response.iter_content(chunk_size=8192): # Define the chunk size to be used
f.write(chunk)
else:
print(f'Failed to download file with status code {response.status_code}')

def pip_install_requirements():
subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt'])

def download_data(data_folder):
# CC-0 image from wikipedia page on pizza so legal to use
subprocess.check_call(['wget', '-O', os.path.join(data_folder, 'pizza.jpg'), 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Pizza-3007395.jpg/2880px-Pizza-3007395.jpg'])
download(os.path.join(data_folder, 'pizza.jpg'), 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Pizza-3007395.jpg/2880px-Pizza-3007395.jpg')

if __name__ == '__main__':
pip_install_requirements()
Expand Down
Loading