Skip to content

Commit c794ab1

Browse files
Reorganize guide and tutorial files and fix links
1 parent d9ee576 commit c794ab1

17 files changed

+27
-25
lines changed

mkdocs.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,21 @@ watch:
108108
- tensorflow_serving
109109
nav:
110110
- Guide:
111-
- serving.md
112-
- docker.md
113-
- setup.md
114-
- serving_basic.md
115-
- architecture.md
116-
- serving_config.md
117-
- serving_advanced.md
118-
- serving_kubernetes.md
119-
- custom_servable.md
120-
- custom_source.md
121-
- custom_op.md
122-
- signature_defs.md
111+
- guide/serving.md
112+
- guide/docker.md
113+
- guide/setup.md
114+
- guide/serving_basic.md
115+
- guide/architecture.md
116+
- guide/serving_config.md
117+
- guide/serving_advanced.md
118+
- guide/serving_kubernetes.md
119+
- guide/custom_servable.md
120+
- guide/custom_source.md
121+
- guide/custom_op.md
122+
- guide/signature_defs.md
123123

124124
- API:
125125
- Client API (REST): api/api_rest.md
126126
- Client API (gRPC): https://github.com/tensorflow/serving/tree/master/tensorflow_serving/apis
127+
# - api/tensorflow_serving.md
128+

tensorflow_serving/g3doc/architecture.md renamed to tensorflow_serving/g3doc/guide/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ TensorFlow Serving Core treats servables and loaders as opaque objects.
131131

132132
## Life of a Servable
133133

134-
![tf serving architecture diagram](images/serving_architecture.svg)
134+
![tf serving architecture diagram](../images/serving_architecture.svg)
135135

136136
Broadly speaking:
137137

File renamed without changes.
File renamed without changes.
File renamed without changes.

tensorflow_serving/g3doc/docker.md renamed to tensorflow_serving/g3doc/guide/docker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ curl -d '{"instances": [1.0, 2.0, 5.0]}' \
2222
# Returns => { "predictions": [2.5, 3.0, 4.5] }
2323
```
2424

25-
For additional serving endpoints, see the [Client REST API](api/api_rest.md).
25+
For additional serving endpoints, see the [Client REST API](../api/api_rest.md).
2626

2727
## Install Docker
2828

@@ -209,7 +209,7 @@ This should return a set of values:
209209
{ "predictions": [2.5, 3.0, 4.5] }
210210
```
211211

212-
More information on using the RESTful API can be found [here](api/api_rest.md).
212+
More information on using the RESTful API can be found [here](../api/api_rest.md).
213213

214214
## Serving with Docker using your GPU
215215

@@ -302,9 +302,9 @@ GPU build of TensorFlow Model Server will result in an error that looks like:
302302
Cannot assign a device for operation 'a': Operation was explicitly assigned to /device:GPU:0
303303
```
304304

305-
More information on using the RESTful API can be found [here](api/api_rest.md).
305+
More information on using the RESTful API can be found [here](../api/api_rest.md).
306306

307307
## Developing with Docker
308308

309309
For instructions on how to build and develop Tensorflow Serving, please refer to
310-
[Developing with Docker guide](building_with_docker.md).
310+
[Developing with Docker guide](../tutorials/building_with_docker.md).
File renamed without changes.
File renamed without changes.
File renamed without changes.

tensorflow_serving/g3doc/serving_config.md renamed to tensorflow_serving/g3doc/guide/serving_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,6 @@ notable ones. For a complete list, please refer to the
283283
* `--file_system_poll_wait_seconds`: The period with which the server polls
284284
the filesystem for new model versions at each model's respective
285285
model_base_path
286-
* `--enable_model_warmup`: Enables [model warmup](saved_model_warmup.md) using
286+
* `--enable_model_warmup`: Enables [model warmup](../tutorials/saved_model_warmup.md) using
287287
user-provided PredictionLogs in assets.extra/ directory
288288
* `--mixed_precision=bfloat16`: Enables BF16 Automatic Mixed Precision

0 commit comments

Comments
 (0)