You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> model, X, y, fit_args = pickle.load(open("debug.pkl", "rb"))
>>> model.fit(X, y, **fit_args)
ValueError: Target column for binomial problem cannot contain more than two labels
>>> model, X, y, fit_args = pickle.load(open("debug.pkl", "rb"))
>>> model.fit(X, y, **fit_args)
FtrlFitOutput(epoch=1.3996499781236327, loss=0.4652366042137146)
>>> model, X, y, fit_args = pickle.load(open("debug.pkl", "rb"))
>>> model.fit(X, y, **fit_args)
FtrlFitOutput(epoch=1.3996499781236327, loss=0.4652366042137146)
>>> model, X, y, fit_args = pickle.load(open("debug.pkl", "rb"))
>>> model.fit(X, y, **fit_args)
ValueError: Target column for binomial problem cannot contain more than two labels
The text was updated successfully, but these errors were encountered:
arnocandel
added
the
bug
Any bugs / errors in datatable; however for severe bugs use [segfault] label
label
Jun 28, 2019
…ls (#1892)
For binomial problem number of labels should be less or equal to two. This check should only be performed when a new label is encountered in the target column. When running label encoding in parallel, we now do the check making sure the label was not added from another thread.
Closes#1891
0.8.0.dev91
debug.pkl.zip
The text was updated successfully, but these errors were encountered: