-
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 #20 from artefactory/wide-df
ADD: from ChoiceDataset.from_single_wide_df
- Loading branch information
Showing
6 changed files
with
217 additions
and
38 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Here a some in-depth examples to help you with the package. | ||
|
||
In particular you will find notebooks to handle: | ||
|
||
**DATA** | ||
- ChoiceDataset | ||
- FeaturesStorage | ||
|
||
**MODELS** | ||
- Custom modelling - important if you want to build your own model | ||
- RUMnet |
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,3 +1,11 @@ | ||
# Welcome to the choice-learn documentation! | ||
|
||
A toolbox for choice-modeling | ||
|
||
|
||
Choice-Learn is a Python package designed to help you build discrete choice models. | ||
The package provides ready to use datasets and different models from the litterature. It also provides a lower level use if you want to customize any model or create your own from scratch. In particular you will find smart datasets handling to limit RAM usage and different structure commons to any choice model. | ||
|
||
Choice-Learn uses NumPy and pandas as data backend engines and TensorFlow for models. | ||
|
||
In this documentation you will find examples to be quickly getting started as well as some more in-depth example. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Here are two tutorials to get started with the choice-learn package. | ||
In particular it shows how to create a ChoiceDataset. It's important as its the main object that will handle your data for the model. | ||
The other example shows a few example on how to handle ConditionalMNL with the package. |
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