Skip to content

Commit c7d609b

Browse files
author
Tomas Nykodym
committed
Merge branch 'master' of github.com:h2oai/h2o-world-2015-training
2 parents e97df50 + 3daf2d6 commit c7d609b

19 files changed

Lines changed: 296 additions & 329 deletions

SUMMARY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Summary
22

33
* [Introduction](README.md)
4+
* [What is H2O?](WhatIsH2O.md)
45
* [Intro to Data Science](tutorials/intro-to-datascience/README.md)
56
* [Building a Smarter Application](tutorials/building-a-smarter-application/README.md)
67
* [Deep Learning](tutorials/deeplearning/README.md)
@@ -10,6 +11,6 @@
1011
* [Ensembles: Stacking, Super Learner](tutorials/ensembles-stacking/README.md)
1112
* [Streaming](tutorials/streaming/storm/README.md)
1213
* [Sparkling Water](tutorials/sparkling-water/README.md)
13-
* [PySparkling](tutorials/pysparkling/README.md)
14+
* [PySparkling](tutorials/pysparkling/Chicago_Crime_Demo.md)
1415
* [Resources](resources.md)
1516

WhatIsH2O.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#What is H2O?
22

3-
H2O is fast, scalable, open-source machine learning and deep learning for Smarter Applications. With H2O, enterprises like PayPal, Nielsen, Cisco and others can use all of their data without sampling and get accurate predictions faster. Advanced algorithms, like Deep Learning, Boosting, and Bagging Ensembles are readily available for application designers to build smarter applications through elegant APIs. Some of our earliest customers have built powerful domain-specific predictive engines for Recommendations, Customer Churn, Propensity to Buy, Dynamic Pricing and Fraud Detection for the Insurance, Healthcare, Telecommunications, AdTech, Retail and Payment Systems.
3+
H2O is fast, scalable, open-source machine learning and deep learning for Smarter Applications. With H2O, enterprises like PayPal, Nielsen Catalina, Cisco and others can use all of their data without sampling and get accurate predictions faster. Advanced algorithms, like Deep Learning, Boosting, and Bagging Ensembles are readily available for application designers to build smarter applications through elegant APIs. Some of our earliest customers have built powerful domain-specific predictive engines for Recommendations, Customer Churn, Propensity to Buy, Dynamic Pricing and Fraud Detection for the Insurance, Healthcare, Telecommunications, AdTech, Retail and Payment Systems.
44

55
Using in-memory compression techniques, H2O can handle billions of data rows in-memory, even with a fairly small cluster. The platform includes interfaces for R, Python, Scala, Java, JSON and Coffeescript/JavaScript, along with a built-in web interface, Flow, that make it easier for non-engineers to stitch together complete analytic workflows. The platform was built alongside (and on top of) both Hadoop and Spark Clusters and is typically deployed within minutes.
66

glrm.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

this_is_a_new_chapter.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

tutorials/ensembles-stacking/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ fit <- h2o.ensemble(x = x, y = y,
245245
learner = learner,
246246
metalearner = metalearner,
247247
cvControl = list(V = 5))
248-
248+
```
249249
Generate predictions on the test set:
250250
```r
251251
pred <- predict(fit, test)

tutorials/ensembles-stacking/ensembles-stacking.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ fit <- h2o.ensemble(x = x, y = y,
223223
metalearner = metalearner,
224224
cvControl = list(V = 5))
225225

226-
Generate predictions on the test set:
227-
#pred <- predict(fit, test)
228-
#predictions <- as.data.frame(pred$pred)[,3]
229-
#labels <- as.data.frame(test[,y])[,1]
226+
# Generate predictions on the test set:
227+
pred <- predict(fit, test)
228+
predictions <- as.data.frame(pred$pred)[,3]
229+
labels <- as.data.frame(test[,y])[,1]
230230
#
231231
#Evaluate the test set performance:
232232
cvAUC::AUC(predictions = predictions , labels = labels)

tutorials/gbm-randomforest/GBM_RandomForest_Example.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@
124124
},
125125
"outputs": [],
126126
"source": [
127+
"import os\n",
127128
"covtype_df = h2o.import_file(os.path.realpath(\"../data/covtype.full.csv\"))"
128129
]
129130
},

tutorials/gbm-randomforest/GBM_RandomForest_Example.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# In[ ]:
1717

1818
import h2o
19+
import os
1920

2021

2122
# ### Start H2O

tutorials/gbm-randomforest/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
##Slides
44

5-
- [https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/gbm-randomforest/GBM_RandomForest_in_H2O.pdf](PDF)
5+
- [PDF](https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/gbm-randomforest/GBM_RandomForest_in_H2O.pdf)
66

77
##Code
88

9-
- The source code for this example is here: [https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/gbm-randomforest/GBM_RandomForest_Example.R](R script)
9+
- The source code for this example is here: [R script](https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/gbm-randomforest/GBM_RandomForest_Example.R)

tutorials/glm/glm_h2oworld_demo.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"cell_type": "code",
6060
"execution_count": null,
6161
"metadata": {
62-
"collapsed": true
62+
"collapsed": false
6363
},
6464
"outputs": [],
6565
"source": [
@@ -102,7 +102,8 @@
102102
"outputs": [],
103103
"source": [
104104
"import pandas as pd\n",
105-
"import numpy as np"
105+
"import numpy as np\n",
106+
"import os"
106107
]
107108
},
108109
{

0 commit comments

Comments
 (0)