Amazon AWS EC2 startup and re-startup scripts (#2282)

This commit is contained in:
Glenn Jocher 2021-02-24 01:43:59 -08:00 committed by GitHub
parent d5d275b6e9
commit 0070995bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -2,11 +2,14 @@
# Usage: $ python utils/aws/resume.py # Usage: $ python utils/aws/resume.py
import os import os
import sys
from pathlib import Path from pathlib import Path
import torch import torch
import yaml import yaml
sys.path.append('./') # to run '$ python *.py' files in subdirectories
port = 0 # --master_port port = 0 # --master_port
path = Path('').resolve() path = Path('').resolve()
for last in path.rglob('*/**/last.pt'): for last in path.rglob('*/**/last.pt'):