Worth-Advance-1232
Worth-Advance-1232 OP t1_j48mdcw wrote
Reply to comment by ndemir in Why is Super Learning / Stacking used rather rarely in practice? [D] by Worth-Advance-1232
I’ll look into it, thanks a lot! The main topic/question is still open for me tho.
Worth-Advance-1232 OP t1_j47drjb wrote
Reply to comment by ndemir in Why is Super Learning / Stacking used rather rarely in practice? [D] by Worth-Advance-1232
For me this doesn’t really make all that much sense. Stacking is not a tool in itself, it’s rather a modelling approach. Also from what I can tell in the h2o docs it seems that their Stacked Ensemble has only one level to it and no meta-model. Thus rather than using e. g. the outputs (or probability distribution) of each model to train a new model, it will only use the output for any given input directly to return its final prediction, doesn’t it?
Submitted by Worth-Advance-1232 t3_10asgah in MachineLearning
Worth-Advance-1232 t1_j2nvwv9 wrote
Reply to [P] An old fashioned statistician is looking for other ways to analyse survival data - Is machine learning an option? by lattecoffeegirl
If I understood correctly, rather than actually predicting survival time your goal is to see whether certain parameters have influence on the survival time. Besides the other things already mentioned, one approach might be trying to predict survival time via a black box algorithm and trying to explain the decision of the algorithm. One paper that covers this topic would be this one.
Worth-Advance-1232 t1_j2mh0vy wrote
Reply to comment by UberStone in [D] Can I use ML/AI to read the back panels of electronic components? by UberStone
You would need to preprocess the pictures anyway, so it should be quite easy to only get text back, especially if your labels are already formatted the way you want your output to be. This would probably mean you only need to decode your output.
Worth-Advance-1232 t1_j2mgewg wrote
Reply to comment by UberStone in [D] Can I use ML/AI to read the back panels of electronic components? by UberStone
Keep in mind that manually labelling a large set of data is very tedious, but your approach of building an app sounds like a good solution.
Worth-Advance-1232 t1_j0gct0d wrote
Usually it is indeed the case that especially deep learning requires a lot of data. However also with little data neural networks might generate good results using the implementations provided by e. g. scikit learn. Also you might want to look into Boosting Algorithms (specifically XGBoost), as they are usually powerful on tabular data which is a common type of data to have in businesses.
Worth-Advance-1232 OP t1_j48mrfn wrote
Reply to comment by ndemir in Why is Super Learning / Stacking used rather rarely in practice? [D] by Worth-Advance-1232
I‘ve used it in production as well, but thought that there is quite few research published about it lately. So I kind of assumed it’s similar in practice.