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

Error in cross_val KFold #2

Open
davidspek opened this issue Nov 28, 2020 · 0 comments
Open

Error in cross_val KFold #2

davidspek opened this issue Nov 28, 2020 · 0 comments

Comments

@davidspek
Copy link

It seems I have found an issue in cross_val.KFold. In the following line, there is an or statement with both statements being exactly the same.

if model_i.__name__ == "cimcb.model.NN_SigmoidSigmoid" or model_i.__name__ == "cimcb.model.NN_SigmoidSigmoid":

It would seem that the second statement should be: model_i.__name__ == "cimcb.model.NN_LinearSigmoid" just like in the following lines.

if model_i.__name__ == "cimcb.model.NN_SigmoidSigmoid" or model_i.__name__ == "cimcb.model.NN_LinearSigmoid":

if model_i.__name__ == "cimcb.model.NN_SigmoidSigmoid" or model_i.__name__ == "cimcb.model.NN_LinearSigmoid":

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant