From 571b9397c629691213401f68ea572da1c53f8546 Mon Sep 17 00:00:00 2001 From: Rui Wang Date: Tue, 6 Aug 2019 20:23:26 -0700 Subject: [PATCH] fix: correct typo in using_sklearn.rst --- doc/using_sklearn.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/using_sklearn.rst b/doc/using_sklearn.rst index a08d2223f5..dbbc82f283 100644 --- a/doc/using_sklearn.rst +++ b/doc/using_sklearn.rst @@ -103,7 +103,7 @@ Using third-party libraries When running your training script on SageMaker, it will have access to some pre-installed third-party libraries including ``scikit-learn``, ``numpy``, and ``pandas``. For more information on the runtime environment, including specific package versions, see `SageMaker Scikit-learn Docker containers `__. -If there are other packages you want to use with your script, you can include a ``requirements.txte` file in the same directory as your training script to install other dependencies at runtime. +If there are other packages you want to use with your script, you can include a ``requirements.txt`` file in the same directory as your training script to install other dependencies at runtime. A ``requirements.txt`` file is a text file that contains a list of items that are installed by using ``pip install``. You can also specify the version of an item to install. For information about the format of a ``requirements.txt`` file, see `Requirements Files `__ in the pip documentation.