File tree Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1414
1515FROM google/cloud-sdk:slim
1616
17- MAINTAINER PyTorchLightning <https://github.com/PyTorchLightning>
17+ LABEL maintainer= " PyTorchLightning <https://github.com/PyTorchLightning>"
1818
1919# CALL: docker image build -t pytorch-lightning:XLA-extras-py3.6 -f dockers/base-xla/Dockerfile . --build-arg PYTHON_VERSION=3.6
2020# This Dockerfile installs pytorch/xla 3.7 wheels. There are also 3.6 wheels available; see below.
Original file line number Diff line number Diff line change 1515# https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes
1616FROM nvcr.io/nvidia/pytorch:21.04-py3
1717
18- MAINTAINER PyTorchLightning <https://github.com/PyTorchLightning>
18+ LABEL maintainer= " PyTorchLightning <https://github.com/PyTorchLightning>"
1919
2020ARG LIGHTNING_VERSION=""
2121
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ARG PYTORCH_VERSION=1.5
1717
1818FROM pytorchlightning/pytorch_lightning:base-cuda-py${PYTHON_VERSION}-torch${PYTORCH_VERSION}
1919
20- MAINTAINER PyTorchLightning <https://github.com/PyTorchLightning>
20+ LABEL maintainer= " PyTorchLightning <https://github.com/PyTorchLightning>"
2121
2222ARG LIGHTNING_VERSION=""
2323
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ARG PYTORCH_VERSION=1.6
1717
1818FROM pytorchlightning/pytorch_lightning:base-xla-py${PYTHON_VERSION}-torch${PYTORCH_VERSION}
1919
20- MAINTAINER PyTorchLightning <https://github.com/PyTorchLightning>
20+ LABEL maintainer= " PyTorchLightning <https://github.com/PyTorchLightning>"
2121
2222# SHELL ["/bin/bash", "-c"]
2323
Original file line number Diff line number Diff line change 3131_WANDB_AVAILABLE = _module_available ("wandb" )
3232
3333try :
34- import wandb
3534 from wandb .wandb_run import Run
35+
36+ import wandb
3637except ImportError :
3738 # needed for test mocks, these tests shall be updated
3839 wandb , Run = None , None
Original file line number Diff line number Diff line change 22
33import torch
44from torchmetrics import Metric
5+
56"""
67Convention:
78 - Do not include any `_TYPE` suffix
You can’t perform that action at this time.
0 commit comments