forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature.pyi
More file actions
1635 lines (1555 loc) · 50.6 KB
/
Copy pathfeature.pyi
File metadata and controls
1635 lines (1555 loc) · 50.6 KB
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
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from typing import overload
from typing import Any, Dict, Generic, List, Optional, Tuple
from pyspark.ml._typing import JM, P
from pyspark.ml.param.shared import (
HasFeaturesCol,
HasHandleInvalid,
HasInputCol,
HasInputCols,
HasLabelCol,
HasMaxIter,
HasNumFeatures,
HasOutputCol,
HasOutputCols,
HasRelativeError,
HasSeed,
HasStepSize,
HasThreshold,
HasThresholds,
)
from pyspark.ml.util import JavaMLReadable, JavaMLWritable
from pyspark.ml.wrapper import JavaEstimator, JavaModel, JavaParams, JavaTransformer
from pyspark.ml.linalg import Vector, DenseVector, DenseMatrix
from pyspark.sql.dataframe import DataFrame
from pyspark.ml.param import Param
class Binarizer(
JavaTransformer,
HasThreshold,
HasThresholds,
HasInputCol,
HasOutputCol,
HasInputCols,
HasOutputCols,
JavaMLReadable[Binarizer],
JavaMLWritable,
):
threshold: Param[float]
thresholds: Param[List[float]]
@overload
def __init__(
self,
*,
threshold: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
@overload
def __init__(
self,
*,
thresholds: Optional[List[float]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> None: ...
@overload
def setParams(
self,
*,
threshold: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> Binarizer: ...
@overload
def setParams(
self,
*,
thresholds: Optional[List[float]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> Binarizer: ...
def setThreshold(self, value: float) -> Binarizer: ...
def setThresholds(self, value: List[float]) -> Binarizer: ...
def setInputCol(self, value: str) -> Binarizer: ...
def setInputCols(self, value: List[str]) -> Binarizer: ...
def setOutputCol(self, value: str) -> Binarizer: ...
def setOutputCols(self, value: List[str]) -> Binarizer: ...
class _LSHParams(HasInputCol, HasOutputCol):
numHashTables: Param[int]
def __init__(self, *args: Any): ...
def getNumHashTables(self) -> int: ...
class _LSH(Generic[JM], JavaEstimator[JM], _LSHParams, JavaMLReadable, JavaMLWritable):
def setNumHashTables(self: P, value: int) -> P: ...
def setInputCol(self: P, value: str) -> P: ...
def setOutputCol(self: P, value: str) -> P: ...
class _LSHModel(JavaModel, _LSHParams):
def setInputCol(self: P, value: str) -> P: ...
def setOutputCol(self: P, value: str) -> P: ...
def approxNearestNeighbors(
self,
dataset: DataFrame,
key: Vector,
numNearestNeighbors: int,
distCol: str = ...,
) -> DataFrame: ...
def approxSimilarityJoin(
self,
datasetA: DataFrame,
datasetB: DataFrame,
threshold: float,
distCol: str = ...,
) -> DataFrame: ...
class _BucketedRandomProjectionLSHParams:
bucketLength: Param[float]
def getBucketLength(self) -> float: ...
class BucketedRandomProjectionLSH(
_LSH[BucketedRandomProjectionLSHModel],
_LSHParams,
HasSeed,
JavaMLReadable[BucketedRandomProjectionLSH],
JavaMLWritable,
):
def __init__(
self,
*,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
seed: Optional[int] = ...,
numHashTables: int = ...,
bucketLength: Optional[float] = ...
) -> None: ...
def setParams(
self,
*,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
seed: Optional[int] = ...,
numHashTables: int = ...,
bucketLength: Optional[float] = ...
) -> BucketedRandomProjectionLSH: ...
def setBucketLength(self, value: float) -> BucketedRandomProjectionLSH: ...
def setSeed(self, value: int) -> BucketedRandomProjectionLSH: ...
class BucketedRandomProjectionLSHModel(
_LSHModel,
_BucketedRandomProjectionLSHParams,
JavaMLReadable[BucketedRandomProjectionLSHModel],
JavaMLWritable,
): ...
class Bucketizer(
JavaTransformer,
HasInputCol,
HasOutputCol,
HasInputCols,
HasOutputCols,
HasHandleInvalid,
JavaMLReadable[Bucketizer],
JavaMLWritable,
):
splits: Param[List[float]]
handleInvalid: Param[str]
splitsArray: Param[List[List[float]]]
@overload
def __init__(
self,
*,
splits: Optional[List[float]] = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
handleInvalid: str = ...
) -> None: ...
@overload
def __init__(
self,
*,
handleInvalid: str = ...,
splitsArray: Optional[List[List[float]]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> None: ...
@overload
def setParams(
self,
*,
splits: Optional[List[float]] = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
handleInvalid: str = ...
) -> Bucketizer: ...
@overload
def setParams(
self,
*,
handleInvalid: str = ...,
splitsArray: Optional[List[List[float]]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> Bucketizer: ...
def setSplits(self, value: List[float]) -> Bucketizer: ...
def getSplits(self) -> List[float]: ...
def setSplitsArray(self, value: List[List[float]]) -> Bucketizer: ...
def getSplitsArray(self) -> List[List[float]]: ...
def setInputCol(self, value: str) -> Bucketizer: ...
def setInputCols(self, value: List[str]) -> Bucketizer: ...
def setOutputCol(self, value: str) -> Bucketizer: ...
def setOutputCols(self, value: List[str]) -> Bucketizer: ...
def setHandleInvalid(self, value: str) -> Bucketizer: ...
class _CountVectorizerParams(JavaParams, HasInputCol, HasOutputCol):
minTF: Param[float]
minDF: Param[float]
maxDF: Param[float]
vocabSize: Param[int]
binary: Param[bool]
def __init__(self, *args: Any) -> None: ...
def getMinTF(self) -> float: ...
def getMinDF(self) -> float: ...
def getMaxDF(self) -> float: ...
def getVocabSize(self) -> int: ...
def getBinary(self) -> bool: ...
class CountVectorizer(
JavaEstimator[CountVectorizerModel],
_CountVectorizerParams,
JavaMLReadable[CountVectorizer],
JavaMLWritable,
):
def __init__(
self,
*,
minTF: float = ...,
minDF: float = ...,
maxDF: float = ...,
vocabSize: int = ...,
binary: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
minTF: float = ...,
minDF: float = ...,
maxDF: float = ...,
vocabSize: int = ...,
binary: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> CountVectorizer: ...
def setMinTF(self, value: float) -> CountVectorizer: ...
def setMinDF(self, value: float) -> CountVectorizer: ...
def setMaxDF(self, value: float) -> CountVectorizer: ...
def setVocabSize(self, value: int) -> CountVectorizer: ...
def setBinary(self, value: bool) -> CountVectorizer: ...
def setInputCol(self, value: str) -> CountVectorizer: ...
def setOutputCol(self, value: str) -> CountVectorizer: ...
class CountVectorizerModel(
JavaModel, JavaMLReadable[CountVectorizerModel], JavaMLWritable
):
def setInputCol(self, value: str) -> CountVectorizerModel: ...
def setOutputCol(self, value: str) -> CountVectorizerModel: ...
def setMinTF(self, value: float) -> CountVectorizerModel: ...
def setBinary(self, value: bool) -> CountVectorizerModel: ...
@classmethod
def from_vocabulary(
cls,
vocabulary: List[str],
inputCol: str,
outputCol: Optional[str] = ...,
minTF: Optional[float] = ...,
binary: Optional[bool] = ...,
) -> CountVectorizerModel: ...
@property
def vocabulary(self) -> List[str]: ...
class DCT(
JavaTransformer, HasInputCol, HasOutputCol, JavaMLReadable[DCT], JavaMLWritable
):
inverse: Param[bool]
def __init__(
self,
*,
inverse: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
inverse: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> DCT: ...
def setInverse(self, value: bool) -> DCT: ...
def getInverse(self) -> bool: ...
def setInputCol(self, value: str) -> DCT: ...
def setOutputCol(self, value: str) -> DCT: ...
class ElementwiseProduct(
JavaTransformer,
HasInputCol,
HasOutputCol,
JavaMLReadable[ElementwiseProduct],
JavaMLWritable,
):
scalingVec: Param[Vector]
def __init__(
self,
*,
scalingVec: Optional[Vector] = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
scalingVec: Optional[Vector] = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> ElementwiseProduct: ...
def setScalingVec(self, value: Vector) -> ElementwiseProduct: ...
def getScalingVec(self) -> Vector: ...
def setInputCol(self, value: str) -> ElementwiseProduct: ...
def setOutputCol(self, value: str) -> ElementwiseProduct: ...
class FeatureHasher(
JavaTransformer,
HasInputCols,
HasOutputCol,
HasNumFeatures,
JavaMLReadable[FeatureHasher],
JavaMLWritable,
):
categoricalCols: Param[List[str]]
def __init__(
self,
*,
numFeatures: int = ...,
inputCols: Optional[List[str]] = ...,
outputCol: Optional[str] = ...,
categoricalCols: Optional[List[str]] = ...
) -> None: ...
def setParams(
self,
*,
numFeatures: int = ...,
inputCols: Optional[List[str]] = ...,
outputCol: Optional[str] = ...,
categoricalCols: Optional[List[str]] = ...
) -> FeatureHasher: ...
def setCategoricalCols(self, value: List[str]) -> FeatureHasher: ...
def getCategoricalCols(self) -> List[str]: ...
def setInputCols(self, value: List[str]) -> FeatureHasher: ...
def setOutputCol(self, value: str) -> FeatureHasher: ...
def setNumFeatures(self, value: int) -> FeatureHasher: ...
class HashingTF(
JavaTransformer,
HasInputCol,
HasOutputCol,
HasNumFeatures,
JavaMLReadable[HashingTF],
JavaMLWritable,
):
binary: Param[bool]
def __init__(
self,
*,
numFeatures: int = ...,
binary: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
numFeatures: int = ...,
binary: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> HashingTF: ...
def setBinary(self, value: bool) -> HashingTF: ...
def getBinary(self) -> bool: ...
def setInputCol(self, value: str) -> HashingTF: ...
def setOutputCol(self, value: str) -> HashingTF: ...
def setNumFeatures(self, value: int) -> HashingTF: ...
def indexOf(self, term: Any) -> int: ...
class _IDFParams(HasInputCol, HasOutputCol):
minDocFreq: Param[int]
def __init__(self, *args: Any): ...
def getMinDocFreq(self) -> int: ...
class IDF(JavaEstimator[IDFModel], _IDFParams, JavaMLReadable[IDF], JavaMLWritable):
def __init__(
self,
*,
minDocFreq: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
minDocFreq: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> IDF: ...
def setMinDocFreq(self, value: int) -> IDF: ...
def setInputCol(self, value: str) -> IDF: ...
def setOutputCol(self, value: str) -> IDF: ...
class IDFModel(JavaModel, _IDFParams, JavaMLReadable[IDFModel], JavaMLWritable):
def setInputCol(self, value: str) -> IDFModel: ...
def setOutputCol(self, value: str) -> IDFModel: ...
@property
def idf(self) -> Vector: ...
@property
def docFreq(self) -> List[int]: ...
@property
def numDocs(self) -> int: ...
class _ImputerParams(
HasInputCol, HasInputCols, HasOutputCol, HasOutputCols, HasRelativeError
):
strategy: Param[str]
missingValue: Param[float]
def getStrategy(self) -> str: ...
def getMissingValue(self) -> float: ...
class Imputer(
JavaEstimator[ImputerModel], _ImputerParams, JavaMLReadable[Imputer], JavaMLWritable
):
@overload
def __init__(
self,
*,
strategy: str = ...,
missingValue: float = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...,
relativeError: float = ...
) -> None: ...
@overload
def __init__(
self,
*,
strategy: str = ...,
missingValue: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
relativeError: float = ...
) -> None: ...
@overload
def setParams(
self,
*,
strategy: str = ...,
missingValue: float = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...,
relativeError: float = ...
) -> Imputer: ...
@overload
def setParams(
self,
*,
strategy: str = ...,
missingValue: float = ...,
inputCol: Optional[str] = ...,
outputCols: Optional[str] = ...,
relativeError: float = ...
) -> Imputer: ...
def setStrategy(self, value: str) -> Imputer: ...
def setMissingValue(self, value: float) -> Imputer: ...
def setInputCols(self, value: List[str]) -> Imputer: ...
def setOutputCols(self, value: List[str]) -> Imputer: ...
def setInputCol(self, value: str) -> Imputer: ...
def setOutputCol(self, value: str) -> Imputer: ...
def setRelativeError(self, value: float) -> Imputer: ...
class ImputerModel(
JavaModel, _ImputerParams, JavaMLReadable[ImputerModel], JavaMLWritable
):
def setInputCols(self, value: List[str]) -> ImputerModel: ...
def setOutputCols(self, value: List[str]) -> ImputerModel: ...
def setInputCol(self, value: str) -> ImputerModel: ...
def setOutputCol(self, value: str) -> ImputerModel: ...
@property
def surrogateDF(self) -> DataFrame: ...
class Interaction(
JavaTransformer,
HasInputCols,
HasOutputCol,
JavaMLReadable[Interaction],
JavaMLWritable,
):
def __init__(
self, *, inputCols: Optional[List[str]] = ..., outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self, *, inputCols: Optional[List[str]] = ..., outputCol: Optional[str] = ...
) -> Interaction: ...
def setInputCols(self, value: List[str]) -> Interaction: ...
def setOutputCol(self, value: str) -> Interaction: ...
class _MaxAbsScalerParams(HasInputCol, HasOutputCol): ...
class MaxAbsScaler(
JavaEstimator[MaxAbsScalerModel],
_MaxAbsScalerParams,
JavaMLReadable[MaxAbsScaler],
JavaMLWritable,
):
def __init__(
self, *, inputCol: Optional[str] = ..., outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self, *, inputCol: Optional[str] = ..., outputCol: Optional[str] = ...
) -> MaxAbsScaler: ...
def setInputCol(self, value: str) -> MaxAbsScaler: ...
def setOutputCol(self, value: str) -> MaxAbsScaler: ...
class MaxAbsScalerModel(
JavaModel, _MaxAbsScalerParams, JavaMLReadable[MaxAbsScalerModel], JavaMLWritable
):
def setInputCol(self, value: str) -> MaxAbsScalerModel: ...
def setOutputCol(self, value: str) -> MaxAbsScalerModel: ...
@property
def maxAbs(self) -> Vector: ...
class MinHashLSH(
_LSH[MinHashLSHModel],
HasInputCol,
HasOutputCol,
HasSeed,
JavaMLReadable[MinHashLSH],
JavaMLWritable,
):
def __init__(
self,
*,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
seed: Optional[int] = ...,
numHashTables: int = ...
) -> None: ...
def setParams(
self,
*,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
seed: Optional[int] = ...,
numHashTables: int = ...
) -> MinHashLSH: ...
def setSeed(self, value: int) -> MinHashLSH: ...
class MinHashLSHModel(_LSHModel, JavaMLReadable[MinHashLSHModel], JavaMLWritable): ...
class _MinMaxScalerParams(HasInputCol, HasOutputCol):
min: Param[float]
max: Param[float]
def __init__(self, *args: Any): ...
def getMin(self) -> float: ...
def getMax(self) -> float: ...
class MinMaxScaler(
JavaEstimator[MinMaxScalerModel],
_MinMaxScalerParams,
JavaMLReadable[MinMaxScaler],
JavaMLWritable,
):
def __init__(
self,
*,
min: float = ...,
max: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
min: float = ...,
max: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> MinMaxScaler: ...
def setMin(self, value: float) -> MinMaxScaler: ...
def setMax(self, value: float) -> MinMaxScaler: ...
def setInputCol(self, value: str) -> MinMaxScaler: ...
def setOutputCol(self, value: str) -> MinMaxScaler: ...
class MinMaxScalerModel(
JavaModel, _MinMaxScalerParams, JavaMLReadable[MinMaxScalerModel], JavaMLWritable
):
def setInputCol(self, value: str) -> MinMaxScalerModel: ...
def setOutputCol(self, value: str) -> MinMaxScalerModel: ...
def setMin(self, value: float) -> MinMaxScalerModel: ...
def setMax(self, value: float) -> MinMaxScalerModel: ...
@property
def originalMin(self) -> Vector: ...
@property
def originalMax(self) -> Vector: ...
class NGram(
JavaTransformer, HasInputCol, HasOutputCol, JavaMLReadable[NGram], JavaMLWritable
):
n: Param[int]
def __init__(
self,
*,
n: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
n: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> NGram: ...
def setN(self, value: int) -> NGram: ...
def getN(self) -> int: ...
def setInputCol(self, value: str) -> NGram: ...
def setOutputCol(self, value: str) -> NGram: ...
class Normalizer(
JavaTransformer,
HasInputCol,
HasOutputCol,
JavaMLReadable[Normalizer],
JavaMLWritable,
):
p: Param[float]
def __init__(
self,
*,
p: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
p: float = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> Normalizer: ...
def setP(self, value: float) -> Normalizer: ...
def getP(self) -> float: ...
def setInputCol(self, value: str) -> Normalizer: ...
def setOutputCol(self, value: str) -> Normalizer: ...
class _OneHotEncoderParams(HasInputCols, HasOutputCols, HasHandleInvalid):
handleInvalid: Param[str]
dropLast: Param[bool]
def __init__(self, *args: Any): ...
def getDropLast(self) -> bool: ...
class OneHotEncoder(
JavaEstimator[OneHotEncoderModel],
_OneHotEncoderParams,
JavaMLReadable[OneHotEncoder],
JavaMLWritable,
):
@overload
def __init__(
self,
*,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...,
handleInvalid: str = ...,
dropLast: bool = ...
) -> None: ...
@overload
def __init__(
self,
*,
handleInvalid: str = ...,
dropLast: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
@overload
def setParams(
self,
*,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...,
handleInvalid: str = ...,
dropLast: bool = ...
) -> OneHotEncoder: ...
@overload
def setParams(
self,
*,
handleInvalid: str = ...,
dropLast: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> OneHotEncoder: ...
def setDropLast(self, value: bool) -> OneHotEncoder: ...
def setInputCols(self, value: List[str]) -> OneHotEncoder: ...
def setOutputCols(self, value: List[str]) -> OneHotEncoder: ...
def setHandleInvalid(self, value: str) -> OneHotEncoder: ...
def setInputCol(self, value: str) -> OneHotEncoder: ...
def setOutputCol(self, value: str) -> OneHotEncoder: ...
class OneHotEncoderModel(
JavaModel, _OneHotEncoderParams, JavaMLReadable[OneHotEncoderModel], JavaMLWritable
):
def setDropLast(self, value: bool) -> OneHotEncoderModel: ...
def setInputCols(self, value: List[str]) -> OneHotEncoderModel: ...
def setOutputCols(self, value: List[str]) -> OneHotEncoderModel: ...
def setInputCol(self, value: str) -> OneHotEncoderModel: ...
def setOutputCol(self, value: str) -> OneHotEncoderModel: ...
def setHandleInvalid(self, value: str) -> OneHotEncoderModel: ...
@property
def categorySizes(self) -> List[int]: ...
class PolynomialExpansion(
JavaTransformer,
HasInputCol,
HasOutputCol,
JavaMLReadable[PolynomialExpansion],
JavaMLWritable,
):
degree: Param[int]
def __init__(
self,
*,
degree: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
degree: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> PolynomialExpansion: ...
def setDegree(self, value: int) -> PolynomialExpansion: ...
def getDegree(self) -> int: ...
def setInputCol(self, value: str) -> PolynomialExpansion: ...
def setOutputCol(self, value: str) -> PolynomialExpansion: ...
class QuantileDiscretizer(
JavaEstimator[Bucketizer],
HasInputCol,
HasOutputCol,
HasInputCols,
HasOutputCols,
HasHandleInvalid,
HasRelativeError,
JavaMLReadable[QuantileDiscretizer],
JavaMLWritable,
):
numBuckets: Param[int]
handleInvalid: Param[str]
numBucketsArray: Param[List[int]]
@overload
def __init__(
self,
*,
numBuckets: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
relativeError: float = ...,
handleInvalid: str = ...
) -> None: ...
@overload
def __init__(
self,
*,
relativeError: float = ...,
handleInvalid: str = ...,
numBucketsArray: Optional[List[int]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> None: ...
@overload
def setParams(
self,
*,
numBuckets: int = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
relativeError: float = ...,
handleInvalid: str = ...
) -> QuantileDiscretizer: ...
@overload
def setParams(
self,
*,
relativeError: float = ...,
handleInvalid: str = ...,
numBucketsArray: Optional[List[int]] = ...,
inputCols: Optional[List[str]] = ...,
outputCols: Optional[List[str]] = ...
) -> QuantileDiscretizer: ...
def setNumBuckets(self, value: int) -> QuantileDiscretizer: ...
def getNumBuckets(self) -> int: ...
def setNumBucketsArray(self, value: List[int]) -> QuantileDiscretizer: ...
def getNumBucketsArray(self) -> List[int]: ...
def setRelativeError(self, value: float) -> QuantileDiscretizer: ...
def setInputCol(self, value: str) -> QuantileDiscretizer: ...
def setInputCols(self, value: List[str]) -> QuantileDiscretizer: ...
def setOutputCol(self, value: str) -> QuantileDiscretizer: ...
def setOutputCols(self, value: List[str]) -> QuantileDiscretizer: ...
def setHandleInvalid(self, value: str) -> QuantileDiscretizer: ...
class _RobustScalerParams(HasInputCol, HasOutputCol, HasRelativeError):
lower: Param[float]
upper: Param[float]
withCentering: Param[bool]
withScaling: Param[bool]
def __init__(self, *args: Any): ...
def getLower(self) -> float: ...
def getUpper(self) -> float: ...
def getWithCentering(self) -> bool: ...
def getWithScaling(self) -> bool: ...
class RobustScaler(
JavaEstimator, _RobustScalerParams, JavaMLReadable[RobustScaler], JavaMLWritable
):
def __init__(
self,
*,
lower: float = ...,
upper: float = ...,
withCentering: bool = ...,
withScaling: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
relativeError: float = ...
) -> None: ...
def setParams(
self,
*,
lower: float = ...,
upper: float = ...,
withCentering: bool = ...,
withScaling: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
relativeError: float = ...
) -> RobustScaler: ...
def setLower(self, value: float) -> RobustScaler: ...
def setUpper(self, value: float) -> RobustScaler: ...
def setWithCentering(self, value: bool) -> RobustScaler: ...
def setWithScaling(self, value: bool) -> RobustScaler: ...
def setInputCol(self, value: str) -> RobustScaler: ...
def setOutputCol(self, value: str) -> RobustScaler: ...
def setRelativeError(self, value: float) -> RobustScaler: ...
class RobustScalerModel(
JavaModel, _RobustScalerParams, JavaMLReadable[RobustScalerModel], JavaMLWritable
):
def setInputCol(self, value: str) -> RobustScalerModel: ...
def setOutputCol(self, value: str) -> RobustScalerModel: ...
@property
def median(self) -> Vector: ...
@property
def range(self) -> Vector: ...
class RegexTokenizer(
JavaTransformer,
HasInputCol,
HasOutputCol,
JavaMLReadable[RegexTokenizer],
JavaMLWritable,
):
minTokenLength: Param[int]
gaps: Param[bool]
pattern: Param[str]
toLowercase: Param[bool]
def __init__(
self,
*,
minTokenLength: int = ...,
gaps: bool = ...,
pattern: str = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
toLowercase: bool = ...
) -> None: ...
def setParams(
self,
*,
minTokenLength: int = ...,
gaps: bool = ...,
pattern: str = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,
toLowercase: bool = ...
) -> RegexTokenizer: ...
def setMinTokenLength(self, value: int) -> RegexTokenizer: ...
def getMinTokenLength(self) -> int: ...
def setGaps(self, value: bool) -> RegexTokenizer: ...
def getGaps(self) -> bool: ...
def setPattern(self, value: str) -> RegexTokenizer: ...
def getPattern(self) -> str: ...
def setToLowercase(self, value: bool) -> RegexTokenizer: ...
def getToLowercase(self) -> bool: ...
def setInputCol(self, value: str) -> RegexTokenizer: ...
def setOutputCol(self, value: str) -> RegexTokenizer: ...
class SQLTransformer(JavaTransformer, JavaMLReadable[SQLTransformer], JavaMLWritable):
statement: Param[str]
def __init__(self, *, statement: Optional[str] = ...) -> None: ...
def setParams(self, *, statement: Optional[str] = ...) -> SQLTransformer: ...
def setStatement(self, value: str) -> SQLTransformer: ...
def getStatement(self) -> str: ...
class _StandardScalerParams(HasInputCol, HasOutputCol):
withMean: Param[bool]
withStd: Param[bool]
def __init__(self, *args: Any): ...
def getWithMean(self) -> bool: ...
def getWithStd(self) -> bool: ...
class StandardScaler(
JavaEstimator[StandardScalerModel],
_StandardScalerParams,
JavaMLReadable[StandardScaler],
JavaMLWritable,
):
def __init__(
self,
*,
withMean: bool = ...,
withStd: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
withMean: bool = ...,
withStd: bool = ...,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...
) -> StandardScaler: ...
def setWithMean(self, value: bool) -> StandardScaler: ...
def setWithStd(self, value: bool) -> StandardScaler: ...
def setInputCol(self, value: str) -> StandardScaler: ...
def setOutputCol(self, value: str) -> StandardScaler: ...
class StandardScalerModel(
JavaModel,
_StandardScalerParams,
JavaMLReadable[StandardScalerModel],
JavaMLWritable,
):
def setInputCol(self, value: str) -> StandardScalerModel: ...
def setOutputCol(self, value: str) -> StandardScalerModel: ...
@property
def std(self) -> Vector: ...
@property
def mean(self) -> Vector: ...
class _StringIndexerParams(
JavaParams, HasHandleInvalid, HasInputCol, HasOutputCol, HasInputCols, HasOutputCols
):
stringOrderType: Param[str]
handleInvalid: Param[str]
def __init__(self, *args: Any) -> None: ...
def getStringOrderType(self) -> str: ...
class StringIndexer(
JavaEstimator[StringIndexerModel],
_StringIndexerParams,
JavaMLReadable[StringIndexer],
JavaMLWritable,
):
@overload
def __init__(
self,
*,
inputCol: Optional[str] = ...,
outputCol: Optional[str] = ...,