Skip to content

Commit 7677958

Browse files
committed
Fix path issues.
1 parent 2d06cf5 commit 7677958

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

tutorials/deeplearning/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ Once we are satisfied with the results, we can save the model to disk (on the cl
414414

415415
```r
416416
path <- h2o.saveModel(m_cont,
417-
path=paste0(ROOT_PATH,"mybest_deeplearning_covtype_model"), force=TRUE)
417+
path="./mybest_deeplearning_covtype_model", force=TRUE)
418418
```
419419

420420
It can be loaded later with the following command:

tutorials/deeplearning/deeplearning.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ plot(m_cont)
367367
#Once we are satisfied with the results, we can save the model to disk (on the cluster). In this example, we store the model in a directory called `mybest_deeplearning_covtype_model`, which will be created for us since `force=TRUE`.
368368
#
369369
path <- h2o.saveModel(m_cont,
370-
path=paste0(ROOT_PATH,"mybest_deeplearning_covtype_model"), force=TRUE)
370+
path="./mybest_deeplearning_covtype_model", force=TRUE)
371371
#
372372
#It can be loaded later with the following command:
373373
#

tutorials/deeplearning/deeplearning.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ Once we are satisfied with the results, we can save the model to disk (on the cl
414414

415415
```{r save_model}
416416
path <- h2o.saveModel(m_cont,
417-
path=paste0(ROOT_PATH,"mybest_deeplearning_covtype_model"), force=TRUE)
417+
path="./mybest_deeplearning_covtype_model", force=TRUE)
418418
```
419419

420420
It can be loaded later with the following command:

tutorials/deeplearning/deeplearning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ Once we are satisfied with the results, we can save the model to disk (on the cl
414414

415415
```r
416416
path <- h2o.saveModel(m_cont,
417-
path=paste0(ROOT_PATH,"mybest_deeplearning_covtype_model"), force=TRUE)
417+
path="./mybest_deeplearning_covtype_model", force=TRUE)
418418
```
419419

420420
It can be loaded later with the following command:

0 commit comments

Comments
 (0)