Skip to content

Commit 1471dce

Browse files
authored
Merge pull request #106157 from Blackmist/tensorflow-fix
Tensorflow fix
2 parents 399a556 + c7466c0 commit 1471dce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/how-to-train-tensorflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Train a neural network with TensorFlow
2+
title: Train and deploy a TensorFlow model
33
titleSuffix: Azure Machine Learning
44
description: Learn how to run TensorFlow training scripts at scale using Azure Machine Learning.
55
services: machine-learning
@@ -302,13 +302,13 @@ cluster_spec = tf.train.ClusterSpec(cluster)
302302

303303
```
304304

305-
## Deployment
305+
## Deploy a TensorFlow model
306306

307307
The model you just registered can be deployed the exact same way as any other registered model in Azure Machine Learning, regardless of which estimator you used for training. The deployment how-to contains a section on registering models, but you can skip directly to [creating a compute target](how-to-deploy-and-where.md#choose-a-compute-target) for deployment, since you already have a registered model.
308308

309-
### (Preview) No-code model deployment
309+
## (Preview) No-code model deployment
310310

311-
Instead of the traditional deployment route, you can also use the no-code deployment feature (preview)for Tensorflow. By registering your model as shown above with the `model_framework`, `model_framework_version`, and `resource_configuration` parameters, you can simply use the `deploy()` static function to deploy your model.
311+
Instead of the traditional deployment route, you can also use the no-code deployment feature (preview) for Tensorflow. By registering your model as shown above with the `model_framework`, `model_framework_version`, and `resource_configuration` parameters, you can simply use the `deploy()` static function to deploy your model.
312312

313313
```python
314314
service = Model.deploy(ws, "tensorflow-web-service", [model])

0 commit comments

Comments
 (0)