Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
d4990fba
Commit
d4990fba
authored
Dec 03, 2018
by
dreamdragon
Browse files
Merge branch 'master' of
https://github.com/dreamdragon/models
parents
e00e0e13
18e82789
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
6 deletions
+6
-6
research/lstm_object_detection/README
research/lstm_object_detection/README
+1
-1
research/lstm_object_detection/eval.py
research/lstm_object_detection/eval.py
+1
-1
research/lstm_object_detection/inputs/seq_dataset_builder.py
research/lstm_object_detection/inputs/seq_dataset_builder.py
+1
-1
research/lstm_object_detection/inputs/seq_dataset_builder_test.py
.../lstm_object_detection/inputs/seq_dataset_builder_test.py
+1
-1
research/lstm_object_detection/inputs/tf_sequence_example_decoder.py
...tm_object_detection/inputs/tf_sequence_example_decoder.py
+0
-0
research/lstm_object_detection/inputs/tf_sequence_example_decoder_test.py
...ject_detection/inputs/tf_sequence_example_decoder_test.py
+1
-1
research/lstm_object_detection/train.py
research/lstm_object_detection/train.py
+1
-1
No files found.
research/lstm_object_detection/README
View file @
d4990fba
Tensorflow mobile video object detection implementation p
o
rposed in the following paper:
Tensorflow mobile video object detection implementation pr
o
posed 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
...
...
research/lstm_object_detection/eval.py
View file @
d4990fba
...
@@ -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
...
...
research/lstm_object_detection/seq_dataset_builder.py
→
research/lstm_object_detection/
inputs/
seq_dataset_builder.py
View file @
d4990fba
...
@@ -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
...
...
research/lstm_object_detection/seq_dataset_builder_test.py
→
research/lstm_object_detection/
inputs/
seq_dataset_builder_test.py
View file @
d4990fba
...
@@ -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
...
...
research/lstm_object_detection/tf_sequence_example_decoder.py
→
research/lstm_object_detection/
inputs/
tf_sequence_example_decoder.py
View file @
d4990fba
File moved
research/lstm_object_detection/tf_sequence_example_decoder_test.py
→
research/lstm_object_detection/
inputs/
tf_sequence_example_decoder_test.py
View file @
d4990fba
...
@@ -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
...
...
research/lstm_object_detection/train.py
View file @
d4990fba
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment