CLI¶
Play Mode¶
This mode allows a human to manually test the game.
To launch the play mode, run the following command:
xumes play <features_path> [options]
Options¶
- --iterations <num>, -i <num>¶
[when playing] The number of iterations to perform (Number of games played).
- --episode_length <num>, -el <num>¶
[when playing] The maximum number of steps per episode.
- --features <name>, -f <name> [Optional]¶
List of features you want to play, separated by commas. All if not specified.
- --scenarios <name>, -s <name> [Optional]¶
List of scenarios you want to play, separated by commas. All if not specified.
- --tags <name> [Optional]¶
Tags to filter the scenarios. See the Tags Expression section for more information.
- --log¶
Enable logging of the results.
- --debug [Optional]¶
Enable debug messages display.
- --info [Optional]¶
Enable info messages display.
- --steps_path <folder> [Optional]¶
The path to the folder where the steps are located.
Test Mode¶
This mode allows you to automatically test the game.
To launch the test mode, run the following command:
xumes test <features_path> [options]
Options¶
- --not_vectorize, -nv¶
Do not vectorize the training. (Vectorize by default)
- --iterations <num>, -i <num>¶
[when testing] The number of iterations to perform (Number of games played).
- --features <name>, -f <name> [Optional]¶
List of features you want to test, separated by commas. All if not specified.
- --scenarios <name>, -s <name> [Optional]¶
List of scenarios you want to test, separated by commas. All if not specified.
- --tags <name> [Optional]¶
Tags to filter the scenarios. See the Tags Expression section for more information.
- --alpha <value>, -a <value>¶
[when testing] The alpha value for the Student t-test.
- --log¶
Enable logging of the results.
- --debug [Optional]¶
Enable debug messages display.
- --info [Optional]¶
Enable info messages display.
- --steps_path <folder> [Optional]¶
The path to the folder where the steps are located.
- --fps <value> [Optional]¶
Limit of FPS.
- --headless [Optional]¶
Run the game in headless mode.
- --render [Optional]¶
Enable game rendering.
Train Mode¶
This mode allows you to train an agent.
To launch the train mode, run the following command:
xumes train <features_path> [options]
Options¶
- --tensorboard, -tb [Optional]¶
Save logs to the
_logsfolder to be used with TensorBoard.
- --not_vectorize, -nv¶
Do not vectorize the training. (Vectorize by default)
- --debug [Optional]¶
Enable debug messages display.
- --info [Optional]¶
Enable info messages display.
- --steps_path <folder> [Optional]¶
The path to the folder where the steps are located.
- --model <path> [Optional]¶
The path to the previously trained model if you want to train from a model.
- --features <name>, -f <name> [Optional]¶
List of features you want to train, separated by commas. All if not specified.
- --scenarios <name>, -s <name> [Optional]¶
List of scenarios you want to train, separated by commas. All if not specified.
- --tags <name> [Optional]¶
Tags to filter the scenarios. See the Tags Expression section for more information.
- --fps <value> [Optional]¶
Limit of FPS.
- --headless [Optional]¶
Run the game in headless mode.
- --tensorboard, -tb [Optional]¶
Save logs to the
logsfolder to be used with TensorBoard.
- --imitate¶
Imitate the expert.
Collect¶
This command collects the data from the game.
Synopsis¶
xumes collect <features_path> [OPTIONS]
Options¶
- --clean [Optional]¶
Clean the data before collecting. If not specified, the data will be appended.
- --iterations <num>, -i <num>¶
[when collecting] The number of iterations to perform (Number of games played).
- --features <name>, -f <name> [Optional]¶
List of features you want to collect, separated by commas. All if not specified.
- --scenarios <name>, -s <name> [Optional]¶
List of scenarios you want to collect, separated by commas. All if not specified.
- --tags <name> [Optional]¶
Tags to filter the scenarios. See the Tags Expression section for more information.
- --log¶
Enable logging of the results.
- --debug [Optional]¶
Enable debug messages display.
- --info [Optional]¶
Enable info messages display.
- --steps_path <folder> [Optional]¶
The path to the folder where the steps are located.
- --fps <value> [Optional]¶
Limit of FPS.
- --headless [Optional]¶
Run the game in headless mode.
- --h <value> [Optional]¶
Limit of FPS and headless mode.
List¶
This command lists all the features of the test.
Synopsis¶
xumes list <features_path> [OPTIONS]
Options¶
- --steps_path <folder> [Optional]¶
The path to the folder where the steps are located.
- --features <name>, -f <name> [Optional]¶
List of features you want to list, separated by commas. All if not specified.
- --scenarios <name>, -s <name> [Optional]¶
List of scenarios you want to list, separated by commas. All if not specified.
- --tags <name> [Optional]¶
Tags to filter the scenarios. See the Tags Expression section for more information.
Description¶
The list command is used to list all the features of the test. It takes several optional parameters including features, scenarios, and tags. The features, scenarios, and tags parameters are used to specify which features and scenarios to list and to tag the features. The features_path and steps_path parameters are used to specify the paths to the features and steps folders.
Examples¶
xumes list ./features --features feature1,feature2 --scenarios scenario1,scenario2 --tags 'tag1 and tag2'
This command will list all the features specified in the features and scenarios options that are tagged with the tags specified in the tags option. The features and scenarios are located in the folders specified by the features_path and steps_path options.
+------------------------------------------------------+--------------+-------------+
| Feature/Scenario | Steps file | Tags |
+======================================================+==============+=============+
| Feature: PipeSize2 | | |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [0] - (i=0, j=0, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [1] - (i=0.5, j=0.5, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [2] - (i=1, j=1, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size hard [0] - (i=0, j=1, k=2) | PipeSize.py | hard |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size hard [1] - (i=1, j=0, k=2) | PipeSize.py | hard |
+------------------------------------------------------+--------------+-------------+
| Feature: PipeSize | | |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [0] - (i=0, j=0, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [1] - (i=0.5, j=0.5, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size easy [2] - (i=1, j=1, k=2) | PipeSize.py | easy, smoke |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size hard [0] - (i=0, j=1, k=2) | PipeSize.py | hard |
+------------------------------------------------------+--------------+-------------+
| Testing the pipe size hard [1] - (i=1, j=0, k=2) | PipeSize.py | hard |
+------------------------------------------------------+--------------+-------------+