From efd38c3ad730596e1bff80c59fdc2f2cbd6354a0 Mon Sep 17 00:00:00 2001 From: Lauren Yu <6631887+laurenyu@users.noreply.github.com> Date: Tue, 26 May 2020 09:42:31 -0700 Subject: [PATCH] doc: fix TF requirements.txt documentation --- doc/using_tf.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/using_tf.rst b/doc/using_tf.rst index 66fd7f5529..55e5db1dba 100644 --- a/doc/using_tf.rst +++ b/doc/using_tf.rst @@ -140,10 +140,10 @@ If there are other packages you want to use with your script, you can use a ``re For training, support for installing packages using ``requirements.txt`` varies by TensorFlow version as follows: -- For TensorFlow 1.11 or newer using Script Mode without Horovod, TensorFlow 1.15.2 with Python 3.7 or newer, and TensorFlow 2.2 or newer: +- For TensorFlow 1.15.2 with Python 3.7 or newer, and TensorFlow 2.2 or newer: - Include a ``requirements.txt`` file in the same directory as your training script. - You must specify this directory using the ``source_dir`` argument when creating a TensorFlow estimator. -- For older versions of TensorFlow using Script Mode with Horovod: +- For older versions of TensorFlow using Script Mode (TensorFlow 1.11-1.15.2, 2.0-2.1 with Python 2.7 or 3.6): - Write a shell script for your entry point that first calls ``pip install -r requirements.txt``, then runs your training script. - For an example of using shell scripts, see `this example notebook `__. - For older versions of TensorFlow using Legacy Mode: