Let's just hope this does not become the 'Excel' of the ML space. Then anyone will start 'coding' some godawful models and use them in critical day to day infrastructure ... Don't get me wrong, I'm all for democratizing ML, but sometime these tools become fully-automatic-high-caliber footguns.
Excel is an amazing tool, and if this becomes the Excel of the ML space then it will be a great success
An End-to-End AutoML Solution for Tabular Data at KaggleDays
31–38 of 38 posts
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#32Earlier quoted context omitted.
Excel is an amazing tool, and if this becomes the Excel of the ML space then it will be a great success
The horrors I've seen made in Excel still give me nightmares to this day. It's low barrier to entry is both a blessing and it's curse. But at any level this can be said of any tool under the sun ...
I used to be violently anti spreadsheet but have come around to being amazed what people can do with a very limited subset of tools. So instead of looking down upon them (not saying that you are) I admire what non technical people that just want to automate something can do.
Also I think spreadsheets are better than half of the code I’ve ever written as it is easier to extend without having to delve into the guts of some impossible to understand language.
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#33What they are starting with here is a single table of data with all the features already defined and an existing binary label column. Typically when this type of data is collected in the field it is much more fine grained (i.e many observations collected over time) and unlabeled (e.g how do we define a true example? How many false examples do we select?).
The competition description even goes as far to say “We have chosen a dataset that you can get started with easily”.
So, yes, this is a cool demonstration of Google's product, but the success in the competition might not extend to the problems real business face when trying to apply ML to a problem like this.
That being said, I do think AutoML can help with these problems as it is extended to handle data that isn’t in a single table already.
For example, I’m a developer of a open source library called Featuretools (https://github.com/Featuretools/featuretools) that tries to automate feature engineering for temporal and relational datasets. Basically, it helps data scientists prepare real world data into the form this competition starts with.
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#34Earlier quoted context omitted.
yes, and i bet they didn't use 2500 CPUs either
The first thing is, the Neural Networks are not golden ML algorithm that is working always the best. I'm not surprised to see GBDT methods working better than NN. The NNs are very powerful because they can accept the wide-range of data types (tabular, images, voice) which is not possible with GBDT (maybe not yet). The second, I think architecture search fo NNs is very inefficient right now. Most of the methods are tr…
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#35Earlier quoted context omitted.
(I'm a researcher in ML/DL.) > Anyone know why they used CPUs instead of GPUs/TPUs? Cost and resource availability. They're distributing each computation on a different CPU, not distributing each computation over multiple CPUs. It would be faster to have each computation run on a CPU + GPU, but that would be very very expensive, and hard to schedule. GPUs/TPUs are also only faster for sufficiently large networks and…
DOes this 2500-cpu-hr cover the ENTIRE learning process? Lets even your first run is crap, and you try again with RGB instead of YUV or whatever. So you do 4 runs. So 10000-cpu-hours replace a week of work of a qualified ML engineer. This is pretty amazing. If i understand correctly.
This is also not mature science- there's still a lot of active research being done on AutoML- so there's still a lot of potential for improvement.
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#36Earlier quoted context omitted.
(I'm a researcher in ML/DL.) > Anyone know why they used CPUs instead of GPUs/TPUs? Cost and resource availability. They're distributing each computation on a different CPU, not distributing each computation over multiple CPUs. It would be faster to have each computation run on a CPU + GPU, but that would be very very expensive, and hard to schedule. GPUs/TPUs are also only faster for sufficiently large networks and…
Is there any way to "scale up" the solution network for more dimensions? For example, if i train on a a 100x100 image domain, with good results. So now I get a bigger budget to work with 200x200 images. There is no real way to leverage the good architecture from the 1st network. Is there ? Can this be done as a ugly-hack and then be used as a seed into the architecture-search ?
You could do the naive thing, which would be to take your architecture and scale each layer size up (e.g. select an architecture on Cifar-10 and then scale it up to work on ImageNet). This is done in practice quite often, and seems to work well, but I'm not aware of any robust research done to validate the effectiveness of this.
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#37I'm interested to know how easy this for regular people (software engineers with just a little knowledge of data science) to use. This part stands out: "our team spent most of time monitoring jobs and and waiting for them to finish. Our solution for second place on the final leaderboard required 1 hour on 2500 CPUs" Before I got to this part, I had assumed using AutoML would involve only reformatting the training/val…
Still 2500 CPU-hours is basically nothing. That's how much time a single machine with 2 sockets and 112 threads yields in a single day.
Re: An End-to-End AutoML Solution for Tabular Data at KaggleDays
#38How does these auto ML-solutions (like h2o) work in practice, anyone willing to share their experience? I wonder how automatic machine learning tools like these will shape the "data science" roles in the future. Obviously, the most cutting edge research will always be done by specialised human experts, but perhaps tools like these will lower the bar required for the bulk of mainstream ML work.
Auto ML is great as long as there is some rational on why a particular model is developed. However, in real world applications, there are so many constraints and considerations needed besides just having the most accurate model. Furthermore, as a VP of data science, selling the business on the value and benefits of data science is non-trivial as many are not even aware of what's capable with data science so my person…
That appears to be the business model of https://www.datarobot.com/
automated tools with consulting data scientists to help clients use them effectively