Hi People,
I am using Eureka to predict binary outputs of 1 and 0.
Do you know the best way I can get Eureka (Desktop or API version) to understand I want my model to be wrong < 20% of the time?
The Error Metric would be calculated as such:
PercentWrong_Error = w/(c+w)
Where
-w is the number of times y=f(x,w) is false
-c is the number of times y=f(x,w) is true
--
You received this message because you are subscribed to the Google Groups "Eureqa Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to eureqa-group...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
My reply to Michael -
Ok, I will try both "if( y == f(x,t), 0, 1) = 0" and "if( abs(y - f(x,t)) < 0.1, 0, 1) = 0" in the Target Expression but where do I select the option to maximize or minimize the value of the function?