Loading...

verticapy.machine_learning.vertica.linear_model.LogisticRegression.to_pmml

LogisticRegression.to_pmml(path: str)

Exports the model to PMML.

Parameters

path: str

Absolute path of an output directory to store the exported models.

Warning

This function operates solely on the server side and is not accessible locally. The path provided should match the location where the file(s) will be exported on the server.

Returns

bool

True if the model was successfully exported.

Examples

Let’s consider we’ve fitted a Vertica model model.

You can export it easily to PMML by using:

model.to_pmml(path = 'server_location')

Warning

This function operates solely on the server side and is not accessible locally.