-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(zt): add stochastic muzero #45
Conversation
@@ -0,0 +1,100 @@ | |||
from easydict import EasyDict |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to atari_stochastic_muzero_config.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
增加2048相关环境和config,以及cartpole/lunarlander的相关stochastic_muzero_config
def get_reward_mean(self) -> float: | ||
return get_reward_mean(self) | ||
|
||
class AfterstateDynamicsNetwork(nn.Module): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AfterstateDynamicsNetwork和AfterstatePredictionNetwork的网络结构你看看原文是否是和DynamicsNetwork和PredictionNetwork一样的,应该是可以有特殊设计的,以及对齐一下相应的loss_weight。
We have a new polished PR. |
add mcts ptree and ctree into muzero
add atari config