Skip to content

Commit 7c5746c

Browse files
committed
R CMD check fixes
1 parent fe2f671 commit 7c5746c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Suggests:
3030
tensorflow (>= 1.4.2),
3131
keras (>= 2.1.2),
3232
knitr,
33+
rmarkdown,
3334
testthat
3435
License: Apache License 2.0
3536
SystemRequirements: Python (>= 2.7.0)

man/cloudml-package.Rd

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/getting_started.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ view_run()
137137
view_run("runs/cloudml_2017_12_15_182614794")
138138
```
139139

140-
There are many tools available to list, filter, and compare training runs. For additional information see the documentation for the [tfruns package](https://tensorflow.rstudio.com/tools/tfruns/articles/overview.html).
140+
There are many tools available to list, filter, and compare training runs. For additional information see the documentation for the [tfruns package](https://tensorflow.rstudio.com/guides/tfruns/).
141141

142142
## Training with a GPU
143143

144144
By default, CloudML utilizes "standard" CPU-based instances suitable for training simple models with small to moderate datasets. You can request the use of other machine types, including ones with GPUs, using the `master_type` parameter of `cloudml_train()`.
145145

146-
For example, the following would train the same model as above but with a [Tesla K80 GPU](http://www.nvidia.com/object/tesla-k80.html):
146+
For example, the following would train the same model as above but with a [Tesla K80 GPU](https://www.nvidia.com/en-us/products/):
147147

148148
```{r}
149149
cloudml_train("train.R", master_type = "standard_gpu")

vignettes/training.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Working on a CloudML project always begins with developing a training script tha
4949

5050
There are no special requirements for your training script, however there are a couple of things to keep in mind:
5151

52-
1) When you train a model on CloudML all of the files in the current working directory are uploaded. Therefore, your training script should be within the current working directory and references to other scripts, data files, etc. should be relative to the current working directory. The most straightforward way to organize your work on a CloudML application is to use an [RStudio Project](https://support.posit.co/hc/en-us/articles/200526207-Using-RStudio-Projects).
52+
1) When you train a model on CloudML all of the files in the current working directory are uploaded. Therefore, your training script should be within the current working directory and references to other scripts, data files, etc. should be relative to the current working directory. The most straightforward way to organize your work on a CloudML application is to use an [RStudio Project] (`https://support.posit.co/hc/en-us/articles/200526207-Using-RStudio-Projects`).
5353

5454
2) Your training data may be contained within the working directory, or it may be located within Google Cloud Storage. If your training data is large and/or located in cloud storage, the most straightforward workflow for development is to use a local subsample of your data. See the article on [Google Cloud Storage](storage.html) for a detailed example of using distinct data for local and CloudML execution contexts, as well as reading data from Google Cloud Storage buckets.
5555

@@ -153,7 +153,7 @@ view_run()
153153
view_run("runs/cloudml_2017_12_15_182614794")
154154
```
155155

156-
There are many tools available to list, filter, and compare training runs. For additional information see the documentation for the [tfruns package](https://tensorflow.rstudio.com/tools/tfruns/articles/overview.html).
156+
There are many tools available to list, filter, and compare training runs. For additional information see the documentation for the [tfruns package](https://tensorflow.rstudio.com/guides/tfruns/).
157157

158158

159159
## Managing Jobs

0 commit comments

Comments
 (0)