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
+2 -1
View File
@@ -1,6 +1,5 @@
import cProfile
import io
import logging as log
import pstats
import time
from abc import ABC, abstractmethod
@@ -9,6 +8,8 @@ from contextlib import contextmanager
import numpy as np
from pytorch_lightning import _logger as log
class BaseProfiler(ABC):
"""