2019-09-08 22:17:33 +00:00
|
|
|
"""
|
|
|
|
Multi-node example (GPU)
|
|
|
|
"""
|
|
|
|
import os
|
2019-10-22 08:32:40 +00:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
2019-09-08 22:17:33 +00:00
|
|
|
import numpy as np
|
|
|
|
import torch
|
|
|
|
|
2020-02-09 22:39:10 +00:00
|
|
|
import pytorch_lightning as pl
|
2020-04-03 21:57:34 +00:00
|
|
|
from pl_examples.models.lightning_template import LightningTemplateModel
|
2019-09-08 22:17:33 +00:00
|
|
|
|
|
|
|
SEED = 2334
|
|
|
|
torch.manual_seed(SEED)
|
|
|
|
np.random.seed(SEED)
|
|
|
|
|
|
|
|
|
|
|
|
def main(hparams):
|
2020-04-03 19:01:40 +00:00
|
|
|
"""Main training routine specific for this project."""
|
2019-09-08 22:17:33 +00:00
|
|
|
# ------------------------
|
|
|
|
# 1 INIT LIGHTNING MODEL
|
|
|
|
# ------------------------
|
|
|
|
model = LightningTemplateModel(hparams)
|
|
|
|
|
|
|
|
# ------------------------
|
|
|
|
# 2 INIT TRAINER
|
|
|
|
# ------------------------
|
2020-02-09 22:39:10 +00:00
|
|
|
trainer = pl.Trainer(
|
2019-10-05 18:21:12 +00:00
|
|
|
gpus=2,
|
2019-12-04 11:57:10 +00:00
|
|
|
num_nodes=2,
|
2019-10-05 20:39:05 +00:00
|
|
|
distributed_backend='ddp2'
|
2019-09-08 22:17:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# ------------------------
|
2019-10-05 18:21:12 +00:00
|
|
|
# 3 START TRAINING
|
2019-09-08 22:17:33 +00:00
|
|
|
# ------------------------
|
|
|
|
trainer.fit(model)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-10-05 18:21:12 +00:00
|
|
|
root_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
parent_parser = ArgumentParser(add_help=False)
|
2019-09-08 22:17:33 +00:00
|
|
|
|
2019-10-05 18:21:12 +00:00
|
|
|
# each LightningModule defines arguments relevant to it
|
2019-09-08 22:17:33 +00:00
|
|
|
parser = LightningTemplateModel.add_model_specific_args(parent_parser, root_dir)
|
|
|
|
hyperparams = parser.parse_args()
|
|
|
|
|
|
|
|
# ---------------------
|
|
|
|
# RUN TRAINING
|
|
|
|
# ---------------------
|
|
|
|
main(hyperparams)
|