Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
RFC.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452(* Copyright (C) 2021, Francois Berenger Tsuda laboratory, Tokyo university, 5-1-5 Kashiwa-no-ha, Kashiwa-shi, Chiba-ken, 277-8561, Japan. *) (* Random Forets Classifier *) module A = BatArray module Ht = BatHashtbl module IntSet = BatSet.Int module L = BatList module Log = Dolog.Log module RNG = BatRandom.State open Printf type features = int Feature_vector.t type class_label = int type sample = features (* X *) * class_label (* y *) type tree = Leaf of class_label | Node of tree (* lhs *) * int * int (* (feature, threshold) *) * tree (* rhs *) type metric = Gini (* default *) | Shannon (* TODO; WARN: check min value is still 0.0 *) | MCC (* TODO; WARN: check min value is still 0.0 *) (* A feature with non constant value allows to discriminate samples *) let collect_non_constant_features samples = let feat_vals = Ht.create 11 in A.iter (fun (features, _class_label) -> Feature_vector.iter (fun feature value -> try let prev_values = Ht.find feat_vals feature in Ht.replace feat_vals feature (IntSet.add value prev_values) with Not_found -> Ht.add feat_vals feature (* we have a sparse representation: always explicitely add the 0 value then *) IntSet.(add value (singleton 0)) ) features ) samples; Ht.fold (fun feat vals acc -> if Utls.is_singleton vals then acc else (feat, vals) :: acc ) feat_vals [] let feat_get feat features = Feature_vector.get feat features (* split a node *) (* FBR: maybe this can be accelerated: * we need all samples sorted per feature; * we need a list of the index of remaining samples *) let partition_samples feature threshold samples = A.partition (fun (features, _class_label) -> (* sparse representation --> 0s almost everywhere *) let value = feat_get feature features in value <= threshold ) samples (* how many times we see each class label *) let class_count_samples samples = let ht = Ht.create 11 in A.iter (fun (_features, class_label) -> let prev_count = Ht.find_default ht class_label 0 in Ht.replace ht class_label (prev_count + 1) ) samples; ht let class_count_labels labels = let ht = Ht.create 11 in A.iter (fun class_label -> let prev_count = Ht.find_default ht class_label 0 in Ht.replace ht class_label (prev_count + 1) ) labels; ht (* Formula comes from the book: "Hands-on machine learning with sklearn ...", A. Geron. Same formula in wikipedia. *) let gini_impurity samples = let n = float (A.length samples) in let counts = class_count_samples samples in let sum_pi_squares = Ht.fold (fun _class_label count acc -> let p_i = (float count) /. n in (p_i *. p_i) +. acc ) counts 0.0 in 1.0 -. sum_pi_squares let metric_of = function | Gini -> gini_impurity | MCC -> failwith "not implemented yet" | Shannon -> failwith "not implemented yet" (* Formula comes from the book: "Hands-on machine learning with sklearn ...", A. Geron. It must be minimized. *) let cost_function metric left right = let card_left = A.length left in let card_right = A.length right in let n = float (card_left + card_right) in match card_left, card_right with | 0, 0 -> assert(false) | 0, _ -> metric right (* NaN protect *) | _, 0 -> metric left (* NaN protect *) | _, _ -> let w_left = (float card_left) /. n in let w_right = (float card_right) /. n in ((w_left *. (metric left)) +. (w_right *. (metric right))) let majority_class rng samples = if A.length samples = 0 then assert(false) else if A.length samples = 1 then snd (samples.(0)) (* single label *) else let ht = class_count_samples samples in (* find max count *) let max_count = Ht.fold (fun _class_label count acc -> max count acc ) ht 0 in (* randomly draw from all those with max_count *) let majority_classes = Ht.fold (fun class_label count acc -> if count = max_count then class_label :: acc else acc ) ht [] in (* let chosen = Utls.array_rand_elt rng majority_classes in * Log.info "majority: %d" chosen; * chosen *) Utls.list_rand_elt rng majority_classes let fst5 (a, _, _, (_, _)) = a let choose_min_cost rng = function | [] -> assert(false) | [x] -> x | cost_splits -> let min_cost = L.min (L.rev_map fst5 cost_splits) in (* Log.info "min_cost: %f" min_cost; *) let candidates = L.fold (fun acc (cost, feature, value, (left, right)) -> if cost = min_cost then (cost, feature, value, (left, right)) :: acc else acc ) [] cost_splits in Utls.list_rand_elt rng candidates let fold_partitions f list acc = let rec loop f list prefix acc = match list with | [] -> assert false | [x, bucket] -> let suffix = bucket in let acc = f x prefix suffix acc in (acc, suffix) | (x, bucket) :: tl -> let acc, suffix = loop f tl (List.rev_append bucket prefix) acc in let suffix = List.rev_append bucket suffix in let acc = f x prefix suffix acc in (acc, suffix) in fst (loop f list [] acc) (* maybe this is called the "Classification And Regression Tree" (CART) algorithm in the litterature *) let tree_grow (rng: Random.State.t) (* seeded RNG *) (metric: sample array -> float) (* hyper params *) (max_features: int) (max_samples: int) (min_node_size: int) (training_set: sample array) (* dataset *) : tree * int array = let bootstrap, oob = (* First randomization introduced by random forests: bootstrap sampling *) Utls.array_bootstrap_sample_OOB rng max_samples training_set in let rec loop samples = (* min_node_size is a regularization parameter; it also allows to * abort tree building (might be interesting for very large datasets) *) if A.length samples <= min_node_size then Leaf (majority_class rng samples) else (* collect all non constant features *) let split_candidates = let all_candidates = collect_non_constant_features samples in (* randomly keep only N of them: Second randomization introduced by random forests (random feature sampling). *) L.take max_features (L.shuffle ~state:rng all_candidates) in match split_candidates with | [] -> (* cannot discriminate samples further *) Leaf (majority_class rng samples) | _ -> (* select the (feature, threshold) pair minimizing cost *) let table = Hashtbl.create 11 in let split_costs = L.fold (fun acc (feature, values) -> Hashtbl.clear table; A.iter (fun ((f, _cl) as sample) -> Hashtbl.add table (feat_get feature f) sample ) samples; let buckets: (int * sample list) list = List.of_seq (Seq.map (fun value -> let samples = Hashtbl.find_all table value in (value, samples) ) (IntSet.to_seq values) ) in fold_partitions (fun value left right acc -> let left = Array.of_list left in let right = Array.of_list right in let cost = cost_function metric left right in (cost, feature, value, (left, right)) :: acc ) buckets acc ) [] split_candidates in (* choose one split minimizing cost *) let cost, feature, threshold, (left, right) = choose_min_cost rng split_costs in if A.length left = 0 then Leaf (majority_class rng right) else if A.length right = 0 then Leaf (majority_class rng left) else if cost = 0.0 then (* if the cost is minimal: pure nodes -> stop digging *) Node (Leaf (majority_class rng left), feature, threshold, Leaf (majority_class rng right)) else Node (loop left, feature, threshold, loop right) in (loop (* 0 *) bootstrap, oob) (* array of all samples whose index is listed *) let extract indexes (samples: sample array): sample array = A.map (A.unsafe_get samples) indexes let rand_max_bound = 1073741823 (* 2^30 - 1 *) (* FBR: this should go into parany *) (* array input order is preserved (REQUIRED by predict_many) *) let array_parmap ncores f a init = let n = A.length a in let res = A.make n init in Parany.run ncores ~demux:( let in_count = ref 0 in fun () -> if !in_count = n then raise Parany.End_of_input else let i = !in_count in incr in_count; i) ~work:(fun i -> (i, f (A.unsafe_get a i))) ~mux:(fun (i, y) -> A.unsafe_set res i y); res let forest_grow ncores rng metric ntrees max_features max_samples min_node_size train = (* treat the RNG as a seed stream, for reproducibility despite potentially out of order parallel run *) let seeds = A.init ntrees (fun _ -> RNG.int rng rand_max_bound) in array_parmap ncores (fun seed -> let rng' = RNG.make [|seed|] in tree_grow rng' metric max_features max_samples min_node_size train ) seeds (Leaf 0, [||]) type int_or_float = Int of int (* exact count *) | Float of float (* proportion *) type forest = (tree * int array) array (* before saving a model, we might want to just get rid of the OOB * sample indexes *) let drop_OOB (f: forest): forest = A.map (fun (t, _oob) -> (t, [||])) f let ratio_to_int mini maxi var_name x = Utls.bound_between mini maxi (match x with | Int i -> i | Float f -> let () = Utls.enforce (0.0 < f && f <= 1.0) (sprintf "RFC.ratio_to_int: %s not in ]0.0,1.0]" var_name) in BatFloat.round_to_int (f *. (float maxi)) ) let train (ncores: int) (rng: Random.State.t) (metric: metric) (ntrees: int) (max_features: int_or_float) (card_features: int) (max_samples: int_or_float) (min_node_size: int) (train: sample array): forest = Utls.enforce (1 <= ntrees) "RFC.train: ntrees < 1"; let metric_f = metric_of metric in let max_feats = ratio_to_int 1 card_features "max_features" max_features in let n = A.length train in let max_samps = ratio_to_int 1 n "max_samples" max_samples in let min_node = let () = Utls.enforce (1 <= min_node_size && min_node_size < n) "RFC.train: min_node_size not in [1,n[" in min_node_size in forest_grow ncores rng metric_f ntrees max_feats max_samps min_node train (* predict for one sample using one tree *) let tree_predict tree (features, _label) = let rec loop = function | Leaf label -> label | Node (lhs, feature, threshold, rhs) -> let value = feat_get feature features in if value <= threshold then loop lhs else loop rhs in loop tree (* label to predicted probability hash table *) let predict_one_proba ncores forest x = let pred_labels = array_parmap ncores (fun (tree, _oob) -> tree_predict tree x) forest 0 in let label_counts = class_count_labels pred_labels in let ntrees = float (A.length forest) in Ht.fold (fun label count acc -> (label, (float count) /. ntrees) :: acc ) label_counts [] let predict_one ncores rng forest x = let label_probabilities = predict_one_proba ncores forest x in let p_max = L.max (L.rev_map snd label_probabilities) in let candidates = L.filter (fun (_label, p) -> p = p_max) label_probabilities in Utls.list_rand_elt rng candidates let predict_one_margin ncores rng forest x = let label_probabilities = predict_one_proba ncores forest x in let p_max = L.max (L.rev_map snd label_probabilities) in let candidates = L.filter (fun (_label, p) -> p = p_max) label_probabilities in let pred_label, pred_proba = Utls.list_rand_elt rng candidates in let other_label_p_max = L.fold_left (fun acc (label, p) -> if label <> pred_label then max acc p else acc ) 0.0 candidates in let margin = pred_proba -. other_label_p_max in (pred_label, pred_proba, margin) (* FBR: check when we really need to create a new RNG *) (* will scale better than predict_one *) let predict_many ncores rng forest xs = array_parmap ncores (predict_one 1 rng forest) xs (0, 0.0) let predict_many_margin ncores rng forest xs = array_parmap ncores (predict_one_margin 1 rng forest) xs (0, 0.0, 0.0) let predict_OOB rng forest train = let n = A.length train in let oob_idx2preds = Ht.create n in A.iter (fun (tree, oob) -> let train_OOB = extract oob train in let truths = A.map snd train_OOB in let preds = A.map (tree_predict tree) train_OOB in Utls.array_iter3 oob truths preds (fun oob_idx truth pred -> try let prev_truth, prev_preds = Ht.find oob_idx2preds oob_idx in assert(prev_truth = truth); Ht.replace oob_idx2preds oob_idx (prev_truth, pred :: prev_preds) with Not_found -> Ht.add oob_idx2preds oob_idx (truth, [pred]) ) ) forest; let truth_preds = A.make (Ht.length oob_idx2preds) (0, 0) in Utls.ht_iteri (fun i _oob_idx (truth, preds') -> let preds = let pred_labels = A.of_list preds' in A.map (fun label -> (Feature_vector.zero (), label)) pred_labels in A.unsafe_set truth_preds i (truth, majority_class rng preds) ) oob_idx2preds; truth_preds (* MCC for particular class of interest *) let mcc target_class truth_preds = let tp_ = ref 0 in let tn_ = ref 0 in let fp_ = ref 0 in let fn_ = ref 0 in A.iter (fun (truth, pred) -> match truth = target_class, pred = target_class with | true , true -> incr tp_ | false, false -> incr tn_ | true , false -> incr fn_ | false, true -> incr fp_ ) truth_preds; let tp = !tp_ in let tn = !tn_ in let fp = !fp_ in let fn = !fn_ in Log.info "TP: %d TN: %d FP: %d FN: %d" tp tn fp fn; float ((tp * tn) - (fp * fn)) /. sqrt (float ((tp + fp) * (tp + fn) * (tn + fp) * (tn + fn))) let accuracy truth_preds = let n = A.length truth_preds in let correct_preds = ref 0 in A.iter (fun (truth, pred) -> if truth = pred then incr correct_preds ) truth_preds; (float !correct_preds) /. (float n) module Score_label = struct type t = float * bool let get_score (s, _l) = s let get_label (_s, l) = l end module ROC = Cpm.MakeROC.Make(Score_label) let roc_auc target_class preds true_labels = let score_labels = A.map2 (fun (pred_label, pred_proba) true_label -> if pred_label = target_class then (pred_proba, true_label = target_class) else (1.0 -. pred_proba, true_label = target_class) ) preds true_labels in ROC.auc_a score_labels type filename = string let save fn forest = Utls.save fn (drop_OOB forest) let restore fn = Utls.restore fn