Skip to content

Commit

Permalink
Merge pull request #2298 from jmarcinowski:patch-1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 671098293
  • Loading branch information
copybara-github committed Sep 4, 2024
2 parents 384b62a + c8ad7a4 commit 050f9ec
Showing 1 changed file with 4 additions and 4 deletions.
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).

0 comments on commit 050f9ec

Please sign in to comment.