Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd H20 models #283
Add H20 models #283
Comments
|
If you already have one, can you show a template for one? I'm guessing that the user should use It might also help to look at what Erin LeDell has done with R/H20 ensembles. |
|
+1 to this - I'm also looking into h2o. |
|
Well, besides the initialization of the JVM with These references are very convenient (from the "H2O World" conference): https://www.youtube.com/watch?v=zwvzGuS82MA&list=PLNtMya54qvOH6YAVFigzoXb4iIzl0cvgd&index=57 http://www.slideshare.net/0xdata/h2o-world-geeneralized-low-rank-models-madeleine-udell https://www.youtube.com/watch?v=gEZtZRANeLc&list=PLNtMya54qvOH6YAVFigzoXb4iIzl0cvgd&index=30 |
|
Two new models were checked in if you want to test. |
|
I tested this feature, it is a pretty nifty feature, this sets the path to a more scale-able caret. Few observations:
|
I'm not surprised. For each model fit, the data need to be passed back to h2o and then the model is run. I'll try to think of a way to optimize there but I haven't seen many facilities to do so. Also keep in mind that gbm_grid <- expand.grid(interaction.depth = seq(1, 7, by = 2),
n.trees = seq(100, 1000, by = 50),
shrinkage = c(0.01, 0.001),
n.minobsinnode = c(5, 10, 15))
I have no idea. I would try writing a |
|
Hello, Thanks for this. For sure, it will be something very basic, but I am not able to see these new Regarding how to interact with https://github.com/mlr-org/mlr/blob/master/R/RLearner_classif_h2ogbm.R Thanks again, |
|
Added a card to the new models project page instead of using issues. |
GLM, RF, GBM, to start. I've been playing around with these on my local machine, and they're pretty awesome. Very fast training, and you can just install the package from CRAN to get started locally.
http://h2o-release.s3.amazonaws.com/h2o/rel-slater/8/docs-website/h2o-docs/index.html#Data%20Science%20Algorithms
Maybe add some pre-defined deep neural networks too (e.g. 1 layer, 2 layer, 3 layers).