From e9e3b2dac13b8caff9f49df5d7a7df0d28387aec Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Wed, 17 Oct 2018 02:25:14 -0400 Subject: [PATCH] typo: Double word "the" --- articles/Debugging-CNTK-source-code-in-Visual-Studio.md | 2 +- articles/Serialization.md | 2 +- articles/Setup-OpenCV-on-Linux.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/articles/Debugging-CNTK-source-code-in-Visual-Studio.md b/articles/Debugging-CNTK-source-code-in-Visual-Studio.md index 470a3a56..dba32335 100644 --- a/articles/Debugging-CNTK-source-code-in-Visual-Studio.md +++ b/articles/Debugging-CNTK-source-code-in-Visual-Studio.md @@ -18,7 +18,7 @@ In the **Solution Explorer**, find the CNTK project and make sure it is the star In the **Solution Explorer**, find the CNTK project and right click on **Properties**. From the **Properties** dialog, click on **Configuration Properties** and then on **Debugging**. -Assuming you have your CNTK source at `C:\src` and you want to debug with config file `lr_bs.cntk` from the the tutorial +Assuming you have your CNTK source at `C:\src` and you want to debug with config file `lr_bs.cntk` from the tutorial [HelloWorld-LogisticRegression](https://github.com/Microsoft/CNTK/tree/release/latest/Tutorials/HelloWorld-LogisticRegression), set the Command Arguments as follows: diff --git a/articles/Serialization.md b/articles/Serialization.md index 5a3729f2..b401b183 100644 --- a/articles/Serialization.md +++ b/articles/Serialization.md @@ -26,7 +26,7 @@ z = create_model(x) #user-defined z.save("myModel.model") ``` -Note that a model saved in this way using the the [CNTK Library API](https://docs.microsoft.com/en-us/cognitive-toolkit/cntk-library-api) will have the model-v2 format. The model-v2 format is a Protobuf-based model serialization format, introduced in CNTK v2. (For more information, refer to [CNTK Model Format](https://docs.microsoft.com/en-us/cognitive-toolkit/CNTK-model-format).) The file extension for the saved model filepath is irrelevant - across CNTK documentation you will see the use of `.model`, `.dnn`, `.cmf`, etc. +Note that a model saved in this way using the [CNTK Library API](https://docs.microsoft.com/en-us/cognitive-toolkit/cntk-library-api) will have the model-v2 format. The model-v2 format is a Protobuf-based model serialization format, introduced in CNTK v2. (For more information, refer to [CNTK Model Format](https://docs.microsoft.com/en-us/cognitive-toolkit/CNTK-model-format).) The file extension for the saved model filepath is irrelevant - across CNTK documentation you will see the use of `.model`, `.dnn`, `.cmf`, etc. ### Load model To load a model from file into CNTK: diff --git a/articles/Setup-OpenCV-on-Linux.md b/articles/Setup-OpenCV-on-Linux.md index 1f028659..d6a0df25 100644 --- a/articles/Setup-OpenCV-on-Linux.md +++ b/articles/Setup-OpenCV-on-Linux.md @@ -11,7 +11,7 @@ ms.devlang: python # Setup OpenCV on Linux -You need to install OpenCV for CNTK 2.3 and above, if you want to build any of the the following: +You need to install OpenCV for CNTK 2.3 and above, if you want to build any of the following: - CNTK Image Reader - CNTK Image Writer - required to use Tensorboard's Image feature.