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

     1  title: "What is most likely to indicate success (norun)"
     2  ruleGeneration:
     3    fields:
     4      - "name"
     5      - "balance"
     6      - "num_cards"
     7      - "marital_status"
     8      - "tertiary_educated"
     9  train:
    10    dataset:
    11      csv:
    12        filename: "fixtures/debt.csv"
    13        hasHeader: true
    14        separator:  ","
    15      fields:
    16        - "name"
    17        - "balance"
    18        - "num_cards"
    19        - "marital_status"
    20        - "tertiary_educated"
    21        - "success"
    22    when: "!hasRun"
    23  aggregators:
    24    - name: "successMcc"
    25      kind: "mcc"
    26      arg: "success"
    27  goals:
    28    - "successMcc > 0"
    29  sortOrder:
    30    - aggregator: "successMcc"
    31      direction: "descending"