-
Notifications
You must be signed in to change notification settings - Fork 17
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
Outdated documentation #203
Comments
Thank you for opening the issue! Indeed, it seems like the If you want to build a small MDP using Python, you could also try out our new more accessible Python library, stormvogel. You can find docs on how to build an MDP there. But this is not as fast as the SparseMatrixBuilder. |
The documentation tries to find a balance between completeness and conciseness. For MDPs we opted to not again explain how to build the state labeling, because it is already explained in the DTMC case. #204 will add links to the relevant documentation such that it should be a bit clearer. |
This would be fine, but I find myself getting timed out when starting your binder notebooks session or receiving |
The notebooks use the external binder service which has limited computation resources. You can however also run the Jupter notebooks locally. Install Jupyter notebook with
Run it with
In the commandline, there should be a local url |
The section on building MDPs is either outdated or is missing some parts. I recognize that it is an explanation of 01-building-mdps.py (this one works). What's missing is
states_labeling
definition and this results inNameError: name 'state_labeling' is not defined. Did you mean: 'choice_labeling'?
. According to the example, to fix this in the documentationnr_states = 13
needs to be declared and after defining/buildingtransition_matrix
state_labeling
needs to be defined and labels added.The text was updated successfully, but these errors were encountered: