Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The load_model function fails at the time of loading a NaiveBayes model #672

Closed
afard opened this issue Jul 20, 2023 · 0 comments · Fixed by #784
Closed

The load_model function fails at the time of loading a NaiveBayes model #672

afard opened this issue Jul 20, 2023 · 0 comments · Fixed by #784
Labels
Bug Something isn't working.

Comments

@afard
Copy link
Collaborator

afard commented Jul 20, 2023

Here is the reproducer:

from verticapy.machine_learning.vertica.model_management import load_model
from verticapy.datasets import load_iris
from verticapy.learn.naive_bayes import NaiveBayes

iris_vd = load_iris()
model = NaiveBayes("test_model")
model.fit(iris_vd, ["SepalLengthCm", "SepalWidthCm", "PetalLengthCm", "PetalWidthCm"], "Species")

new_model = load_model("test_model")

@afard afard added the Bug Something isn't working. label Jul 20, 2023
@oualib oualib linked a pull request Oct 29, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant