Commit 748eceae authored by Marianne Linhares Monteiro's avatar Marianne Linhares Monteiro Committed by GitHub
Browse files

Merge branch 'master' into cifar10_experiment

parents 40e906d2 ed65b632
This diff is collapsed.
This diff is collapsed.
item {
id: 0
name: 'none_of_the_above'
}
item { item {
id: 1 id: 1
name: 'aeroplane' name: 'aeroplane'
......
item {
id: 0
name: 'none_of_the_above'
}
item { item {
id: 1 id: 1
name: 'Abyssinian' name: 'Abyssinian'
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -157,6 +157,6 @@ number of workers, gpu type). ...@@ -157,6 +157,6 @@ number of workers, gpu type).
## Configuring the Evaluator ## Configuring the Evaluator
Currently evaluation is fixed to generating metrics as defined by the PASCAL Currently evaluation is fixed to generating metrics as defined by the PASCAL VOC
VOC challenge. The parameters for `eval_config` are set to reasonable defaults challenge. The parameters for `eval_config` are set to reasonable defaults and
and typically do not need to be configured. typically do not need to be configured.
...@@ -74,6 +74,6 @@ to avoid running this manually, you can add it as a new line to the end of your ...@@ -74,6 +74,6 @@ to avoid running this manually, you can add it as a new line to the end of your
You can test that you have correctly installed the Tensorflow Object Detection\ You can test that you have correctly installed the Tensorflow Object Detection\
API by running the following command: API by running the following command:
``` bash ```bash
python object_detection/builders/model_builder_test.py python object_detection/builders/model_builder_test.py
``` ```
This diff is collapsed.
...@@ -77,5 +77,5 @@ tensorboard --logdir=${PATH_TO_MODEL_DIRECTORY} ...@@ -77,5 +77,5 @@ tensorboard --logdir=${PATH_TO_MODEL_DIRECTORY}
``` ```
where `${PATH_TO_MODEL_DIRECTORY}` points to the directory that contains the where `${PATH_TO_MODEL_DIRECTORY}` points to the directory that contains the
train and eval directories. Please note it make take Tensorboard a couple train and eval directories. Please note it may take Tensorboard a couple minutes
minutes to populate with data. to populate with data.
...@@ -11,5 +11,5 @@ jupyter notebook ...@@ -11,5 +11,5 @@ jupyter notebook
``` ```
The notebook should open in your favorite web browser. Click the The notebook should open in your favorite web browser. Click the
[`object_detection_tutorial.ipynb`](../object_detection_tutorial.ipynb) link [`object_detection_tutorial.ipynb`](../object_detection_tutorial.ipynb) link to
to open the demo. open the demo.
...@@ -88,7 +88,7 @@ training checkpoints and events will be written to and ...@@ -88,7 +88,7 @@ training checkpoints and events will be written to and
Google Cloud Storage. Google Cloud Storage.
Users can monitor the progress of their training job on the [ML Engine Users can monitor the progress of their training job on the [ML Engine
Dashboard](https://pantheon.corp.google.com/mlengine/jobs). Dashboard](https://console.cloud.google.com/mlengine/jobs).
## Running an Evaluation Job on Cloud ## Running an Evaluation Job on Cloud
......
This diff is collapsed.
This diff is collapsed.
...@@ -13,12 +13,11 @@ py_library( ...@@ -13,12 +13,11 @@ py_library(
srcs = ["ssd_meta_arch.py"], srcs = ["ssd_meta_arch.py"],
deps = [ deps = [
"//tensorflow", "//tensorflow",
"//tensorflow_models/object_detection/core:box_coder",
"//tensorflow_models/object_detection/core:box_list", "//tensorflow_models/object_detection/core:box_list",
"//tensorflow_models/object_detection/core:box_predictor", "//tensorflow_models/object_detection/core:box_predictor",
"//tensorflow_models/object_detection/core:model", "//tensorflow_models/object_detection/core:model",
"//tensorflow_models/object_detection/core:target_assigner", "//tensorflow_models/object_detection/core:target_assigner",
"//tensorflow_models/object_detection/utils:variables_helper", "//tensorflow_models/object_detection/utils:shape_utils",
], ],
) )
...@@ -56,7 +55,7 @@ py_library( ...@@ -56,7 +55,7 @@ py_library(
"//tensorflow_models/object_detection/core:standard_fields", "//tensorflow_models/object_detection/core:standard_fields",
"//tensorflow_models/object_detection/core:target_assigner", "//tensorflow_models/object_detection/core:target_assigner",
"//tensorflow_models/object_detection/utils:ops", "//tensorflow_models/object_detection/utils:ops",
"//tensorflow_models/object_detection/utils:variables_helper", "//tensorflow_models/object_detection/utils:shape_utils",
], ],
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment