From 221c10c8c342c9c41782fcf375a085873aeb988f Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sat, 5 Oct 2019 16:14:05 -0400 Subject: [PATCH] cleaning up demos --- pytorch_lightning/trainer/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/trainer/trainer.py b/pytorch_lightning/trainer/trainer.py index a056506d..1745e581 100644 --- a/pytorch_lightning/trainer/trainer.py +++ b/pytorch_lightning/trainer/trainer.py @@ -914,7 +914,7 @@ class Trainer(TrainerIO): default_port = default_port[-4:] # all ports should be in the 10k+ range - default_port = int(default_port) + 10000 + default_port = int(default_port) + 12000 except Exception as e: default_port = 12910