F1 score is harder to misrepresent, and relates more closely to business objectives. MSE is mostly for regression. Log-loss is very useful for training because it represents a useful signal for how well your model is progressing in fitting the data, but you'll still want to evaluate precision and recall.
In practice you'll usually want to tune the tradeoff between precision and recall for the situation. This way you can make a direct connection between model performance and the costs and benefits as they manifest in practice, as well as your tolerance for risk.
Given that this is fraud prevention, the correct error function should be measured in dollars. The thing you want to minimise is money lost.
Is the cost of allowing a fraudulent transaction through much greater than the cost of blocking a non-fraudulent transaction? Then the error function should reflect that. Minimising F1/accuracy/log-loss is not necessarily going to save the most money.
It has no neural network. It is a simulated annealing search over a solution space of symbolic equations. The traditional strategy is to use a genetic algorithm to construct symbolic equations. I don't see any proof that this product provides any improvement over the open source tools that are available for free.
This seems like a guaranteed recipe for overfitting. You’re searching over an enormous space of analytic functions and reporting fits without (as far as I can tell) any regularization penalty on model complexity or validation on holdout data. Your model will fit well to any data you throw at it under those conditions, and the result is very unlikely to generalize.
I’m sorry if I’ve grossly misunderstood what you’re doing here, but trying to sell this method in a GUI tool (making it usable by people without a background in statistics) seems almost negligent.
The previous submission on "Machine learning prediction of the coronavirus outbreak" indicates to me that they do not understand what problems symbolic regression can be applied to. They are making predictions about the future based only on past measurements of one event. They also seem to be revising their numbers without noting the changes in the article.
Completely agree - this is the textbook definition of overfitting - and recommending it for novices is like statistical malpractice.
Why think it’s ok to dumb down data science so much? We don’t use “Be your own family’s surgeon” or “Represent your mom in court” apps! Expertise matters in ML/stats too...
Cool math, but this doesn't solve the false positive paradox part of the base rate fallacy... since fraud is so rare, most transactions marked as fraud are going to be wrong.
I was not aware of symbolic regression at all, but I'm wondering now if it couldn't be replicated by some feature engineering or playing around with smth like the Box Cox transformation.
You could afterwards use some feature selection, regularization etc. to retain features that have explanatory power.
It wasn't clear to me why symbolic regression would be especially good for highly skewed datasets. Does anybody have an idea?
24 comments
[ 1.8 ms ] story [ 74.1 ms ] threadOtherwise it's impossible to make the comparisons at the end of the article to other results.
I wonder how this performance would have compared to a simple random forest or MLP model.
In practice you'll usually want to tune the tradeoff between precision and recall for the situation. This way you can make a direct connection between model performance and the costs and benefits as they manifest in practice, as well as your tolerance for risk.
Is the cost of allowing a fraudulent transaction through much greater than the cost of blocking a non-fraudulent transaction? Then the error function should reflect that. Minimising F1/accuracy/log-loss is not necessarily going to save the most money.
I’m sorry if I’ve grossly misunderstood what you’re doing here, but trying to sell this method in a GUI tool (making it usable by people without a background in statistics) seems almost negligent.
But yeah, with such small sample size it might not generalize as much
https://web.archive.org/web/*/https://turingbotsoftware.com/...
Why think it’s ok to dumb down data science so much? We don’t use “Be your own family’s surgeon” or “Represent your mom in court” apps! Expertise matters in ML/stats too...
https://en.m.wikipedia.org/wiki/Base_rate_fallacy#False_posi...
You could afterwards use some feature selection, regularization etc. to retain features that have explanatory power.
It wasn't clear to me why symbolic regression would be especially good for highly skewed datasets. Does anybody have an idea?
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.394...
OP misses the point that SR is the problem space, not the algorithm or solution space.