package sklearn

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file Neighbors.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
let () = Wrap_utils.init ();;
let __wrap_namespace = Py.import "sklearn.neighbors"

let get_py name = Py.Module.get __wrap_namespace name
module BallTree = struct
type tag = [`BallTree]
type t = [`BallTree | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
                  let create ?leaf_size ?metric ?kwargs ~x () =
                     Py.Module.get_function_with_keywords __wrap_namespace "BallTree"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("leaf_size", leaf_size); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `DistanceMetric_object x -> Wrap_utils.id x
)); ("X", Some(x |> Np.Obj.to_pyobject))]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
let get_arrays self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_arrays"
     [||]
     []

let get_n_calls self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_n_calls"
     [||]
     []
     |> Py.Int.to_int
let get_tree_stats self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_tree_stats"
     [||]
     []

let kernel_density ?kernel ?atol ?rtol ?breadth_first ?return_log ~x ~h self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kernel_density"
     [||]
     (Wrap_utils.keyword_args [("kernel", Wrap_utils.Option.map kernel Py.String.of_string); ("atol", atol); ("rtol", rtol); ("breadth_first", Wrap_utils.Option.map breadth_first Py.Bool.of_bool); ("return_log", Wrap_utils.Option.map return_log Py.Bool.of_bool); ("X", Some(x |> Np.Obj.to_pyobject)); ("h", Some(h |> Py.Float.of_float))])

let reset_n_calls self =
   Py.Module.get_function_with_keywords (to_pyobject self) "reset_n_calls"
     [||]
     []


let data_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "data" with
  | None -> failwith "attribute data not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let data self = match data_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module DistanceMetric = struct
type tag = [`DistanceMetric]
type t = [`DistanceMetric | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module KDTree = struct
type tag = [`KDTree]
type t = [`KDTree | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
                  let create ?leaf_size ?metric ?kwargs ~x () =
                     Py.Module.get_function_with_keywords __wrap_namespace "KDTree"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("leaf_size", leaf_size); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `DistanceMetric_object x -> Wrap_utils.id x
)); ("X", Some(x |> Np.Obj.to_pyobject))]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
let get_arrays self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_arrays"
     [||]
     []

let get_n_calls self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_n_calls"
     [||]
     []
     |> Py.Int.to_int
let get_tree_stats self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_tree_stats"
     [||]
     []

let kernel_density ?kernel ?atol ?rtol ?breadth_first ?return_log ~x ~h self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kernel_density"
     [||]
     (Wrap_utils.keyword_args [("kernel", Wrap_utils.Option.map kernel Py.String.of_string); ("atol", atol); ("rtol", rtol); ("breadth_first", Wrap_utils.Option.map breadth_first Py.Bool.of_bool); ("return_log", Wrap_utils.Option.map return_log Py.Bool.of_bool); ("X", Some(x |> Np.Obj.to_pyobject)); ("h", Some(h |> Py.Float.of_float))])

let reset_n_calls self =
   Py.Module.get_function_with_keywords (to_pyobject self) "reset_n_calls"
     [||]
     []


let data_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "data" with
  | None -> failwith "attribute data not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let data self = match data_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module KNeighborsClassifier = struct
type tag = [`KNeighborsClassifier]
type t = [`BaseEstimator | `ClassifierMixin | `KNeighborsClassifier | `KNeighborsMixin | `MultiOutputMixin | `NeighborsBase | `Object | `SupervisedIntegerMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_k_neighbors x = (x :> [`KNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_classifier x = (x :> [`ClassifierMixin] Obj.t)
let as_supervised_integer x = (x :> [`SupervisedIntegerMixin] Obj.t)
                  let create ?n_neighbors ?weights ?algorithm ?leaf_size ?p ?metric ?metric_params ?n_jobs ?kwargs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "KNeighborsClassifier"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("weights", Wrap_utils.Option.map weights (function
| `Uniform -> Py.String.of_string "uniform"
| `Callable x -> Wrap_utils.id x
| `Distance -> Py.String.of_string "distance"
)); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
                  let fit ~x ~y self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
))); ("y", Some(y |> Np.Obj.to_pyobject))])
                       |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let kneighbors ?x ?n_neighbors self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("return_distance", Some(true |> Py.Bool.of_bool))])
     |> (fun x -> (((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
                  let kneighbors_graph ?x ?n_neighbors ?mode self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let predict ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let predict_proba ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict_proba"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let score ?sample_weight ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let classes_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "classes_" with
  | None -> failwith "attribute classes_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let classes_ self = match classes_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_" with
  | None -> failwith "attribute effective_metric_ not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let effective_metric_ self = match effective_metric_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_params_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_params_" with
  | None -> failwith "attribute effective_metric_params_ not found"
  | Some x -> if Py.is_none x then None else Some (Dict.of_pyobject x)

let effective_metric_params_ self = match effective_metric_params_opt self with
  | None -> raise Not_found
  | Some x -> x

let outputs_2d_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "outputs_2d_" with
  | None -> failwith "attribute outputs_2d_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.Bool.to_bool x)

let outputs_2d_ self = match outputs_2d_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module KNeighborsRegressor = struct
type tag = [`KNeighborsRegressor]
type t = [`BaseEstimator | `KNeighborsMixin | `KNeighborsRegressor | `MultiOutputMixin | `NeighborsBase | `Object | `RegressorMixin | `SupervisedFloatMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_supervised_float x = (x :> [`SupervisedFloatMixin] Obj.t)
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_regressor x = (x :> [`RegressorMixin] Obj.t)
let as_k_neighbors x = (x :> [`KNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
                  let create ?n_neighbors ?weights ?algorithm ?leaf_size ?p ?metric ?metric_params ?n_jobs ?kwargs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "KNeighborsRegressor"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("weights", Wrap_utils.Option.map weights (function
| `Uniform -> Py.String.of_string "uniform"
| `Callable x -> Wrap_utils.id x
| `Distance -> Py.String.of_string "distance"
)); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
                  let fit ~x ~y self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
))); ("y", Some(y |> Np.Obj.to_pyobject))])
                       |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let kneighbors ?x ?n_neighbors self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("return_distance", Some(true |> Py.Bool.of_bool))])
     |> (fun x -> (((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
                  let kneighbors_graph ?x ?n_neighbors ?mode self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let predict ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let score ?sample_weight ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let effective_metric_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_" with
  | None -> failwith "attribute effective_metric_ not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let effective_metric_ self = match effective_metric_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_params_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_params_" with
  | None -> failwith "attribute effective_metric_params_ not found"
  | Some x -> if Py.is_none x then None else Some (Dict.of_pyobject x)

let effective_metric_params_ self = match effective_metric_params_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module KNeighborsTransformer = struct
type tag = [`KNeighborsTransformer]
type t = [`BaseEstimator | `KNeighborsMixin | `KNeighborsTransformer | `MultiOutputMixin | `NeighborsBase | `Object | `TransformerMixin | `UnsupervisedMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_k_neighbors x = (x :> [`KNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_transformer x = (x :> [`TransformerMixin] Obj.t)
let as_unsupervised x = (x :> [`UnsupervisedMixin] Obj.t)
                  let create ?mode ?n_neighbors ?algorithm ?leaf_size ?metric ?p ?metric_params ?n_jobs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "KNeighborsTransformer"
                       [||]
                       (Wrap_utils.keyword_args [("mode", Wrap_utils.Option.map mode (function
| `Distance -> Py.String.of_string "distance"
| `Connectivity -> Py.String.of_string "connectivity"
)); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)])
                       |> of_pyobject
                  let fit ?y ~x self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
)))])
                       |> of_pyobject
let fit_transform ?y ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit_transform"
     [||]
     (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let kneighbors ?x ?n_neighbors self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("return_distance", Some(true |> Py.Bool.of_bool))])
     |> (fun x -> (((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
                  let kneighbors_graph ?x ?n_neighbors ?mode self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject
let transform ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "transform"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module KernelDensity = struct
type tag = [`KernelDensity]
type t = [`BaseEstimator | `KernelDensity | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let create ?bandwidth ?algorithm ?kernel ?metric ?atol ?rtol ?breadth_first ?leaf_size ?metric_params () =
   Py.Module.get_function_with_keywords __wrap_namespace "KernelDensity"
     [||]
     (Wrap_utils.keyword_args [("bandwidth", Wrap_utils.Option.map bandwidth Py.Float.of_float); ("algorithm", Wrap_utils.Option.map algorithm Py.String.of_string); ("kernel", Wrap_utils.Option.map kernel Py.String.of_string); ("metric", Wrap_utils.Option.map metric Py.String.of_string); ("atol", Wrap_utils.Option.map atol Py.Float.of_float); ("rtol", Wrap_utils.Option.map rtol Py.Float.of_float); ("breadth_first", Wrap_utils.Option.map breadth_first Py.Bool.of_bool); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject)])
     |> of_pyobject
let fit ?y ?sample_weight ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit"
     [||]
     (Wrap_utils.keyword_args [("y", y); ("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject))])
     |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let sample ?n_samples ?random_state self =
   Py.Module.get_function_with_keywords (to_pyobject self) "sample"
     [||]
     (Wrap_utils.keyword_args [("n_samples", Wrap_utils.Option.map n_samples Py.Int.of_int); ("random_state", Wrap_utils.Option.map random_state Py.Int.of_int)])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let score ?y ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let score_samples ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score_samples"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module LocalOutlierFactor = struct
type tag = [`LocalOutlierFactor]
type t = [`BaseEstimator | `KNeighborsMixin | `LocalOutlierFactor | `MultiOutputMixin | `NeighborsBase | `Object | `OutlierMixin | `UnsupervisedMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_outlier x = (x :> [`OutlierMixin] Obj.t)
let as_k_neighbors x = (x :> [`KNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_unsupervised x = (x :> [`UnsupervisedMixin] Obj.t)
                  let create ?n_neighbors ?algorithm ?leaf_size ?metric ?p ?metric_params ?contamination ?novelty ?n_jobs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "LocalOutlierFactor"
                       [||]
                       (Wrap_utils.keyword_args [("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("contamination", Wrap_utils.Option.map contamination (function
| `Auto -> Py.String.of_string "auto"
| `F x -> Py.Float.of_float x
)); ("novelty", Wrap_utils.Option.map novelty Py.Bool.of_bool); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)])
                       |> of_pyobject
                  let fit ?y ~x self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
)))])
                       |> of_pyobject
let fit_predict ?y ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit_predict"
     [||]
     (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let kneighbors ?x ?n_neighbors self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("return_distance", Some(true |> Py.Bool.of_bool))])
     |> (fun x -> (((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
                  let kneighbors_graph ?x ?n_neighbors ?mode self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let negative_outlier_factor_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "negative_outlier_factor_" with
  | None -> failwith "attribute negative_outlier_factor_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let negative_outlier_factor_ self = match negative_outlier_factor_opt self with
  | None -> raise Not_found
  | Some x -> x

let n_neighbors_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "n_neighbors_" with
  | None -> failwith "attribute n_neighbors_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)

let n_neighbors_ self = match n_neighbors_opt self with
  | None -> raise Not_found
  | Some x -> x

let offset_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "offset_" with
  | None -> failwith "attribute offset_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.Float.to_float x)

let offset_ self = match offset_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module NearestCentroid = struct
type tag = [`NearestCentroid]
type t = [`BaseEstimator | `ClassifierMixin | `NearestCentroid | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_classifier x = (x :> [`ClassifierMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
                  let create ?metric ?shrink_threshold () =
                     Py.Module.get_function_with_keywords __wrap_namespace "NearestCentroid"
                       [||]
                       (Wrap_utils.keyword_args [("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("shrink_threshold", Wrap_utils.Option.map shrink_threshold Py.Float.of_float)])
                       |> of_pyobject
let fit ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let predict ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let score ?sample_weight ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let centroids_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "centroids_" with
  | None -> failwith "attribute centroids_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let centroids_ self = match centroids_opt self with
  | None -> raise Not_found
  | Some x -> x

let classes_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "classes_" with
  | None -> failwith "attribute classes_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let classes_ self = match classes_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module NearestNeighbors = struct
type tag = [`NearestNeighbors]
type t = [`BaseEstimator | `KNeighborsMixin | `MultiOutputMixin | `NearestNeighbors | `NeighborsBase | `Object | `RadiusNeighborsMixin | `UnsupervisedMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_radius_neighbors x = (x :> [`RadiusNeighborsMixin] Obj.t)
let as_k_neighbors x = (x :> [`KNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_unsupervised x = (x :> [`UnsupervisedMixin] Obj.t)
                  let create ?n_neighbors ?radius ?algorithm ?leaf_size ?metric ?p ?metric_params ?n_jobs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "NearestNeighbors"
                       [||]
                       (Wrap_utils.keyword_args [("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)])
                       |> of_pyobject
                  let fit ?y ~x self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
)))])
                       |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let kneighbors ?x ?n_neighbors self =
   Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("return_distance", Some(true |> Py.Bool.of_bool))])
     |> (fun x -> (((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
                  let kneighbors_graph ?x ?n_neighbors ?mode self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("n_neighbors", Wrap_utils.Option.map n_neighbors Py.Int.of_int); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let radius_neighbors ?x ?radius ?sort_results self =
   Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("return_distance", Some(true |> Py.Bool.of_bool)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
     |> (fun x -> ((Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 0)), (Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 1))))
                  let radius_neighbors_graph ?x ?radius ?mode ?sort_results self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let effective_metric_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_" with
  | None -> failwith "attribute effective_metric_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.String.to_string x)

let effective_metric_ self = match effective_metric_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_params_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_params_" with
  | None -> failwith "attribute effective_metric_params_ not found"
  | Some x -> if Py.is_none x then None else Some (Dict.of_pyobject x)

let effective_metric_params_ self = match effective_metric_params_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module NeighborhoodComponentsAnalysis = struct
type tag = [`NeighborhoodComponentsAnalysis]
type t = [`BaseEstimator | `NeighborhoodComponentsAnalysis | `Object | `TransformerMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_transformer x = (x :> [`TransformerMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
                  let create ?n_components ?init ?warm_start ?max_iter ?tol ?callback ?verbose ?random_state () =
                     Py.Module.get_function_with_keywords __wrap_namespace "NeighborhoodComponentsAnalysis"
                       [||]
                       (Wrap_utils.keyword_args [("n_components", Wrap_utils.Option.map n_components Py.Int.of_int); ("init", Wrap_utils.Option.map init (function
| `Random -> Py.String.of_string "random"
| `Auto -> Py.String.of_string "auto"
| `Arr x -> Np.Obj.to_pyobject x
| `Pca -> Py.String.of_string "pca"
| `Identity -> Py.String.of_string "identity"
| `Lda -> Py.String.of_string "lda"
)); ("warm_start", Wrap_utils.Option.map warm_start Py.Bool.of_bool); ("max_iter", Wrap_utils.Option.map max_iter Py.Int.of_int); ("tol", Wrap_utils.Option.map tol Py.Float.of_float); ("callback", callback); ("verbose", Wrap_utils.Option.map verbose Py.Int.of_int); ("random_state", Wrap_utils.Option.map random_state Py.Int.of_int)])
                       |> of_pyobject
let fit ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> of_pyobject
let fit_transform ?y ?fit_params ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit_transform"
     [||]
     (List.rev_append (Wrap_utils.keyword_args [("y", Wrap_utils.Option.map y Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject))]) (match fit_params with None -> [] | Some x -> x))
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject 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 (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject
let transform ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "transform"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))

let components_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "components_" with
  | None -> failwith "attribute components_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let components_ self = match components_opt self with
  | None -> raise Not_found
  | Some x -> x

let n_iter_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "n_iter_" with
  | None -> failwith "attribute n_iter_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)

let n_iter_ self = match n_iter_opt self with
  | None -> raise Not_found
  | Some x -> x

let random_state_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "random_state_" with
  | None -> failwith "attribute random_state_ not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let random_state_ self = match random_state_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module RadiusNeighborsClassifier = struct
type tag = [`RadiusNeighborsClassifier]
type t = [`BaseEstimator | `ClassifierMixin | `MultiOutputMixin | `NeighborsBase | `Object | `RadiusNeighborsClassifier | `RadiusNeighborsMixin | `SupervisedIntegerMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_radius_neighbors x = (x :> [`RadiusNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_classifier x = (x :> [`ClassifierMixin] Obj.t)
let as_supervised_integer x = (x :> [`SupervisedIntegerMixin] Obj.t)
                  let create ?radius ?weights ?algorithm ?leaf_size ?p ?metric ?outlier_label ?metric_params ?n_jobs ?kwargs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "RadiusNeighborsClassifier"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("weights", Wrap_utils.Option.map weights (function
| `Uniform -> Py.String.of_string "uniform"
| `Callable x -> Wrap_utils.id x
| `Distance -> Py.String.of_string "distance"
)); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("outlier_label", Wrap_utils.Option.map outlier_label (function
| `Manual_label x -> Wrap_utils.id x
| `Most_frequent -> Py.String.of_string "most_frequent"
)); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
                  let fit ~x ~y self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
))); ("y", Some(y |> Np.Obj.to_pyobject))])
                       |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let predict ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let predict_proba ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict_proba"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let radius_neighbors ?x ?radius ?sort_results self =
   Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("return_distance", Some(true |> Py.Bool.of_bool)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
     |> (fun x -> ((Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 0)), (Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 1))))
                  let radius_neighbors_graph ?x ?radius ?mode ?sort_results self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let score ?sample_weight ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let classes_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "classes_" with
  | None -> failwith "attribute classes_ not found"
  | Some x -> if Py.is_none x then None else Some ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) x)

let classes_ self = match classes_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_" with
  | None -> failwith "attribute effective_metric_ not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let effective_metric_ self = match effective_metric_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_params_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_params_" with
  | None -> failwith "attribute effective_metric_params_ not found"
  | Some x -> if Py.is_none x then None else Some (Dict.of_pyobject x)

let effective_metric_params_ self = match effective_metric_params_opt self with
  | None -> raise Not_found
  | Some x -> x

let outputs_2d_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "outputs_2d_" with
  | None -> failwith "attribute outputs_2d_ not found"
  | Some x -> if Py.is_none x then None else Some (Py.Bool.to_bool x)

let outputs_2d_ self = match outputs_2d_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module RadiusNeighborsRegressor = struct
type tag = [`RadiusNeighborsRegressor]
type t = [`BaseEstimator | `MultiOutputMixin | `NeighborsBase | `Object | `RadiusNeighborsMixin | `RadiusNeighborsRegressor | `RegressorMixin | `SupervisedFloatMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_supervised_float x = (x :> [`SupervisedFloatMixin] Obj.t)
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_radius_neighbors x = (x :> [`RadiusNeighborsMixin] Obj.t)
let as_regressor x = (x :> [`RegressorMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
                  let create ?radius ?weights ?algorithm ?leaf_size ?p ?metric ?metric_params ?n_jobs ?kwargs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "RadiusNeighborsRegressor"
                       [||]
                       (List.rev_append (Wrap_utils.keyword_args [("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("weights", Wrap_utils.Option.map weights (function
| `Uniform -> Py.String.of_string "uniform"
| `Callable x -> Wrap_utils.id x
| `Distance -> Py.String.of_string "distance"
)); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)]) (match kwargs with None -> [] | Some x -> x))
                       |> of_pyobject
                  let fit ~x ~y self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
))); ("y", Some(y |> Np.Obj.to_pyobject))])
                       |> of_pyobject
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let predict ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "predict"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let radius_neighbors ?x ?radius ?sort_results self =
   Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("return_distance", Some(true |> Py.Bool.of_bool)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
     |> (fun x -> ((Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 0)), (Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 1))))
                  let radius_neighbors_graph ?x ?radius ?mode ?sort_results self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let score ?sample_weight ~x ~y self =
   Py.Module.get_function_with_keywords (to_pyobject self) "score"
     [||]
     (Wrap_utils.keyword_args [("sample_weight", Wrap_utils.Option.map sample_weight Np.Obj.to_pyobject); ("X", Some(x |> Np.Obj.to_pyobject)); ("y", Some(y |> Np.Obj.to_pyobject))])
     |> Py.Float.to_float
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject

let effective_metric_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_" with
  | None -> failwith "attribute effective_metric_ not found"
  | Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)

let effective_metric_ self = match effective_metric_opt self with
  | None -> raise Not_found
  | Some x -> x

let effective_metric_params_opt self =
  match Py.Object.get_attr_string (to_pyobject self) "effective_metric_params_" with
  | None -> failwith "attribute effective_metric_params_ not found"
  | Some x -> if Py.is_none x then None else Some (Dict.of_pyobject x)

let effective_metric_params_ self = match effective_metric_params_opt self with
  | None -> raise Not_found
  | Some x -> x
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
module RadiusNeighborsTransformer = struct
type tag = [`RadiusNeighborsTransformer]
type t = [`BaseEstimator | `MultiOutputMixin | `NeighborsBase | `Object | `RadiusNeighborsMixin | `RadiusNeighborsTransformer | `TransformerMixin | `UnsupervisedMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let as_radius_neighbors x = (x :> [`RadiusNeighborsMixin] Obj.t)
let as_estimator x = (x :> [`BaseEstimator] Obj.t)
let as_neighbors x = (x :> [`NeighborsBase] Obj.t)
let as_transformer x = (x :> [`TransformerMixin] Obj.t)
let as_unsupervised x = (x :> [`UnsupervisedMixin] Obj.t)
                  let create ?mode ?radius ?algorithm ?leaf_size ?metric ?p ?metric_params ?n_jobs () =
                     Py.Module.get_function_with_keywords __wrap_namespace "RadiusNeighborsTransformer"
                       [||]
                       (Wrap_utils.keyword_args [("mode", Wrap_utils.Option.map mode (function
| `Distance -> Py.String.of_string "distance"
| `Connectivity -> Py.String.of_string "connectivity"
)); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("algorithm", Wrap_utils.Option.map algorithm (function
| `Auto -> Py.String.of_string "auto"
| `Ball_tree -> Py.String.of_string "ball_tree"
| `Kd_tree -> Py.String.of_string "kd_tree"
| `Brute -> Py.String.of_string "brute"
)); ("leaf_size", Wrap_utils.Option.map leaf_size Py.Int.of_int); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int)])
                       |> of_pyobject
                  let fit ?y ~x self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "fit"
                       [||]
                       (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> (function
| `Arr x -> Np.Obj.to_pyobject x
| `PyObject x -> Wrap_utils.id x
)))])
                       |> of_pyobject
let fit_transform ?y ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "fit_transform"
     [||]
     (Wrap_utils.keyword_args [("y", y); ("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let get_params ?deep self =
   Py.Module.get_function_with_keywords (to_pyobject self) "get_params"
     [||]
     (Wrap_utils.keyword_args [("deep", Wrap_utils.Option.map deep Py.Bool.of_bool)])
     |> Dict.of_pyobject
let radius_neighbors ?x ?radius ?sort_results self =
   Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors"
     [||]
     (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("return_distance", Some(true |> Py.Bool.of_bool)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
     |> (fun x -> ((Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 0)), (Np.Numpy.Ndarray.List.of_pyobject (Py.Tuple.get x 1))))
                  let radius_neighbors_graph ?x ?radius ?mode ?sort_results self =
                     Py.Module.get_function_with_keywords (to_pyobject self) "radius_neighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("X", Wrap_utils.Option.map x Np.Obj.to_pyobject); ("radius", Wrap_utils.Option.map radius Py.Float.of_float); ("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("sort_results", Wrap_utils.Option.map sort_results Py.Bool.of_bool)])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Csr_matrix|`IndexMixin|`Object] Np.Obj.t))
let set_params ?params self =
   Py.Module.get_function_with_keywords (to_pyobject self) "set_params"
     [||]
     (match params with None -> [] | Some x -> x)
     |> of_pyobject
let transform ~x self =
   Py.Module.get_function_with_keywords (to_pyobject self) "transform"
     [||]
     (Wrap_utils.keyword_args [("X", Some(x |> Np.Obj.to_pyobject))])
     |> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let to_string self = Py.Object.to_string (to_pyobject self)
let show self = to_string self
let pp formatter self = Format.fprintf formatter "%s" (show self)

end
                  let kneighbors_graph ?mode ?metric ?p ?metric_params ?include_self ?n_jobs ~x ~n_neighbors () =
                     Py.Module.get_function_with_keywords __wrap_namespace "kneighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("metric", Wrap_utils.Option.map metric Py.String.of_string); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("include_self", Wrap_utils.Option.map include_self (function
| `Auto -> Py.String.of_string "auto"
| `Bool x -> Py.Bool.of_bool x
)); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int); ("X", Some(x |> (function
| `BallTree x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject x
))); ("n_neighbors", Some(n_neighbors |> Py.Int.of_int))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Object|`Spmatrix] Np.Obj.t))
                  let radius_neighbors_graph ?mode ?metric ?p ?metric_params ?include_self ?n_jobs ~x ~radius () =
                     Py.Module.get_function_with_keywords __wrap_namespace "radius_neighbors_graph"
                       [||]
                       (Wrap_utils.keyword_args [("mode", Wrap_utils.Option.map mode (function
| `Connectivity -> Py.String.of_string "connectivity"
| `Distance -> Py.String.of_string "distance"
)); ("metric", Wrap_utils.Option.map metric Py.String.of_string); ("p", Wrap_utils.Option.map p Py.Int.of_int); ("metric_params", Wrap_utils.Option.map metric_params Dict.to_pyobject); ("include_self", Wrap_utils.Option.map include_self (function
| `Auto -> Py.String.of_string "auto"
| `Bool x -> Py.Bool.of_bool x
)); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int); ("X", Some(x |> (function
| `BallTree x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject x
))); ("radius", Some(radius |> Py.Float.of_float))])
                       |> (fun py -> (Np.Obj.of_pyobject py : [`ArrayLike|`Object|`Spmatrix] Np.Obj.t))
OCaml

Innovation. Community. Security.