Source file preprocessing.ml
1
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
let () = Wrap_utils.init ();;
let ns = Py.import "sklearn.preprocessing"
let get_py name = Py.Module.get ns name
module Binarizer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?threshold ?copy () =
Py.Module.get_function_with_keywords ns "Binarizer"
[||]
(Wrap_utils.keyword_args [("threshold", Wrap_utils.Option.map threshold (function
| `F x -> Py.Float.of_float x
| `T_0_0_by x -> Wrap_utils.id x
)); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ?copy ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module FunctionTransformer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?func ?inverse_func ?validate ?accept_sparse ?check_inverse ?kw_args ?inv_kw_args () =
Py.Module.get_function_with_keywords ns "FunctionTransformer"
[||]
(Wrap_utils.keyword_args [("func", func); ("inverse_func", inverse_func); ("validate", Wrap_utils.Option.map validate Py.Bool.of_bool); ("accept_sparse", Wrap_utils.Option.map accept_sparse Py.Bool.of_bool); ("check_inverse", Wrap_utils.Option.map check_inverse Py.Bool.of_bool); ("kw_args", Wrap_utils.Option.map kw_args Dict.to_pyobject); ("inv_kw_args", Wrap_utils.Option.map inv_kw_args Dict.to_pyobject)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module KBinsDiscretizer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?n_bins ?encode ?strategy () =
Py.Module.get_function_with_keywords ns "KBinsDiscretizer"
[||]
(Wrap_utils.keyword_args [("n_bins", Wrap_utils.Option.map n_bins (function
| `I x -> Py.Int.of_int x
| `Arr x -> Arr.to_pyobject x
)); ("encode", Wrap_utils.Option.map encode (function
| `Onehot -> Py.String.of_string "onehot"
| `Onehot_dense -> Py.String.of_string "onehot-dense"
| `Ordinal -> Py.String.of_string "ordinal"
)); ("strategy", Wrap_utils.Option.map strategy (function
| `Uniform -> Py.String.of_string "uniform"
| `Quantile -> Py.String.of_string "quantile"
| `Kmeans -> Py.String.of_string "kmeans"
))])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~xt self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("Xt", Some(xt |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let n_bins_opt self =
match Py.Object.get_attr_string self "n_bins_" with
| None -> failwith "attribute n_bins_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let n_bins_ self = match n_bins_opt self with
| None -> raise Not_found
| Some x -> x
let bin_edges_opt self =
match Py.Object.get_attr_string self "bin_edges_" with
| None -> failwith "attribute bin_edges_ not found"
| Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)
let bin_edges_ self = match bin_edges_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module KernelCenterer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create () =
Py.Module.get_function_with_keywords ns "KernelCenterer"
[||]
[]
let fit ?y ~k self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("K", Some(k |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ?copy ~k self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("K", Some(k |> Arr.to_pyobject))])
|> Arr.of_pyobject
let k_fit_rows_opt self =
match Py.Object.get_attr_string self "K_fit_rows_" with
| None -> failwith "attribute K_fit_rows_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let k_fit_rows_ self = match k_fit_rows_opt self with
| None -> raise Not_found
| Some x -> x
let k_fit_all_opt self =
match Py.Object.get_attr_string self "K_fit_all_" with
| None -> failwith "attribute K_fit_all_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Float.to_float x)
let k_fit_all_ self = match k_fit_all_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module LabelBinarizer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?neg_label ?pos_label ?sparse_output () =
Py.Module.get_function_with_keywords ns "LabelBinarizer"
[||]
(Wrap_utils.keyword_args [("neg_label", Wrap_utils.Option.map neg_label Py.Int.of_int); ("pos_label", Wrap_utils.Option.map pos_label Py.Int.of_int); ("sparse_output", Wrap_utils.Option.map sparse_output Py.Bool.of_bool)])
let fit ~y self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
let fit_transform ~y self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ?threshold ~y self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("threshold", Wrap_utils.Option.map threshold Py.Float.of_float); ("Y", Some(y |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~y self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
|> Arr.of_pyobject
let classes_opt self =
match Py.Object.get_attr_string self "classes_" with
| None -> failwith "attribute classes_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let classes_ self = match classes_opt self with
| None -> raise Not_found
| Some x -> x
let y_type_opt self =
match Py.Object.get_attr_string self "y_type_" with
| None -> failwith "attribute y_type_ not found"
| Some x -> if Py.is_none x then None else Some (Py.String.to_string x)
let y_type_ self = match y_type_opt self with
| None -> raise Not_found
| Some x -> x
let sparse_input_opt self =
match Py.Object.get_attr_string self "sparse_input_" with
| None -> failwith "attribute sparse_input_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Bool.to_bool x)
let sparse_input_ self = match sparse_input_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module LabelEncoder = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create () =
Py.Module.get_function_with_keywords ns "LabelEncoder"
[||]
[]
let fit ~y self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
let fit_transform ~y self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~y self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~y self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.to_pyobject))])
|> Arr.of_pyobject
let classes_opt self =
match Py.Object.get_attr_string self "classes_" with
| None -> failwith "attribute classes_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let classes_ self = match classes_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module MaxAbsScaler = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?copy () =
Py.Module.get_function_with_keywords ns "MaxAbsScaler"
[||]
(Wrap_utils.keyword_args [("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
let partial_fit ?y ~x self =
Py.Module.get_function_with_keywords self "partial_fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let scale_opt self =
match Py.Object.get_attr_string self "scale_" with
| None -> failwith "attribute scale_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let scale_ self = match scale_opt self with
| None -> raise Not_found
| Some x -> x
let max_abs_opt self =
match Py.Object.get_attr_string self "max_abs_" with
| None -> failwith "attribute max_abs_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let max_abs_ self = match max_abs_opt self with
| None -> raise Not_found
| Some x -> x
let n_samples_seen_opt self =
match Py.Object.get_attr_string self "n_samples_seen_" with
| None -> failwith "attribute n_samples_seen_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_samples_seen_ self = match n_samples_seen_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module MinMaxScaler = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?feature_range ?copy () =
Py.Module.get_function_with_keywords ns "MinMaxScaler"
[||]
(Wrap_utils.keyword_args [("feature_range", feature_range); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let partial_fit ?y ~x self =
Py.Module.get_function_with_keywords self "partial_fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let min_opt self =
match Py.Object.get_attr_string self "min_" with
| None -> failwith "attribute min_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let min_ self = match min_opt self with
| None -> raise Not_found
| Some x -> x
let scale_opt self =
match Py.Object.get_attr_string self "scale_" with
| None -> failwith "attribute scale_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let scale_ self = match scale_opt self with
| None -> raise Not_found
| Some x -> x
let data_min_opt self =
match Py.Object.get_attr_string self "data_min_" with
| None -> failwith "attribute data_min_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let data_min_ self = match data_min_opt self with
| None -> raise Not_found
| Some x -> x
let data_max_opt self =
match Py.Object.get_attr_string self "data_max_" with
| None -> failwith "attribute data_max_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let data_max_ self = match data_max_opt self with
| None -> raise Not_found
| Some x -> x
let data_range_opt self =
match Py.Object.get_attr_string self "data_range_" with
| None -> failwith "attribute data_range_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let data_range_ self = match data_range_opt self with
| None -> raise Not_found
| Some x -> x
let n_samples_seen_opt self =
match Py.Object.get_attr_string self "n_samples_seen_" with
| None -> failwith "attribute n_samples_seen_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_samples_seen_ self = match n_samples_seen_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module MultiLabelBinarizer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?classes ?sparse_output () =
Py.Module.get_function_with_keywords ns "MultiLabelBinarizer"
[||]
(Wrap_utils.keyword_args [("classes", Wrap_utils.Option.map classes Arr.to_pyobject); ("sparse_output", Wrap_utils.Option.map sparse_output Py.Bool.of_bool)])
let fit ~y self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.List.to_pyobject))])
let fit_transform ~y self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.List.to_pyobject))])
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~yt self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("yt", Some(yt |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~y self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("y", Some(y |> Arr.List.to_pyobject))])
|> Arr.of_pyobject
let classes_opt self =
match Py.Object.get_attr_string self "classes_" with
| None -> failwith "attribute classes_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let classes_ self = match classes_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module Normalizer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?norm ?copy () =
Py.Module.get_function_with_keywords ns "Normalizer"
[||]
(Wrap_utils.keyword_args [("norm", Wrap_utils.Option.map norm (function
| `L1 -> Py.String.of_string "l1"
| `L2 -> Py.String.of_string "l2"
| `Max -> Py.String.of_string "max"
| `T_l2_by x -> Wrap_utils.id x
)); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ?copy ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("copy", copy); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module OneHotEncoder = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?categories ?drop ?sparse ?dtype ?handle_unknown () =
Py.Module.get_function_with_keywords ns "OneHotEncoder"
[||]
(Wrap_utils.keyword_args [("categories", Wrap_utils.Option.map categories (function
| `Auto -> Py.String.of_string "auto"
| `A_list_of_array_like x -> Wrap_utils.id x
)); ("drop", Wrap_utils.Option.map drop (function
| `First -> Py.String.of_string "first"
| `A_array_like x -> Wrap_utils.id x
)); ("sparse", Wrap_utils.Option.map sparse Py.Bool.of_bool); ("dtype", dtype); ("handle_unknown", Wrap_utils.Option.map handle_unknown (function
| `Error -> Py.String.of_string "error"
| `Ignore -> Py.String.of_string "ignore"
))])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let get_feature_names ?input_features self =
Py.Module.get_function_with_keywords self "get_feature_names"
[||]
(Wrap_utils.keyword_args [("input_features", Wrap_utils.Option.map input_features (Py.List.of_list_map Py.String.of_string))])
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let categories_opt self =
match Py.Object.get_attr_string self "categories_" with
| None -> failwith "attribute categories_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.List.of_pyobject x)
let categories_ self = match categories_opt self with
| None -> raise Not_found
| Some x -> x
let drop_idx_opt self =
match Py.Object.get_attr_string self "drop_idx_" with
| None -> failwith "attribute drop_idx_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let drop_idx_ self = match drop_idx_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module OrdinalEncoder = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?categories ?dtype () =
Py.Module.get_function_with_keywords ns "OrdinalEncoder"
[||]
(Wrap_utils.keyword_args [("categories", Wrap_utils.Option.map categories (function
| `Auto -> Py.String.of_string "auto"
| `A_list_of_array_like x -> Wrap_utils.id x
)); ("dtype", dtype)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let categories_opt self =
match Py.Object.get_attr_string self "categories_" with
| None -> failwith "attribute categories_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.List.of_pyobject x)
let categories_ self = match categories_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module PolynomialFeatures = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?degree ?interaction_only ?include_bias ?order () =
Py.Module.get_function_with_keywords ns "PolynomialFeatures"
[||]
(Wrap_utils.keyword_args [("degree", Wrap_utils.Option.map degree Py.Int.of_int); ("interaction_only", Wrap_utils.Option.map interaction_only Py.Bool.of_bool); ("include_bias", Wrap_utils.Option.map include_bias Py.Bool.of_bool); ("order", Wrap_utils.Option.map order (function
| `C -> Py.String.of_string "C"
| `F -> Py.String.of_string "F"
))])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_feature_names ?input_features self =
Py.Module.get_function_with_keywords self "get_feature_names"
[||]
(Wrap_utils.keyword_args [("input_features", Wrap_utils.Option.map input_features (Py.List.of_list_map Py.String.of_string))])
|> (Py.List.to_list_map Py.String.to_string)
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let powers_opt self =
match Py.Object.get_attr_string self "powers_" with
| None -> failwith "attribute powers_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let powers_ self = match powers_opt self with
| None -> raise Not_found
| Some x -> x
let n_input_features_opt self =
match Py.Object.get_attr_string self "n_input_features_" with
| None -> failwith "attribute n_input_features_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_input_features_ self = match n_input_features_opt self with
| None -> raise Not_found
| Some x -> x
let n_output_features_opt self =
match Py.Object.get_attr_string self "n_output_features_" with
| None -> failwith "attribute n_output_features_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_output_features_ self = match n_output_features_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module PowerTransformer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?method_ ?standardize ?copy () =
Py.Module.get_function_with_keywords ns "PowerTransformer"
[||]
(Wrap_utils.keyword_args [("method", Wrap_utils.Option.map method_ Py.String.of_string); ("standardize", Wrap_utils.Option.map standardize Py.Bool.of_bool); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let lambdas_opt self =
match Py.Object.get_attr_string self "lambdas_" with
| None -> failwith "attribute lambdas_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let lambdas_ self = match lambdas_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module QuantileTransformer = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?n_quantiles ?output_distribution ?ignore_implicit_zeros ?subsample ?random_state ?copy () =
Py.Module.get_function_with_keywords ns "QuantileTransformer"
[||]
(Wrap_utils.keyword_args [("n_quantiles", Wrap_utils.Option.map n_quantiles Py.Int.of_int); ("output_distribution", Wrap_utils.Option.map output_distribution Py.String.of_string); ("ignore_implicit_zeros", Wrap_utils.Option.map ignore_implicit_zeros Py.Bool.of_bool); ("subsample", Wrap_utils.Option.map subsample Py.Int.of_int); ("random_state", Wrap_utils.Option.map random_state Py.Int.of_int); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let n_quantiles_opt self =
match Py.Object.get_attr_string self "n_quantiles_" with
| None -> failwith "attribute n_quantiles_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_quantiles_ self = match n_quantiles_opt self with
| None -> raise Not_found
| Some x -> x
let quantiles_opt self =
match Py.Object.get_attr_string self "quantiles_" with
| None -> failwith "attribute quantiles_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let quantiles_ self = match quantiles_opt self with
| None -> raise Not_found
| Some x -> x
let references_opt self =
match Py.Object.get_attr_string self "references_" with
| None -> failwith "attribute references_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let references_ self = match references_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module RobustScaler = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?with_centering ?with_scaling ?quantile_range ?copy () =
Py.Module.get_function_with_keywords ns "RobustScaler"
[||]
(Wrap_utils.keyword_args [("with_centering", Wrap_utils.Option.map with_centering Py.Bool.of_bool); ("with_scaling", Wrap_utils.Option.map with_scaling Py.Bool.of_bool); ("quantile_range", quantile_range); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let center_opt self =
match Py.Object.get_attr_string self "center_" with
| None -> failwith "attribute center_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let center_ self = match center_opt self with
| None -> raise Not_found
| Some x -> x
let scale_opt self =
match Py.Object.get_attr_string self "scale_" with
| None -> failwith "attribute scale_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let scale_ self = match scale_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
module StandardScaler = struct
type t = Py.Object.t
let of_pyobject x = x
let to_pyobject x = x
let create ?copy ?with_mean ?with_std () =
Py.Module.get_function_with_keywords ns "StandardScaler"
[||]
(Wrap_utils.keyword_args [("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("with_mean", Wrap_utils.Option.map with_mean Py.Bool.of_bool); ("with_std", Wrap_utils.Option.map with_std Py.Bool.of_bool)])
let fit ?y ~x self =
Py.Module.get_function_with_keywords self "fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let fit_transform ?y ?fit_params ~x self =
Py.Module.get_function_with_keywords self "fit_transform"
[||]
(List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Arr.to_pyobject); ("X", Some(x |> Arr.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
|> Arr.of_pyobject
let get_params ?deep self =
Py.Module.get_function_with_keywords self "get_params"
[||]
(Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
|> Dict.of_pyobject
let inverse_transform ?copy ~x self =
Py.Module.get_function_with_keywords self "inverse_transform"
[||]
(Wrap_utils.keyword_args [("copy", copy); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let partial_fit ?y ~x self =
Py.Module.get_function_with_keywords self "partial_fit"
[||]
(Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Arr.to_pyobject))])
let set_params ?params self =
Py.Module.get_function_with_keywords self "set_params"
[||]
(match params with None -> [] | Some x -> x)
let transform ?copy ~x self =
Py.Module.get_function_with_keywords self "transform"
[||]
(Wrap_utils.keyword_args [("copy", copy); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let scale_opt self =
match Py.Object.get_attr_string self "scale_" with
| None -> failwith "attribute scale_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let scale_ self = match scale_opt self with
| None -> raise Not_found
| Some x -> x
let mean_opt self =
match Py.Object.get_attr_string self "mean_" with
| None -> failwith "attribute mean_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let mean_ self = match mean_opt self with
| None -> raise Not_found
| Some x -> x
let var_opt self =
match Py.Object.get_attr_string self "var_" with
| None -> failwith "attribute var_ not found"
| Some x -> if Py.is_none x then None else Some (Arr.of_pyobject x)
let var_ self = match var_opt self with
| None -> raise Not_found
| Some x -> x
let n_samples_seen_opt self =
match Py.Object.get_attr_string self "n_samples_seen_" with
| None -> failwith "attribute n_samples_seen_ not found"
| Some x -> if Py.is_none x then None else Some ((fun x -> if Py.Int.check x then `I (Py.Int.to_int x) else if (fun x -> (Wrap_utils.isinstance Wrap_utils.ndarray x) || (Wrap_utils.isinstance Wrap_utils.csr_matrix x)) x then `Arr (Arr.of_pyobject x) else failwith "could not identify type from Python value") x)
let n_samples_seen_ self = match n_samples_seen_opt self with
| None -> raise Not_found
| Some x -> x
let to_string self = Py.Object.to_string self
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)
end
let add_dummy_feature ?value ~x () =
Py.Module.get_function_with_keywords ns "add_dummy_feature"
[||]
(Wrap_utils.keyword_args [("value", Wrap_utils.Option.map value Py.Float.of_float); ("X", Some(x |> Arr.to_pyobject))])
let binarize ?threshold ?copy ~x () =
Py.Module.get_function_with_keywords ns "binarize"
[||]
(Wrap_utils.keyword_args [("threshold", Wrap_utils.Option.map threshold (function
| `F x -> Py.Float.of_float x
| `T_0_0_by x -> Wrap_utils.id x
)); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
let label_binarize ?neg_label ?pos_label ?sparse_output ~y ~classes () =
Py.Module.get_function_with_keywords ns "label_binarize"
[||]
(Wrap_utils.keyword_args [("neg_label", Wrap_utils.Option.map neg_label Py.Int.of_int); ("pos_label", Wrap_utils.Option.map pos_label Py.Int.of_int); ("sparse_output", Wrap_utils.Option.map sparse_output Py.Bool.of_bool); ("y", Some(y |> Arr.to_pyobject)); ("classes", Some(classes |> Arr.to_pyobject))])
|> Arr.of_pyobject
let maxabs_scale ?axis ?copy ~x () =
Py.Module.get_function_with_keywords ns "maxabs_scale"
[||]
(Wrap_utils.keyword_args [("axis", axis); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
let minmax_scale ?feature_range ?axis ?copy ~x () =
Py.Module.get_function_with_keywords ns "minmax_scale"
[||]
(Wrap_utils.keyword_args [("feature_range", feature_range); ("axis", Wrap_utils.Option.map axis Py.Int.of_int); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
let normalize ?norm ?axis ?copy ?return_norm ~x () =
Py.Module.get_function_with_keywords ns "normalize"
[||]
(Wrap_utils.keyword_args [("norm", Wrap_utils.Option.map norm (function
| `L1 -> Py.String.of_string "l1"
| `L2 -> Py.String.of_string "l2"
| `Max -> Py.String.of_string "max"
| `T_l2_by x -> Wrap_utils.id x
)); ("axis", Wrap_utils.Option.map axis (function
| `Zero -> Py.Int.of_int 0
| `One -> Py.Int.of_int 1
| `T_1_by x -> Wrap_utils.id x
)); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("return_norm", Wrap_utils.Option.map return_norm Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
|> (fun x -> ((Arr.of_pyobject (Py.Tuple.get x 0)), (Wrap_utils.id (Py.Tuple.get x 1))))
let power_transform ?method_ ?standardize ?copy ~x () =
Py.Module.get_function_with_keywords ns "power_transform"
[||]
(Wrap_utils.keyword_args [("method", Wrap_utils.Option.map method_ (function
| `Yeo_johnson -> Py.String.of_string "yeo-johnson"
| `Box_cox -> Py.String.of_string "box-cox"
)); ("standardize", Wrap_utils.Option.map standardize Py.Bool.of_bool); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let quantile_transform ?axis ?n_quantiles ?output_distribution ?ignore_implicit_zeros ?subsample ?random_state ?copy ~x () =
Py.Module.get_function_with_keywords ns "quantile_transform"
[||]
(Wrap_utils.keyword_args [("axis", Wrap_utils.Option.map axis Py.Int.of_int); ("n_quantiles", Wrap_utils.Option.map n_quantiles Py.Int.of_int); ("output_distribution", Wrap_utils.Option.map output_distribution (function
| `Uniform -> Py.String.of_string "uniform"
| `Normal -> Py.String.of_string "normal"
)); ("ignore_implicit_zeros", Wrap_utils.Option.map ignore_implicit_zeros Py.Bool.of_bool); ("subsample", Wrap_utils.Option.map subsample Py.Int.of_int); ("random_state", Wrap_utils.Option.map random_state Py.Int.of_int); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
|> Arr.of_pyobject
let robust_scale ?axis ?with_centering ?with_scaling ?quantile_range ?copy ~x () =
Py.Module.get_function_with_keywords ns "robust_scale"
[||]
(Wrap_utils.keyword_args [("axis", axis); ("with_centering", Wrap_utils.Option.map with_centering Py.Bool.of_bool); ("with_scaling", Wrap_utils.Option.map with_scaling Py.Bool.of_bool); ("quantile_range", quantile_range); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])
let scale ?axis ?with_mean ?with_std ?copy ~x () =
Py.Module.get_function_with_keywords ns "scale"
[||]
(Wrap_utils.keyword_args [("axis", axis); ("with_mean", Wrap_utils.Option.map with_mean Py.Bool.of_bool); ("with_std", Wrap_utils.Option.map with_std Py.Bool.of_bool); ("copy", Wrap_utils.Option.map copy Py.Bool.of_bool); ("X", Some(x |> Arr.to_pyobject))])