github.com/vlifesystems/rulehunter@v0.0.0-20180501090014-673078aa4a83/experiment/fixtures/debt_combinationlength_1.json (about) 1 { 2 "title": "What would predict people being helped to be debt free?", 3 "tags": ["debt"], 4 "train": { 5 "dataset": { 6 "sql": { 7 "driverName": "sqlite3", 8 "dataSourceName": "fixtures/debt.db", 9 "query": "select * from \"people\"" 10 }, 11 "fields": [ 12 "name", 13 "balance", 14 "numCards", 15 "martialStatus", 16 "tertiaryEducated", 17 "success" 18 ] 19 }, 20 "when": "!hasRunToday || sinceLastRunHours > 2", 21 "ruleGeneration": { 22 "fields": [ 23 "name", 24 "balance", 25 "numCards", 26 "martialStatus", 27 "tertiaryEducated" 28 ], 29 "combinationLength": 1 30 } 31 }, 32 "aggregators": [ 33 { 34 "name": "helpedMcc", 35 "kind": "mcc", 36 "arg": "success" 37 } 38 ], 39 "goals": ["helpedMcc > 0"], 40 "sortOrder": [ 41 { 42 "aggregator": "helpedMcc", 43 "direction": "descending" 44 }, 45 { 46 "aggregator": "numMatches", 47 "direction": "descending" 48 } 49 ] 50 }