Earlier quoted context omitted.
The main reason though is that these other methods outperform neural nets in tons of different situations. Even just from an accuracy / business success metric point of view, many problems are just better solved with other classes of models, domain-specific feature engineering, etc. It will probably remain so for many decades at least.
DNN's make good features though, especially if you have time series data or lots of text. I agree that the final model should be a randomforest/xgboost/lightgbm for typical tabular data.
AutoML toolkit for neural architecture search and hyper-parameter tuning
41–50 of 60 posts
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#42Earlier quoted context omitted.
This sounds like parody to me. There are so many problems in applied statistics, and neural networks are not helpful for most of them. Consider Bayesian analysis for very small data sets as an example (just the tip of the iceberg). In financial services in particular, there are tons of time series and regression problems on small data such that a neural network (beyond perhaps some super small MLP) would be a ridicul…
Deep Learning also works on very small data sets by means of embeddings. A large model trained on large data sets can be used as feature extraction tool for training for small data sets.
For example, consider needing to train hundreds of unique small models every day, based on new customer inputs affecting causality effects for that day (I had to do this for ad forecasting in a past job).
Generating embeddings via pre-trained models essentially produced gibberish and performed far worse than custom feature engineering + simple logistic models.
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#43Earlier quoted context omitted.
This sounds like parody to me. There are so many problems in applied statistics, and neural networks are not helpful for most of them. Consider Bayesian analysis for very small data sets as an example (just the tip of the iceberg). In financial services in particular, there are tons of time series and regression problems on small data such that a neural network (beyond perhaps some super small MLP) would be a ridicul…
The parent did not specifically talk about NNs. As I understand it AutoML could apply to all statistical endeavours that involve estimation (classical or bayesian).
Yes, this is the part that sounds like parody to me. At least, as a working statistician, I can tell you that the concept of AutoML could not apply to the far majority of things I work on.
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#44Earlier quoted context omitted.
The parent did not specifically talk about NNs. As I understand it AutoML could apply to all statistical endeavours that involve estimation (classical or bayesian).
> “AutoML could apply to all statistical endeavours that involve estimation” Yes, this is the part that sounds like parody to me. At least, as a working statistician, I can tell you that the concept of AutoML could not apply to the far majority of things I work on.
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#45Earlier quoted context omitted.
> “AutoML could apply to all statistical endeavours that involve estimation” Yes, this is the part that sounds like parody to me. At least, as a working statistician, I can tell you that the concept of AutoML could not apply to the far majority of things I work on.
So you never tune hyperparameters or try different models to see which works better?
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#46Earlier quoted context omitted.
The parent did not specifically talk about NNs. As I understand it AutoML could apply to all statistical endeavours that involve estimation (classical or bayesian).
> “AutoML could apply to all statistical endeavours that involve estimation” Yes, this is the part that sounds like parody to me. At least, as a working statistician, I can tell you that the concept of AutoML could not apply to the far majority of things I work on.
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#47Earlier quoted context omitted.
If you automate it, is it still research? Research implies some sort of hypothesis testing, yes? I suppose OP means there will be two groups: people who use AutoML and people who try to make AutoML better.
There should be at least 3 groups, because making AutoML better != making ML better.
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#48I manage a machine learning team for a large financial services company and AutoML tools, Microsoft’s NNI included, are on our radar. I think the `future of work` for machine learning practitioners will quickly separate into two groups: a very small and elite group that performs research and a much larger groups that use AutoML but whose jobs also deal more with data preparation (which gets automated also) and ML dev…
Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#49Re: AutoML toolkit for neural architecture search and hyper-parameter tuning
#50Earlier quoted context omitted.
There should be at least 3 groups, because making AutoML better != making ML better.
Why? The concept of AutoML does include the design of novel algorithms.