Skip to content

Commit b0f72d1

Browse files
committed
2 parents 2b993f1 + 9c8a5fa commit b0f72d1

21 files changed

Lines changed: 5217 additions & 141 deletions

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* [Introduction](README.md)
44
* [Intro to Data Science](tutorials/intro-to-datascience/README.md)
55
* [Building a Smarter Application](tutorials/building-a-smarter-application/README.md)
6-
* [Deep Learning](tutorials/deeplearning/deeplearning.md)
6+
* [Deep Learning](tutorials/deeplearning/README.md)
77
* [GLRM](tutorials/glrm/glrm-tutorial.md)
88
* [Hive UDF example](tutorials/hive_udf_template/README.md)
99
* [Ensembles: Stacking, Super Learner](tutorials/ensembles-stacking/README.md)

cover.jpg

-231 KB
Loading

resources.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
More information about machine learning with H2O
44

5-
- **http://docs.h2o.ai/**: Documentation for H2O and Sparkling Water
6-
- **https://groups.google.com/forum/#!forum/h2ostream**: Open forum for questions about H2O (Google account required)
7-
-
5+
##H2O
6+
7+
- **Documentation for H2O and Sparkling Water**: http://docs.h2o.ai/
8+
9+
- **Open forum for questions about H2O (Google account required)**: https://groups.google.com/forum/#!forum/h2ostream
10+
- **Track or file bug reports for H2O **: https://jira.h2o.ai
11+
12+
- **GitHub repository for H2O**: https://github.com/h2oai
13+
14+
15+
16+
##Python
17+
18+
- **About Python**: https://www.python.org/
19+
20+
- **Latest Python H2O documentation**: http://h2o-release.s3.amazonaws.com/h2o/latest_stable_Pydoc.html
21+
22+
23+
##R
24+
25+
- **About R**: https://www.r-project.org/about.html
26+
27+
- **Download R**: https://cran.r-project.org/mirrors.html
28+
29+
- **Latest R API H2O documentation**: http://h2o-release.s3.amazonaws.com/h2o/latest_stable_Rdoc.html
30+
31+
##Sparkling Water
32+
33+
- **About Spark**: http://spark.apache.org/
34+
35+
- **Download Spark**: http://spark.apache.org/downloads.html
36+
37+
- **Sparkling Water Developer documentation**: https://github.com/h2oai/sparkling-water/blob/master/DEVEL.md
Binary file not shown.
Binary file not shown.

tutorials/building-a-smarter-application/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-
* [PDF](BuildingASmarterApplication.pdf)
6-
* [Powerpoint](BuildingASmarterApplication.pptx)
5+
* [PDF](https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/building-a-smarter-application/BuildingASmarterApplication.pdf)
6+
* [PowerPoint](https://github.com/h2oai/h2o-world-2015-training/blob/master/tutorials/building-a-smarter-application/BuildingASmarterApplication.pptx)
77

88
### Code
99

tutorials/data/smsData.txt

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

tutorials/deeplearning/README.md

Lines changed: 547 additions & 0 deletions
Large diffs are not rendered by default.

tutorials/deeplearning/convert.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Turn R Markdown into regular Markdown
44
sed -e 's/```{r.*}/```/' deeplearning.Rmd > deeplearning.md
5+
cp deeplearning.md README.md
56

67
## Turn R Markdown into plain R
78
sed -e '1,\%```{r.*}%s:^:#:;/^```/,\%```{r.*}%s:^:#:;/```/d' deeplearning.Rmd > deeplearning.R

tutorials/deeplearning/deeplearning.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ previous=epochs
7979
plotC(paste0("DL ",epochs," epochs"),
8080
h2o.deeplearning(1:2,3,spiral,epochs=epochs,
8181
model_id=as.character(previous)))
82-
for (epochs in c(200,500,1000)) {
82+
for (epochs in c(200,500,750,1000)) {
8383
plotC(paste0("DL ",epochs," epochs"),
8484
h2o.deeplearning(1:2,3,spiral,epochs=epochs,
8585
model_id=as.character(epochs),
@@ -123,7 +123,7 @@ test <- h2o.assign(splits[[3]], "test.hex") # 20%
123123
#
124124
#Here's a scalable way to do scatter plots via binning (works for categorical and numeric columns) to get more familiar with the dataset.
125125
#
126-
dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
126+
#dev.new(noRStudioGD=FALSE) #direct plotting output to a new window
127127
par(mfrow=c(1,1)) # reset canvas
128128
plot(h2o.tabulate(df, "Elevation", "Cover_Type"))
129129
plot(h2o.tabulate(df, "Horizontal_Distance_To_Roadways", "Cover_Type"))

0 commit comments

Comments
 (0)