-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed error in selection of time_sku features * fixed error in force save agent * fixed parameter name for dataset * accelerated getitem method * minor fix in predict function * minor fix in predict function * enables out-of-sample experiments * print steps while testing * fixed error in normalization for oos products * fixed error in normalizing oos demand * fixed error in normalization of oos SKUs * fixed error in normalization of oos SKUs * added option for run_experiment to return score * fixed average calc tune! * implemented xgb * renaming * renamed to ddopai * updated requirements * updated requirements * moved some imports to extra cells * rearranged
- Loading branch information
Showing
85 changed files
with
1,573 additions
and
3,111 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,14 +1,14 @@ | ||
# ddopnew | ||
# ddopai | ||
|
||
|
||
<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! --> | ||
|
||
## Install | ||
|
||
``` sh | ||
pip install ddopnew | ||
pip install ddopai | ||
``` | ||
|
||
## What is ddopnew? | ||
## What is ddopai? | ||
|
||
To be written. |
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
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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
File renamed without changes.
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,33 @@ | ||
"""Dict of agent classes and (standard) agent names to allow for dynamic loading of agents.""" | ||
|
||
# AUTOGENERATED! DO NOT EDIT! File to edit: ../../nbs/40_base_agents/10_AGENT_CLASSES.ipynb. | ||
|
||
# %% auto 0 | ||
__all__ = ['AGENT_CLASSES'] | ||
|
||
# %% ../../nbs/40_base_agents/10_AGENT_CLASSES.ipynb 3 | ||
AGENT_CLASSES = { | ||
"RandomAgent": "ddopai.agents.saa.SAA", | ||
|
||
"SAA": "ddopai.agents.newsvendor.saa.NewsvendorSAAagent", | ||
"wSAA": "ddopai.agents.newsvendor.saa.NewsvendorRFwSAAagent", | ||
"RFwSAA": "ddopai.agents.newsvendor.saa.NewsvendorRFwSAAagent", | ||
|
||
"XGB": "ddopai.agents.newsvendor.erm.NewsvendorXGBAgent", | ||
|
||
"lERM": "ddopai.agents.newsvendor.erm.NewsvendorlERMAgent", | ||
"DLNV": "ddopai.agents.newsvendor.erm.NewsvendorDLAgent", | ||
"DLNVRNN": "ddopai.agents.newsvendor.erm.NewsvendorDLRNNAgent", | ||
"DLNVTransformer": "ddopai.agents.newsvendor.erm.NewsvendorDLTransformerAgent", | ||
|
||
"lERMMeta": "ddopai.agents.newsvendor.erm.NewsvendorlERMMetaAgent", | ||
"DLNVMeta": "ddopai.agents.newsvendor.erm.NewsvendorDLMetaAgent", | ||
"DLNVRNNMeta": "ddopai.agents.newsvendor.erm.NewsvendorDLRNNMetaAgent", | ||
"DLNVTransformerMeta": "ddopai.agents.newsvendor.erm.NewsvendorDLTransformerMetaAgent", | ||
|
||
"SAC": "ddopai.agents.rl.sac.SACAgent", | ||
"SACRNN": "ddopai.agents.rl.sac.SACRNNAgent", | ||
|
||
"TD3": "ddopai.agents.rl.td3.TD3Agent", | ||
"PPO": "ddopai.agents.rl.ppo.PPOAgent", | ||
} |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.