aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/examples/eager/spinn/README.md
diff options
context:
space:
mode:
authorGravatar Shanqing Cai <cais@google.com>2018-02-15 19:12:05 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-15 19:16:17 -0800
commit98cf337e781977fd464c574656699b3181eddf19 (patch)
treedf5e6804542f99281422babe38fc74f8320c5e43 /third_party/examples/eager/spinn/README.md
parent72bd433b9b6b06ae13893015361079dda992d3c8 (diff)
TFE SPINN example: use tensor instead of numpy array
in inference output. PiperOrigin-RevId: 185939805
Diffstat (limited to 'third_party/examples/eager/spinn/README.md')
-rw-r--r--third_party/examples/eager/spinn/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/examples/eager/spinn/README.md b/third_party/examples/eager/spinn/README.md
index 335c0fa3b5..7f477d1920 100644
--- a/third_party/examples/eager/spinn/README.md
+++ b/third_party/examples/eager/spinn/README.md
@@ -75,7 +75,7 @@ Other eager execution examples can be found under [tensorflow/contrib/eager/pyth
should all be separated by spaces. For instance,
```bash
- pythons spinn.py --data_root /tmp/spinn-data --logdir /tmp/spinn-logs \
+ python spinn.py --data_root /tmp/spinn-data --logdir /tmp/spinn-logs \
--inference_premise '( ( The dog ) ( ( is running ) . ) )' \
--inference_hypothesis '( ( The dog ) ( moves . ) )'
```
@@ -93,7 +93,7 @@ Other eager execution examples can be found under [tensorflow/contrib/eager/pyth
By contrast, the following sentence pair:
```bash
- pythons spinn.py --data_root /tmp/spinn-data --logdir /tmp/spinn-logs \
+ python spinn.py --data_root /tmp/spinn-data --logdir /tmp/spinn-logs \
--inference_premise '( ( The dog ) ( ( is running ) . ) )' \
--inference_hypothesis '( ( The dog ) ( rests . ) )'
```