@@ -29,7 +29,7 @@ location `/tmp/tfhub_modules` (or whatever `os.path.join(tempfile.gettempdir(),
2929Users who prefer persistent caching across system reboots can instead set
3030` TFHUB_CACHE_DIR ` to a location in their home directory. For example, a user of
3131the bash shell on a Linux system can add a line like the following to
32- ` ~/.bashrc `
32+ ` ~/.bashrc ` :
3333
3434``` bash
3535export TFHUB_CACHE_DIR=$HOME /.cache/tfhub_modules
@@ -41,7 +41,7 @@ persistent location, be aware that there is no automatic cleanup.
4141### Reading from remote storage
4242
4343Users can instruct the ` tensorflow_hub ` library to directly read models from
44- remote storage (GCS) instead of downloading the models locally with
44+ remote storage (GCS) instead of downloading the models locally with:
4545
4646``` shell
4747os.environ[" TFHUB_MODEL_LOAD_FORMAT" ] = " UNCOMPRESSED"
@@ -64,7 +64,7 @@ location by default. There are two workarounds for this situation:
6464The easiest solution is to instruct the ` tensorflow_hub ` library to read the
6565models from TF Hub's GCS bucket as explained above. Users with their own GCS
6666bucket can instead specify a directory in their bucket as the cache location
67- with code like
67+ with code like:
6868
6969``` python
7070import os
@@ -83,4 +83,4 @@ load_options =
8383tf.saved_model.LoadOptions(experimental_io_device = ' /job:localhost' )
8484reloaded_model = hub.load(" https://tfhub.dev/..." , options = load_options)
8585```
86- ** Note:** See more information regarding valid handles [ here] ( tf2_saved_model.md#model_handles ) .
86+ ** Note:** See more information regarding valid handles [ here] ( tf2_saved_model.md#model_handles ) .
0 commit comments