change default logger to dedicated one (#1064)

Fix test


Fix format

Update pytorch_lightning/__init__.py
Separate imports
This commit is contained in:
Jacob Zhong
2020-03-17 18:44:00 -04:00
committed by GitHub
parent c32e3f3ea5
commit 1a73fa0b03
19 changed files with 29 additions and 24 deletions
+1 -1
View File
@@ -122,7 +122,6 @@ When this flag is enabled each batch is split into sequences of size truncated_b
"""
import copy
import logging as log
import warnings
from abc import ABC, abstractmethod
from typing import Callable
@@ -131,6 +130,7 @@ from typing import Union, List
import numpy as np
from torch.utils.data import DataLoader
from pytorch_lightning import _logger as log
from pytorch_lightning.callbacks.base import Callback
from pytorch_lightning.core.lightning import LightningModule
from pytorch_lightning.loggers import LightningLoggerBase