"git@developer.sourcefind.cn:change/sglang.git" did not exist on "750940ae366099245c83206202605302a3defb8b"
Commit d4990fba authored by dreamdragon's avatar dreamdragon
Browse files

Merge branch 'master' of https://github.com/dreamdragon/models

parents e00e0e13 18e82789
Tensorflow mobile video object detection implementation porposed in the following paper: Tensorflow mobile video object detection implementation proposed in the following paper:
Mobile Video Object Detection with Temporally-Aware Feature Maps (CVPR 2018). Mobile Video Object Detection with Temporally-Aware Feature Maps (CVPR 2018).
http://openaccess.thecvf.com/content_cvpr_2018/papers/Liu_Mobile_Video_Object_CVPR_2018_paper.pdf http://openaccess.thecvf.com/content_cvpr_2018/papers/Liu_Mobile_Video_Object_CVPR_2018_paper.pdf
......
...@@ -31,7 +31,7 @@ from google3.pyglib import app ...@@ -31,7 +31,7 @@ from google3.pyglib import app
from google3.pyglib import flags from google3.pyglib import flags
from lstm_object_detection import evaluator from lstm_object_detection import evaluator
from lstm_object_detection import model_builder from lstm_object_detection import model_builder
from lstm_object_detection import seq_dataset_builder from lstm_object_detection.inputs import seq_dataset_builder
from lstm_object_detection.utils import config_util from lstm_object_detection.utils import config_util
from object_detection.utils import label_map_util from object_detection.utils import label_map_util
......
...@@ -25,7 +25,7 @@ that wraps the build function. ...@@ -25,7 +25,7 @@ that wraps the build function.
import tensorflow as tf import tensorflow as tf
import tensorflow.google as google_tf import tensorflow.google as google_tf
from tensorflow.contrib.training.python.training import sequence_queueing_state_saver as sqss from tensorflow.contrib.training.python.training import sequence_queueing_state_saver as sqss
from lstm_object_detection import tf_sequence_example_decoder from lstm_object_detection.inputs import tf_sequence_example_decoder
from lstm_object_detection.protos import input_reader_google_pb2 from lstm_object_detection.protos import input_reader_google_pb2
from object_detection.core import preprocessor from object_detection.core import preprocessor
from object_detection.core import preprocessor_cache from object_detection.core import preprocessor_cache
......
...@@ -23,7 +23,7 @@ from google.protobuf import text_format ...@@ -23,7 +23,7 @@ from google.protobuf import text_format
from google3.testing.pybase import parameterized from google3.testing.pybase import parameterized
from tensorflow.core.example import example_pb2 from tensorflow.core.example import example_pb2
from tensorflow.core.example import feature_pb2 from tensorflow.core.example import feature_pb2
from lstm_object_detection import seq_dataset_builder from lstm_object_detection.inputs import seq_dataset_builder
from lstm_object_detection.protos import pipeline_pb2 as internal_pipeline_pb2 from lstm_object_detection.protos import pipeline_pb2 as internal_pipeline_pb2
from object_detection.builders import preprocessor_builder from object_detection.builders import preprocessor_builder
from object_detection.core import standard_fields as fields from object_detection.core import standard_fields as fields
......
...@@ -21,7 +21,7 @@ from tensorflow.core.example import example_pb2 ...@@ -21,7 +21,7 @@ from tensorflow.core.example import example_pb2
from tensorflow.core.example import feature_pb2 from tensorflow.core.example import feature_pb2
from tensorflow.python.framework import dtypes from tensorflow.python.framework import dtypes
from tensorflow.python.ops import parsing_ops from tensorflow.python.ops import parsing_ops
from lstm_object_detection import tf_sequence_example_decoder from lstm_object_detection.inputs import tf_sequence_example_decoder
from object_detection.core import standard_fields as fields from object_detection.core import standard_fields as fields
......
...@@ -48,8 +48,8 @@ import os ...@@ -48,8 +48,8 @@ import os
from absl import flags from absl import flags
import tensorflow as tf import tensorflow as tf
from lstm_object_detection import model_builder from lstm_object_detection import model_builder
from lstm_object_detection import seq_dataset_builder
from lstm_object_detection import trainer from lstm_object_detection import trainer
from lstm_object_detection.inputs import seq_dataset_builder
from lstm_object_detection.utils import config_util from lstm_object_detection.utils import config_util
from object_detection.builders import preprocessor_builder from object_detection.builders import preprocessor_builder
......
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