-
Notifications
You must be signed in to change notification settings - Fork 7
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 #38 from artefactory/corrections
ADD: Descriptions & cleaning of datasets loaders ADD: Expedia Dataset ADD: More flexible structure to create ChoiceDataset from wide df
- Loading branch information
Showing
12 changed files
with
657 additions
and
216 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 |
---|---|---|
|
@@ -136,3 +136,6 @@ secrets/* | |
|
||
# Mac OS | ||
.DS_Store | ||
|
||
# Specific data | ||
choice_learn/datasets/data/expedia.csv |
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
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
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
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,5 +1,15 @@ | ||
"""Init file for datasets module.""" | ||
|
||
from .base import load_electricity, load_heating, load_modecanada, load_swissmetro | ||
from .base import load_electricity, load_heating, load_modecanada, load_swissmetro, load_train | ||
from .examples import load_tafeng | ||
from .expedia import load_expedia | ||
|
||
__all__ = ["load_modecanada", "load_swissmetro", "load_electricity", "load_heating"] | ||
__all__ = [ | ||
"load_modecanada", | ||
"load_swissmetro", | ||
"load_electricity", | ||
"load_heating", | ||
"load_train", | ||
"load_tafeng", | ||
"load_expedia", | ||
] |
Oops, something went wrong.