-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
Migrate to github action #3137
Migrate to github action #3137
Conversation
.github/workflows/build.yml
Outdated
python-version: [3.6, 3.7] | ||
torch: [1.3.0, 1.5.0] | ||
cuda: [10.1] | ||
cudnn: [7] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cuda
and cudnn
seems unused.
.github/workflows/build.yml
Outdated
torchvision: 0.6.0 | ||
cuda_arch: "7.0" | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An unnecessary blank line.
.github/workflows/build.yml
Outdated
CUDA_SHORT: 10.1 | ||
UBUNTU_VERSION: ubuntu1804 | ||
FORCE_CUDA: 1 | ||
runs-on: ubuntu-latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May put this line at the top.
.github/workflows/build.yml
Outdated
sudo apt-get install -y ninja-build | ||
- name: Install PyTorch | ||
run: | | ||
pip install Pillow==6.2.2 # remove this line when torchvision>=0.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the version of torchvision?
* migrate to github action * fixed typo * install pycocotools * resolve comments * fixed syntax
Co-authored-by: gidler <gidler@amazon.com>
No description provided.