github.com/vlifesystems/rulehunter@v0.0.0-20180501090014-673078aa4a83/experiment/fixtures/flow_big.yaml (about)

     1  title: "What would indicate good flow?"
     2  tags:
     3    - test
     4    - "fred / ned"
     5  category: "testing"
     6  train:
     7    dataset:
     8      csv:
     9        filename: "fixtures/flow_big.csv"
    10        hasHeader: true
    11        separator:  ","
    12      fields:
    13        - group
    14        - district
    15        - height
    16        - flow
    17    ruleGeneration:
    18      fields:
    19        - group
    20        - district
    21        - height
    22  aggregators:
    23    - name: "goodFlowMcc"
    24      kind: "mcc"
    25      arg: "flow > 60"
    26    - name: "totalFlow"
    27      kind: "sum"
    28      arg: "flow"
    29    - name: "totalFlowTimesHeight"
    30      kind: "sum"
    31      arg: "flow*height"
    32  goals:
    33    - "goodFlowMcc > 0"
    34  sortOrder:
    35    - aggregator: "goodFlowMcc"
    36      direction: "descending"
    37    - aggregator: "numMatches"
    38      direction: "descending"