-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from cthoyt/resolve-datasets
Add dataset resolver around dataset loader class
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
from class_resolver import Resolver | ||
|
||
from .contextfeatureset import * # noqa:F401,F403 | ||
from .drugfeatureset import * # noqa:F401,F403 | ||
from .labeledtriples import * # noqa:F401,F403 | ||
from .datasetloader import * # noqa:F401,F403 | ||
from .drugpairbatch import * # noqa:F401,F403 | ||
from .batchgenerator import * # noqa:F401,F403 | ||
|
||
dataset_resolver = Resolver.from_subclasses(base=DatasetLoader) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters