Loading...

verticapy.machine_learning.vertica.tree.DummyTreeClassifier.predict_proba

DummyTreeClassifier.predict_proba(vdf: Annotated[str | vDataFrame, ''], X: Annotated[str | list[str], 'STRING representing one column or a list of columns'] | None = None, name: str | None = None, pos_label: Annotated[bool | float | str | timedelta | datetime, 'Python Scalar'] | None = None, inplace: bool = True) vDataFrame

Returns the model’s probabilities using the input relation.

Parameters

vdf: SQLRelation

Object used to run the prediction. You can also specify a customized relation, but you must enclose it with an alias. For example, (SELECT 1) x is valid, whereas (SELECT 1) and “SELECT 1” are invalid.

X: SQLColumns, optional

List of the columns used to deploy the models. If empty, the model predictors are used.

name: str, optional

Name of the added vDataColumn. If empty, a name is generated.

pos_label: PythonScalar, optional

Class label. For binary classification, this can be either 1 or 0.

inplace: bool, optional

If set to True, the prediction is added to the vDataFrame.

Returns

vDataFrame

the input object.

Examples

For this example, we will use the Iris dataset.

import verticapy.datasets as vpd

data = vpd.load_iris()

train, test = data.train_test_split(test_size = 0.2)
123
SepalLengthCm
Numeric(7)
123
SepalWidthCm
Numeric(7)
123
PetalLengthCm
Numeric(7)
123
PetalWidthCm
Numeric(7)
Abc
Species
Varchar(30)
13.34.55.67.8Iris-setosa
23.34.55.67.8Iris-setosa
33.34.55.67.8Iris-setosa
43.34.55.67.8Iris-setosa
53.34.55.67.8Iris-setosa
63.34.55.67.8Iris-setosa
73.34.55.67.8Iris-setosa
83.34.55.67.8Iris-setosa
93.34.55.67.8Iris-setosa
103.34.55.67.8Iris-setosa
113.34.55.67.8Iris-setosa
123.34.55.67.8Iris-setosa
133.34.55.67.8Iris-setosa
143.34.55.67.8Iris-setosa
153.34.55.67.8Iris-setosa
163.34.55.67.8Iris-setosa
173.34.55.67.8Iris-setosa
183.34.55.67.8Iris-setosa
193.34.55.67.8Iris-setosa
203.34.55.67.8Iris-setosa
213.34.55.67.8Iris-setosa
223.34.55.67.8Iris-setosa
233.34.55.67.8Iris-setosa
243.34.55.67.8Iris-setosa
253.34.55.67.8Iris-setosa
263.34.55.67.8Iris-setosa
274.33.01.10.1Iris-setosa
284.34.79.61.8Iris-virginica
294.34.79.61.8Iris-virginica
304.34.79.61.8Iris-virginica
314.34.79.61.8Iris-virginica
324.34.79.61.8Iris-virginica
334.34.79.61.8Iris-virginica
344.34.79.61.8Iris-virginica
354.34.79.61.8Iris-virginica
364.34.79.61.8Iris-virginica
374.34.79.61.8Iris-virginica
384.34.79.61.8Iris-virginica
394.34.79.61.8Iris-virginica
404.34.79.61.8Iris-virginica
414.34.79.61.8Iris-virginica
424.34.79.61.8Iris-virginica
434.34.79.61.8Iris-virginica
444.34.79.61.8Iris-virginica
454.34.79.61.8Iris-virginica
464.34.79.61.8Iris-virginica
474.34.79.61.8Iris-virginica
484.34.79.61.8Iris-virginica
494.34.79.61.8Iris-virginica
504.34.79.61.8Iris-virginica
514.34.79.61.8Iris-virginica
524.34.79.61.8Iris-virginica
534.34.79.61.8Iris-virginica
544.42.91.40.2Iris-setosa
554.43.01.30.2Iris-setosa
564.43.21.30.2Iris-setosa
574.52.31.30.3Iris-setosa
584.63.11.50.2Iris-setosa
594.63.21.40.2Iris-setosa
604.63.41.40.3Iris-setosa
614.63.61.00.2Iris-setosa
624.73.21.30.2Iris-setosa
634.73.21.60.2Iris-setosa
644.83.01.40.1Iris-setosa
654.83.01.40.3Iris-setosa
664.83.11.60.2Iris-setosa
674.83.41.60.2Iris-setosa
684.83.41.90.2Iris-setosa
694.92.43.31.0Iris-versicolor
704.92.54.51.7Iris-virginica
714.93.01.40.2Iris-setosa
724.93.11.50.1Iris-setosa
734.93.11.50.1Iris-setosa
744.93.11.50.1Iris-setosa
755.02.03.51.0Iris-versicolor
765.02.33.31.0Iris-versicolor
775.03.01.60.2Iris-setosa
785.03.21.20.2Iris-setosa
795.03.31.40.2Iris-setosa
805.03.41.50.2Iris-setosa
815.03.41.60.4Iris-setosa
825.03.51.30.3Iris-setosa
835.03.51.60.6Iris-setosa
845.03.61.40.2Iris-setosa
855.12.53.01.1Iris-versicolor
865.13.31.70.5Iris-setosa
875.13.41.50.2Iris-setosa
885.13.51.40.2Iris-setosa
895.13.51.40.3Iris-setosa
905.13.71.50.4Iris-setosa
915.13.81.50.3Iris-setosa
925.13.81.60.2Iris-setosa
935.13.81.90.4Iris-setosa
945.22.73.91.4Iris-versicolor
955.23.41.40.2Iris-setosa
965.23.51.50.2Iris-setosa
975.24.11.50.1Iris-setosa
985.33.71.50.2Iris-setosa
995.43.04.51.5Iris-versicolor
1005.43.41.50.4Iris-setosa
Rows: 1-100 | Columns: 5

Let’s import the model:

from verticapy.machine_learning.vertica import NearestCentroid

Then we can create the model:

model = NearestCentroid(p = 2)

We can now fit the model:

model.fit(
    train,
    [
        "SepalLengthCm",
        "SepalWidthCm",
        "PetalLengthCm",
        "PetalWidthCm",
    ],
    "Species",
    test,
)

We can then get the prediction:

model.predict_proba(test, name = "prediction"
123
SepalLengthCm
Numeric(7)
123
SepalWidthCm
Numeric(7)
123
PetalLengthCm
Numeric(7)
123
PetalWidthCm
Numeric(7)
Abc
Species
Varchar(30)
123
prediction_irissetosa
Float(22)
123
prediction_irisversicolor
Float(22)
123
prediction_irisvirginica
Float(22)
13.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
23.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
33.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
43.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
53.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
63.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
74.33.01.10.1Iris-setosa0.3999938811610670.3813951511737710.218610967665162
84.34.79.61.8Iris-virginica0.2163300308370120.2485434043240070.53512656483898
94.34.79.61.8Iris-virginica0.2163300308370120.2485434043240070.53512656483898
104.34.79.61.8Iris-virginica0.2163300308370120.2485434043240070.53512656483898
114.34.79.61.8Iris-virginica0.2163300308370120.2485434043240070.53512656483898
124.83.41.90.2Iris-setosa0.3833605911148030.407194292169860.209445116715337
134.92.43.31.0Iris-versicolor0.3062226856501370.5135436816480680.180233632701796
145.03.21.20.2Iris-setosa0.3900279287770950.3962167634998750.21375530772303
155.03.41.50.2Iris-setosa0.3874833399076270.4008795328613190.211637127231054
165.12.53.01.1Iris-versicolor0.3233162979330520.5018759552194560.174807746847491
175.13.51.40.2Iris-setosa0.3884779057872020.3987151642176530.212806929995144
185.13.81.90.4Iris-setosa0.3906002006840640.4029480783709880.206451720944948
195.22.73.91.4Iris-versicolor0.2298649952579070.6219309958117020.14820400893039
205.52.54.01.3Iris-versicolor0.1654894042563910.7123332642357820.122177331507827
215.53.51.30.2Iris-setosa0.3794665710960190.406000277684990.214533151218991
225.62.74.21.3Iris-versicolor0.1139423217709280.7946255010967550.0914321771323165
235.72.55.02.0Iris-virginica0.2016248121258440.5768807031455730.221494484728583
245.72.63.51.0Iris-versicolor0.213512769012680.6414322040435320.145055026943788
255.72.94.21.3Iris-versicolor0.09715687955622590.8244911018040990.0783520186396753
265.82.85.12.4Iris-virginica0.2366563071897750.4987656965924180.264577996217807
276.12.65.61.4Iris-virginica0.1802251514011020.5173269414497730.302447907149125
286.22.94.31.3Iris-versicolor0.07675719866354020.8532751817912660.0699676195451932
296.23.45.42.3Iris-virginica0.2259929439825280.4427652956015170.331241760415954
306.33.45.62.4Iris-virginica0.2231364506377080.4085924832143780.368271066147914
316.42.85.62.2Iris-virginica0.2071415454783130.4573665055140630.335491949007624
326.53.05.51.8Iris-virginica0.1921989540100050.4959447039025630.311856342087433
336.53.05.82.2Iris-virginica0.2041602568384560.4171553821320210.378684361029523
346.53.25.12.0Iris-virginica0.2042084305360170.5338697156876810.261921853776302
356.72.55.81.8Iris-virginica0.195958441781490.4581230788745650.345918479343946
366.73.05.01.7Iris-versicolor0.1842898453692540.5832362783191670.232473876311579
376.73.14.41.4Iris-versicolor0.1658768581589010.6688134813445480.165309660496551
386.93.14.91.5Iris-versicolor0.1873187059841070.5809651500961120.231716143919781
396.93.15.42.1Iris-virginica0.2123071726669050.4721814592533570.315511368079738
407.23.66.12.5Iris-virginica0.218549135357330.3557334309881330.425717433654537
417.73.86.72.2Iris-virginica0.2095683022700480.3260860962279760.464345601501977
427.93.86.42.0Iris-virginica0.2182413066549490.3529472894583220.42881140388673
433.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
443.34.55.67.8Iris-setosa0.3862219009172260.2909083573648650.322869741717909
Rows: 1-44 | Columns: 8

Important

For this example, a specific model is utilized, and it may not correspond exactly to the model you are working with. To see a comprehensive example specific to your class of interest, please refer to that particular class.