Tutorial

Authors:MDP Developers
Copyright:This document has been placed in the public domain.
Homepage:https://mdp-toolkit.github.io
Contact:mdp-toolkit@python.org
Version:3.6

This document is also available as pdf file.

This is a guide to basic and some more advanced features of the MDP library. Besides the present tutorial, you can learn more about MDP by using the standard Python tools. All MDP nodes have doc-strings, the public attributes and methods have telling names: All information about a node can be obtained using the help and dir functions within the Python interpreter. In addition to that, an automatically generated API documentation is available.

Note

Code snippets throughout the script will be denoted by:

>>> print "Hello world!"
Hello world!

To run the following code examples don’t forget to import mdp and numpy in your Python session with:

>>> import mdp
>>> import numpy as np

You’ll find all the code of this tutorial here.