Model.deploySQL¶
In [ ]:
Model.deploySQL()
Returns the SQL code needed to deploy the model.
Returns¶
str : the SQL code needed to deploy the model.
Example¶
In [1]:
from verticapy.learn.preprocessing import CountVectorizer
model = CountVectorizer(name = "public.cv_titanic")
model.fit("public.titanic", ["name",])
display(model.deploySQL())
