Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed punctuation in caching.md #2298

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions site/en/hub/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ location `/tmp/tfhub_modules` (or whatever `os.path.join(tempfile.gettempdir(),
Users who prefer persistent caching across system reboots can instead set
`TFHUB_CACHE_DIR` to a location in their home directory. For example, a user of
the bash shell on a Linux system can add a line like the following to
`~/.bashrc`
`~/.bashrc`:

```bash
export TFHUB_CACHE_DIR=$HOME/.cache/tfhub_modules
Expand All @@ -41,7 +41,7 @@ persistent location, be aware that there is no automatic cleanup.
### Reading from remote storage

Users can instruct the `tensorflow_hub` library to directly read models from
remote storage (GCS) instead of downloading the models locally with
remote storage (GCS) instead of downloading the models locally with:

```shell
os.environ["TFHUB_MODEL_LOAD_FORMAT"] = "UNCOMPRESSED"
Expand All @@ -64,7 +64,7 @@ location by default. There are two workarounds for this situation:
The easiest solution is to instruct the `tensorflow_hub` library to read the
models from TF Hub's GCS bucket as explained above. Users with their own GCS
bucket can instead specify a directory in their bucket as the cache location
with code like
with code like:

```python
import os
Expand All @@ -83,4 +83,4 @@ load_options =
tf.saved_model.LoadOptions(experimental_io_device='/job:localhost')
reloaded_model = hub.load("https://tfhub.dev/...", options=load_options)
```
**Note:** See more information regarding valid handles [here](tf2_saved_model.md#model_handles).
**Note:** See more information regarding valid handles [here](tf2_saved_model.md#model_handles).
Loading