Source file Gaussian_process.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
let () = Wrap_utils.init ();;
let __wrap_namespace = Py.import "sklearn.gaussian_process"
let get_py name = Py.Module.get __wrap_namespace name
module GaussianProcessClassifier = struct
type tag = [`GaussianProcessClassifier]
type t = [`BaseEstimator | `ClassifierMixin | `GaussianProcessClassifier | `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 ?kernel ?optimizer ?n_restarts_optimizer ?max_iter_predict ?warm_start ?copy_X_train ?random_state ?multi_class ?n_jobs () =
Py.Module.get_function_with_keywords __wrap_namespace "GaussianProcessClassifier"
[||]
(Wrap_utils.keyword_args [("kernel", kernel); ("optimizer", Wrap_utils.Option.map optimizer (function
| `Callable x -> Wrap_utils.id x
| `Fmin_l_bfgs_b -> Py.String.of_string "fmin_l_bfgs_b"
)); ("n_restarts_optimizer", Wrap_utils.Option.map n_restarts_optimizer Py.Int.of_int); ("max_iter_predict", Wrap_utils.Option.map max_iter_predict Py.Int.of_int); ("warm_start", Wrap_utils.Option.map warm_start Py.Bool.of_bool); ("copy_X_train", Wrap_utils.Option.map copy_X_train Py.Bool.of_bool); ("random_state", Wrap_utils.Option.map random_state Py.Int.of_int); ("multi_class", Wrap_utils.Option.map multi_class (function
| `One_vs_rest -> Py.String.of_string "one_vs_rest"
| `One_vs_one -> Py.String.of_string "one_vs_one"
)); ("n_jobs", Wrap_utils.Option.map n_jobs 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 |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 log_marginal_likelihood ?theta ?eval_gradient ?clone_kernel self =
Py.Module.get_function_with_keywords (to_pyobject self) "log_marginal_likelihood"
[||]
(Wrap_utils.keyword_args [("theta", Wrap_utils.Option.map theta Np.Obj.to_pyobject); ("eval_gradient", Wrap_utils.Option.map eval_gradient Py.Bool.of_bool); ("clone_kernel", Wrap_utils.Option.map clone_kernel Py.Bool.of_bool)])
|> (fun x -> ((Py.Float.to_float (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
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 kernel_opt self =
match Py.Object.get_attr_string (to_pyobject self) "kernel_" with
| None -> failwith "attribute kernel_ not found"
| Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)
let kernel_ self = match kernel_opt self with
| None -> raise Not_found
| Some x -> x
let log_marginal_likelihood_value_opt self =
match Py.Object.get_attr_string (to_pyobject self) "log_marginal_likelihood_value_" with
| None -> failwith "attribute log_marginal_likelihood_value_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Float.to_float x)
let log_marginal_likelihood_value_ self = match log_marginal_likelihood_value_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 n_classes_opt self =
match Py.Object.get_attr_string (to_pyobject self) "n_classes_" with
| None -> failwith "attribute n_classes_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_classes_ self = match n_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 GaussianProcessRegressor = struct
type tag = [`GaussianProcessRegressor]
type t = [`BaseEstimator | `GaussianProcessRegressor | `MultiOutputMixin | `Object | `RegressorMixin] 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 as_regressor x = (x :> [`RegressorMixin] Obj.t)
let as_multi_output x = (x :> [`MultiOutputMixin] Obj.t)
let create ?kernel ?alpha ?optimizer ?n_restarts_optimizer ?normalize_y ?copy_X_train ?random_state () =
Py.Module.get_function_with_keywords __wrap_namespace "GaussianProcessRegressor"
[||]
(Wrap_utils.keyword_args [("kernel", kernel); ("alpha", Wrap_utils.Option.map alpha Np.Obj.to_pyobject); ("optimizer", Wrap_utils.Option.map optimizer (function
| `Callable x -> Wrap_utils.id x
| `Fmin_l_bfgs_b -> Py.String.of_string "fmin_l_bfgs_b"
)); ("n_restarts_optimizer", Wrap_utils.Option.map n_restarts_optimizer Py.Int.of_int); ("normalize_y", Wrap_utils.Option.map normalize_y Py.Bool.of_bool); ("copy_X_train", Wrap_utils.Option.map copy_X_train Py.Bool.of_bool); ("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 |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 log_marginal_likelihood ?theta ?eval_gradient ?clone_kernel self =
Py.Module.get_function_with_keywords (to_pyobject self) "log_marginal_likelihood"
[||]
(Wrap_utils.keyword_args [("theta", Wrap_utils.Option.map theta Np.Obj.to_pyobject); ("eval_gradient", Wrap_utils.Option.map eval_gradient Py.Bool.of_bool); ("clone_kernel", Wrap_utils.Option.map clone_kernel Py.Bool.of_bool)])
|> (fun x -> ((Py.Float.to_float (Py.Tuple.get x 0)), ((fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t)) (Py.Tuple.get x 1))))
let predict ?return_std ?return_cov ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "predict"
[||]
(Wrap_utils.keyword_args [("return_std", Wrap_utils.Option.map return_std Py.Bool.of_bool); ("return_cov", Wrap_utils.Option.map return_cov Py.Bool.of_bool); ("X", Some(x |> Np.Obj.to_pyobject))])
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let sample_y ?n_samples ?random_state ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "sample_y"
[||]
(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); ("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject x
)))])
|> (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 x_train_opt self =
match Py.Object.get_attr_string (to_pyobject self) "X_train_" with
| None -> failwith "attribute X_train_ not found"
| Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)
let x_train_ self = match x_train_opt self with
| None -> raise Not_found
| Some x -> x
let y_train_opt self =
match Py.Object.get_attr_string (to_pyobject self) "y_train_" with
| None -> failwith "attribute y_train_ 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 y_train_ self = match y_train_opt self with
| None -> raise Not_found
| Some x -> x
let kernel_opt self =
match Py.Object.get_attr_string (to_pyobject self) "kernel_" with
| None -> failwith "attribute kernel_ not found"
| Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)
let kernel_ self = match kernel_opt self with
| None -> raise Not_found
| Some x -> x
let l_opt self =
match Py.Object.get_attr_string (to_pyobject self) "L_" with
| None -> failwith "attribute L_ 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 l_ self = match l_opt self with
| None -> raise Not_found
| Some x -> x
let alpha_opt self =
match Py.Object.get_attr_string (to_pyobject self) "alpha_" with
| None -> failwith "attribute alpha_ 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 alpha_ self = match alpha_opt self with
| None -> raise Not_found
| Some x -> x
let log_marginal_likelihood_value_opt self =
match Py.Object.get_attr_string (to_pyobject self) "log_marginal_likelihood_value_" with
| None -> failwith "attribute log_marginal_likelihood_value_ not found"
| Some x -> if Py.is_none x then None else Some (Py.Float.to_float x)
let log_marginal_likelihood_value_ self = match log_marginal_likelihood_value_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 Kernels = struct
let () = Wrap_utils.init ();;
let __wrap_namespace = Py.import "sklearn.gaussian_process.kernels"
let get_py name = Py.Module.get __wrap_namespace name
module CompoundKernel = struct
type tag = [`CompoundKernel]
type t = [`CompoundKernel | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create kernels =
Py.Module.get_function_with_keywords __wrap_namespace "CompoundKernel"
[||]
(Wrap_utils.keyword_args [("kernels", Some(kernels ))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 ConstantKernel = struct
type tag = [`ConstantKernel]
type t = [`ConstantKernel | `GenericKernelMixin | `Object | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let as_generic_kernel x = (x :> [`GenericKernelMixin] Obj.t)
let create ?constant_value ?constant_value_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "ConstantKernel"
[||]
(Wrap_utils.keyword_args [("constant_value", Wrap_utils.Option.map constant_value Py.Float.of_float); ("constant_value_bounds", Wrap_utils.Option.map constant_value_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 DotProduct = struct
type tag = [`DotProduct]
type t = [`DotProduct | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ?sigma_0 ?sigma_0_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "DotProduct"
[||]
(Wrap_utils.keyword_args [("sigma_0", Wrap_utils.Option.map sigma_0 Py.Float.of_float); ("sigma_0_bounds", Wrap_utils.Option.map sigma_0_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 ExpSineSquared = struct
type tag = [`ExpSineSquared]
type t = [`ExpSineSquared | `NormalizedKernelMixin | `Object | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_normalized_kernel x = (x :> [`NormalizedKernelMixin] Obj.t)
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let create ?length_scale ?periodicity ?length_scale_bounds ?periodicity_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "ExpSineSquared"
[||]
(Wrap_utils.keyword_args [("length_scale", Wrap_utils.Option.map length_scale Py.Float.of_float); ("periodicity", Wrap_utils.Option.map periodicity Py.Float.of_float); ("length_scale_bounds", Wrap_utils.Option.map length_scale_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
)); ("periodicity_bounds", Wrap_utils.Option.map periodicity_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 Exponentiation = struct
type tag = [`Exponentiation]
type t = [`Exponentiation | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ~kernel ~exponent () =
Py.Module.get_function_with_keywords __wrap_namespace "Exponentiation"
[||]
(Wrap_utils.keyword_args [("kernel", Some(kernel )); ("exponent", Some(exponent |> Py.Float.of_float))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 GenericKernelMixin = struct
type tag = [`GenericKernelMixin]
type t = [`GenericKernelMixin | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create () =
Py.Module.get_function_with_keywords __wrap_namespace "GenericKernelMixin"
[||]
[]
|> 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 Hyperparameter = struct
type tag = [`Hyperparameter]
type t = [`Hyperparameter | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ?n_elements ?fixed ~name ~value_type ~bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "Hyperparameter"
[||]
(Wrap_utils.keyword_args [("n_elements", n_elements); ("fixed", fixed); ("name", Some(name )); ("value_type", Some(value_type )); ("bounds", Some(bounds ))])
|> of_pyobject
let get_item ~key self =
Py.Module.get_function_with_keywords (to_pyobject self) "__getitem__"
(Array.of_list @@ List.concat [[key ]])
[]
let iter self =
Py.Module.get_function_with_keywords (to_pyobject self) "__iter__"
[||]
[]
|> (fun py -> Py.Iter.to_seq py |> Seq.map Dict.of_pyobject)
let count ~value self =
Py.Module.get_function_with_keywords (to_pyobject self) "count"
(Array.of_list @@ List.concat [[value ]])
[]
let index ?start ?stop ~value self =
Py.Module.get_function_with_keywords (to_pyobject self) "index"
(Array.of_list @@ List.concat [(match start with None -> [] | Some x -> [x ]);(match stop with None -> [] | Some x -> [x ]);[value ]])
[]
let name_opt self =
match Py.Object.get_attr_string (to_pyobject self) "name" with
| None -> failwith "attribute name not found"
| Some x -> if Py.is_none x then None else Some (Py.String.to_string x)
let name self = match name_opt self with
| None -> raise Not_found
| Some x -> x
let value_type_opt self =
match Py.Object.get_attr_string (to_pyobject self) "value_type" with
| None -> failwith "attribute value_type not found"
| Some x -> if Py.is_none x then None else Some (Py.String.to_string x)
let value_type self = match value_type_opt self with
| None -> raise Not_found
| Some x -> x
let bounds_opt self =
match Py.Object.get_attr_string (to_pyobject self) "bounds" with
| None -> failwith "attribute bounds not found"
| Some x -> if Py.is_none x then None else Some (Wrap_utils.id x)
let bounds self = match bounds_opt self with
| None -> raise Not_found
| Some x -> x
let n_elements_opt self =
match Py.Object.get_attr_string (to_pyobject self) "n_elements" with
| None -> failwith "attribute n_elements not found"
| Some x -> if Py.is_none x then None else Some (Py.Int.to_int x)
let n_elements self = match n_elements_opt self with
| None -> raise Not_found
| Some x -> x
let fixed_opt self =
match Py.Object.get_attr_string (to_pyobject self) "fixed" with
| None -> failwith "attribute fixed not found"
| Some x -> if Py.is_none x then None else Some (Py.Bool.to_bool x)
let fixed self = match fixed_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 Kernel = struct
type tag = [`Kernel]
type t = [`Kernel | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 KernelOperator = struct
type tag = [`KernelOperator]
type t = [`KernelOperator | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 Matern = struct
type tag = [`Matern]
type t = [`Matern | `NormalizedKernelMixin | `Object | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_normalized_kernel x = (x :> [`NormalizedKernelMixin] Obj.t)
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let create ?length_scale ?length_scale_bounds ?nu () =
Py.Module.get_function_with_keywords __wrap_namespace "Matern"
[||]
(Wrap_utils.keyword_args [("length_scale", Wrap_utils.Option.map length_scale Np.Obj.to_pyobject); ("length_scale_bounds", Wrap_utils.Option.map length_scale_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
)); ("nu", Wrap_utils.Option.map nu Py.Float.of_float)])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 NormalizedKernelMixin = struct
type tag = [`NormalizedKernelMixin]
type t = [`NormalizedKernelMixin | `Object] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create () =
Py.Module.get_function_with_keywords __wrap_namespace "NormalizedKernelMixin"
[||]
[]
|> of_pyobject
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(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 PairwiseKernel = struct
type tag = [`PairwiseKernel]
type t = [`Object | `PairwiseKernel] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ?gamma ?gamma_bounds ?metric ?pairwise_kernels_kwargs () =
Py.Module.get_function_with_keywords __wrap_namespace "PairwiseKernel"
[||]
(Wrap_utils.keyword_args [("gamma", Wrap_utils.Option.map gamma Py.Float.of_float); ("gamma_bounds", Wrap_utils.Option.map gamma_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
)); ("metric", Wrap_utils.Option.map metric (function
| `Sigmoid -> Py.String.of_string "sigmoid"
| `Rbf -> Py.String.of_string "rbf"
| `Poly -> Py.String.of_string "poly"
| `Cosine -> Py.String.of_string "cosine"
| `Callable x -> Wrap_utils.id x
| `Polynomial -> Py.String.of_string "polynomial"
| `Chi2 -> Py.String.of_string "chi2"
| `Additive_chi2 -> Py.String.of_string "additive_chi2"
| `Laplacian -> Py.String.of_string "laplacian"
| `Linear -> Py.String.of_string "linear"
)); ("pairwise_kernels_kwargs", Wrap_utils.Option.map pairwise_kernels_kwargs Dict.to_pyobject)])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 Product = struct
type tag = [`Product]
type t = [`Object | `Product] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ~k1 ~k2 () =
Py.Module.get_function_with_keywords __wrap_namespace "Product"
[||]
(Wrap_utils.keyword_args [("k1", Some(k1 )); ("k2", Some(k2 ))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 RBF = struct
type tag = [`RBF]
type t = [`NormalizedKernelMixin | `Object | `RBF | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_normalized_kernel x = (x :> [`NormalizedKernelMixin] Obj.t)
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let create ?length_scale ?length_scale_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "RBF"
[||]
(Wrap_utils.keyword_args [("length_scale", Wrap_utils.Option.map length_scale Np.Obj.to_pyobject); ("length_scale_bounds", Wrap_utils.Option.map length_scale_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 RationalQuadratic = struct
type tag = [`RationalQuadratic]
type t = [`NormalizedKernelMixin | `Object | `RationalQuadratic | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_normalized_kernel x = (x :> [`NormalizedKernelMixin] Obj.t)
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let create ?length_scale ?alpha ?length_scale_bounds ?alpha_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "RationalQuadratic"
[||]
(Wrap_utils.keyword_args [("length_scale", Wrap_utils.Option.map length_scale Py.Float.of_float); ("alpha", Wrap_utils.Option.map alpha Py.Float.of_float); ("length_scale_bounds", Wrap_utils.Option.map length_scale_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
)); ("alpha_bounds", Wrap_utils.Option.map alpha_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 StationaryKernelMixin = struct
type tag = [`StationaryKernelMixin]
type t = [`Object | `StationaryKernelMixin] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create () =
Py.Module.get_function_with_keywords __wrap_namespace "StationaryKernelMixin"
[||]
[]
|> of_pyobject
let is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 Sum = struct
type tag = [`Sum]
type t = [`Object | `Sum] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let create ~k1 ~k2 () =
Py.Module.get_function_with_keywords __wrap_namespace "Sum"
[||]
(Wrap_utils.keyword_args [("k1", Some(k1 )); ("k2", Some(k2 ))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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 WhiteKernel = struct
type tag = [`WhiteKernel]
type t = [`GenericKernelMixin | `Object | `StationaryKernelMixin | `WhiteKernel] Obj.t
let of_pyobject x = ((Obj.of_pyobject x) : t)
let to_pyobject x = Obj.to_pyobject x
let as_stationary_kernel x = (x :> [`StationaryKernelMixin] Obj.t)
let as_generic_kernel x = (x :> [`GenericKernelMixin] Obj.t)
let create ?noise_level ?noise_level_bounds () =
Py.Module.get_function_with_keywords __wrap_namespace "WhiteKernel"
[||]
(Wrap_utils.keyword_args [("noise_level", Wrap_utils.Option.map noise_level Py.Float.of_float); ("noise_level_bounds", Wrap_utils.Option.map noise_level_bounds (function
| `Tuple x -> (fun (ml_0, ml_1) -> Py.Tuple.of_list [(Py.Float.of_float ml_0); (Py.Float.of_float ml_1)]) x
| `Fixed -> Py.String.of_string "fixed"
))])
|> of_pyobject
let clone_with_theta ~theta self =
Py.Module.get_function_with_keywords (to_pyobject self) "clone_with_theta"
[||]
(Wrap_utils.keyword_args [("theta", Some(theta |> Np.Obj.to_pyobject))])
let diag ~x self =
Py.Module.get_function_with_keywords (to_pyobject self) "diag"
[||]
(Wrap_utils.keyword_args [("X", Some(x |> (function
| `List_of_object x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject 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 is_stationary self =
Py.Module.get_function_with_keywords (to_pyobject self) "is_stationary"
[||]
[]
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
let abstractmethod funcobj =
Py.Module.get_function_with_keywords __wrap_namespace "abstractmethod"
[||]
(Wrap_utils.keyword_args [("funcobj", Some(funcobj ))])
let cdist ?metric ?kwargs ~xa ~xb args =
Py.Module.get_function_with_keywords __wrap_namespace "cdist"
(Array.of_list @@ List.concat [(List.map Wrap_utils.id args)])
(List.rev_append (Wrap_utils.keyword_args [("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("XA", Some(xa |> Np.Obj.to_pyobject)); ("XB", Some(xb |> Np.Obj.to_pyobject))]) (match kwargs with None -> [] | Some x -> x))
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let clone ?safe ~estimator () =
Py.Module.get_function_with_keywords __wrap_namespace "clone"
[||]
(Wrap_utils.keyword_args [("safe", Wrap_utils.Option.map safe Py.Bool.of_bool); ("estimator", Some(estimator |> Np.Obj.to_pyobject))])
let gamma ?out ?where ~x () =
Py.Module.get_function_with_keywords __wrap_namespace "gamma"
(Array.of_list @@ List.concat [[x ]])
(Wrap_utils.keyword_args [("out", out); ("where", where)])
let kv ?out ?where ~x () =
Py.Module.get_function_with_keywords __wrap_namespace "kv"
(Array.of_list @@ List.concat [[x ]])
(Wrap_utils.keyword_args [("out", out); ("where", where)])
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let namedtuple ?rename ?defaults ?module_ ~typename ~field_names () =
Py.Module.get_function_with_keywords __wrap_namespace "namedtuple"
[||]
(Wrap_utils.keyword_args [("rename", rename); ("defaults", defaults); ("module", module_); ("typename", Some(typename )); ("field_names", Some(field_names ))])
let pairwise_kernels ?y ?metric ?filter_params ?n_jobs ?kwds ~x () =
Py.Module.get_function_with_keywords __wrap_namespace "pairwise_kernels"
[||]
(List.rev_append (Wrap_utils.keyword_args [("Y", Wrap_utils.Option.map y Np.Obj.to_pyobject); ("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("filter_params", Wrap_utils.Option.map filter_params Py.Bool.of_bool); ("n_jobs", Wrap_utils.Option.map n_jobs Py.Int.of_int); ("X", Some(x |> (function
| `Otherwise x -> Wrap_utils.id x
| `Arr x -> Np.Obj.to_pyobject x
)))]) (match kwds with None -> [] | Some x -> x))
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let pdist ?metric ?kwargs ~x args =
Py.Module.get_function_with_keywords __wrap_namespace "pdist"
(Array.of_list @@ List.concat [(List.map Wrap_utils.id args)])
(List.rev_append (Wrap_utils.keyword_args [("metric", Wrap_utils.Option.map metric (function
| `S x -> Py.String.of_string x
| `Callable x -> Wrap_utils.id x
)); ("X", Some(x |> Np.Obj.to_pyobject))]) (match kwargs with None -> [] | Some x -> x))
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
let signature ?follow_wrapped ~obj () =
Py.Module.get_function_with_keywords __wrap_namespace "signature"
[||]
(Wrap_utils.keyword_args [("follow_wrapped", follow_wrapped); ("obj", Some(obj ))])
let squareform ?force ?checks ~x () =
Py.Module.get_function_with_keywords __wrap_namespace "squareform"
[||]
(Wrap_utils.keyword_args [("force", Wrap_utils.Option.map force Py.String.of_string); ("checks", Wrap_utils.Option.map checks Py.Bool.of_bool); ("X", Some(x |> Np.Obj.to_pyobject))])
|> (fun py -> (Np.Obj.of_pyobject py : [>`ArrayLike] Np.Obj.t))
end