Operation Chain Examples

These are examples of yaml files you can use as a template for your own operation chains. For details on operation chains have a look at the respective documentation.

mmlf.yaml

# Since we start with an MMLF operation, no input is required, since the experiment setting is done in the first operation
input_path : ["dummy"]

# Each agent-environment combination is tested 10 times
# This overrides the setting from the operation specification
# file
runs: 10

# Start with a MMLF operation and analyze the results with the analysis operation
operations:
   -
       examples/mmlf_operation.yaml
   -
       examples/mmlf_analysis.yaml

weka.yaml

input_path : "tutorial_data"

operations:
   -
       examples/weka_feature_selection.yaml
   -
       examples/weka_classification_operation.yaml
   -
       examples/weka_analysis.yaml