diff --git a/docs/MO_DG/img/inception_v1_first_block.png b/docs/MO_DG/img/inception_v1_first_block.png deleted file mode 100644 index 6ec06171d56..00000000000 --- a/docs/MO_DG/img/inception_v1_first_block.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:344b2fcb9b7a180a8d8047e65b4aad3ca2651cfc7d5e1e408710a5a3730fed09 -size 20851 diff --git a/docs/MO_DG/img/inception_v1_first_block.svg b/docs/MO_DG/img/inception_v1_first_block.svg new file mode 100644 index 00000000000..1333938f848 --- /dev/null +++ b/docs/MO_DG/img/inception_v1_first_block.svg @@ -0,0 +1,290 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MO_DG/img/inception_v1_std_input.png b/docs/MO_DG/img/inception_v1_std_input.png deleted file mode 100644 index 747d12a757f..00000000000 --- a/docs/MO_DG/img/inception_v1_std_input.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78a73487434f4178f111595eb34b344b35af14bd4ccb03e6a5b00509f86e19c5 -size 5348 diff --git a/docs/MO_DG/img/inception_v1_std_input.svg b/docs/MO_DG/img/inception_v1_std_input.svg new file mode 100644 index 00000000000..f7dc26509f5 --- /dev/null +++ b/docs/MO_DG/img/inception_v1_std_input.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MO_DG/img/inception_v1_std_output.png b/docs/MO_DG/img/inception_v1_std_output.png deleted file mode 100644 index 6f295ee6ba7..00000000000 --- a/docs/MO_DG/img/inception_v1_std_output.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:939e1aa0d2ba28dab1c930c6271a9f4063fd9f8c539d4713c0bd0f87c34f66c3 -size 15020 diff --git a/docs/MO_DG/img/inception_v1_std_output.svg b/docs/MO_DG/img/inception_v1_std_output.svg new file mode 100644 index 00000000000..10d1c9a8495 --- /dev/null +++ b/docs/MO_DG/img/inception_v1_std_output.svg @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MO_DG/prepare_model/convert_model/Cutting_Model.md b/docs/MO_DG/prepare_model/convert_model/Cutting_Model.md index e3531b34de6..9f3117af1f3 100644 --- a/docs/MO_DG/prepare_model/convert_model/Cutting_Model.md +++ b/docs/MO_DG/prepare_model/convert_model/Cutting_Model.md @@ -29,13 +29,13 @@ The input model is converted as a whole if neither `--input` nor `--output` comm For Inception_V1, there is one `Placeholder`: input. If the model is viewed in TensorBoard, the input operation is easy to find: -![Placeholder in Inception V1](../../img/inception_v1_std_input.png) +![Placeholder in Inception V1](../../img/inception_v1_std_input.svg) `Reshape` is the only output operation, which is enclosed in a nested name scope of `InceptionV1/Logits/Predictions`, under the full name of `InceptionV1/Logits/Predictions/Reshape_1`. In TensorBoard, along with some of its predecessors, it looks as follows: -![TensorBoard with predecessors](../../img/inception_v1_std_output.png) +![TensorBoard with predecessors](../../img/inception_v1_std_output.svg) Convert this model and put the results in a writable output directory: ```sh @@ -90,7 +90,7 @@ The Intermediate Representations are identical for both conversions. The same is Now, consider how to cut some parts of the model off. This chapter describes the first convolution block `InceptionV1/InceptionV1/Conv2d_1a_7x7` of the Inception V1 model to illustrate cutting: -![Inception V1 first convolution block](../../img/inception_v1_first_block.png) +![Inception V1 first convolution block](../../img/inception_v1_first_block.svg) ### Cutting at the End