From 7fce10c8d6ca076d18a7f9aa56b40e720299602e Mon Sep 17 00:00:00 2001 From: Lyudmil Vladimirov Date: Mon, 13 Sep 2021 01:23:57 +0100 Subject: [PATCH 1/4] Fix inconsistency in export command --- docs/source/training.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/training.rst b/docs/source/training.rst index 79fd0ba..728ed5d 100644 --- a/docs/source/training.rst +++ b/docs/source/training.rst @@ -637,7 +637,7 @@ will be later used to perform the object detection. This can be done as follows: .. code-block:: default - python .\exporter_main_v2.py --input_type image_tensor --pipeline_config_path .\models\my_efficientdet_d1\pipeline.config --trained_checkpoint_dir .\models\my_efficientdet_d1\ --output_directory .\exported-models\my_model + python .\exporter_main_v2.py --input_type image_tensor --pipeline_config_path .\models\my_ssd_resnet50_v1_fpn\pipeline.config --trained_checkpoint_dir .\models\my_ssd_resnet50_v1_fpn\ --output_directory .\exported-models\my_model After the above process has completed, you should find a new folder ``my_model`` under the ``training_demo/exported-models``, that has the following structure: From 97dc1c92d6d67bcda1593bafd4f6f11a69f7edcb Mon Sep 17 00:00:00 2001 From: sglvladi Date: Sat, 27 Nov 2021 01:09:16 +0000 Subject: [PATCH 2/4] Added Stale bot config file --- .github/stale.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..3b0f14a --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false \ No newline at end of file From a73b23f0d85b431dfac7612cd80e9d71aac20835 Mon Sep 17 00:00:00 2001 From: Varisha Rashid <81171573+varisha-025@users.noreply.github.com> Date: Tue, 28 Mar 2023 19:26:34 +0530 Subject: [PATCH 3/4] use feature 2020 resolver removed After Pip 22.3 , 2020 resolver has become the default one. --- docs/source/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 066d30d..0ffa4de 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -382,7 +382,7 @@ Installation of the Object Detection API is achieved by installing the ``object_ # From within TensorFlow/models/research/ cp object_detection/packages/tf2/setup.py . - python -m pip install --use-feature=2020-resolver . + python -m pip install . .. note:: From eba8e7840ac59eae471af794eea6d2aba594876a Mon Sep 17 00:00:00 2001 From: Raj Pulapakura Date: Tue, 11 Apr 2023 22:26:30 +1000 Subject: [PATCH 4/4] Update training.rst Fixed typo --- docs/source/training.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/training.rst b/docs/source/training.rst index 728ed5d..3e59768 100644 --- a/docs/source/training.rst +++ b/docs/source/training.rst @@ -299,7 +299,7 @@ Create Label Map TensorFlow requires a label map, which namely maps each of the used labels to an integer values. This label map is used both by the training and detection processes. -Below we show an example label map (e.g ``label_map.pbtxt``), assuming that our dataset containes 2 labels, ``dogs`` and ``cats``: +Below we show an example label map (e.g ``label_map.pbtxt``), assuming that our dataset contains 2 labels, ``dogs`` and ``cats``: .. code-block:: default