Skip to content

Commit 51c2a87

Browse files
committed
opt imports
1 parent a52ed99 commit 51c2a87

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ build
77
.vscode
88
.idea
99
.DS_Store
10-
__pychache__
10+
__pychache__
11+
.pytest_cache

TinyAutoML/Models/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from TinyAutoML.Models.DemocraticModel import DemocraticModel
2-
from TinyAutoML.Models.BestModel import BestModel
3-
from TinyAutoML.Models.OneRulerForAll import OneRulerForAll
1+
from .DemocraticModel import DemocraticModel
2+
from .BestModel import BestModel
3+
from .OneRulerForAll import OneRulerForAll
44

5-
from TinyAutoML.Models.DemocraticModelCV import DemocraticModelCV
6-
from TinyAutoML.Models.BestModelCV import BestModelCV
7-
from TinyAutoML.Models.OneRulerForAllCV import OneRulerForAllCV
5+
from .DemocraticModelCV import DemocraticModelCV
6+
from .BestModelCV import BestModelCV
7+
from .OneRulerForAllCV import OneRulerForAllCV
88

99
__all__ = ['DemocraticModel','BestModel','OneRulerForAll', 'DemocraticModelCV', 'BestModelCV', 'OneRulerForAllCV']

TinyAutoML/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from TinyAutoML.Estimator import MetaPipeline
2-
from TinyAutoML.EstimatorCV import MetaPipelineCV
1+
from .Estimator import MetaPipeline
2+
from .EstimatorCV import MetaPipelineCV
33

44

55
__all__ = ['MetaPipeline', 'MetaPipelineCV']

0 commit comments

Comments
 (0)