-
Notifications
You must be signed in to change notification settings - Fork 283
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
How can I apply the equation to make binary classification #226
Comments
you might consider using the output of the equation as an input to an activation function, a sigmoid for example will therefore create a logistic regression classifier. |
Thank you for your response. Since it is a classifier, can not we learn it again to find a threshold values for the output equation based image so that it makes binary classification ? It would be much applicable if the SymbolicClassifier learns to output the equation like it. |
https://gplearn.readthedocs.io/en/stable/intro.html#classification a sigmoid is used by default to transform the output |
yes sigmoid has been used to classify the data. However, my requirement is to get equation from |
Yes, it's possible to add the sigmoid to the representation printed on the screen. I can put this in the long-overdue next release. |
I think it makes sense to do it, thanks for the report |
I have a question about SymbolicClassifier. The resulting equation is like,
x2/x1 + x3- x5
. How can I apply the equation to make binary classification ? My goal is to make binary classification on my data.The text was updated successfully, but these errors were encountered: