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
f13be764
Commit
f13be764
authored
Jan 18, 2022
by
Liangzhe Yuan
Committed by
A. Unique TensorFlower
Jan 18, 2022
Browse files
internal change.
PiperOrigin-RevId: 422665603
parent
27fb855b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
8 deletions
+31
-8
official/projects/movinet/modeling/movinet_model.py
official/projects/movinet/modeling/movinet_model.py
+29
-7
official/projects/movinet/train.py
official/projects/movinet/train.py
+2
-1
No files found.
official/projects/movinet/modeling/movinet_model.py
View file @
f13be764
...
...
@@ -88,14 +88,13 @@ class MovinetClassifier(tf.keras.Model):
# Move backbone after super() call so Keras is happy
self
.
_backbone
=
backbone
def
_build_
network
(
def
_build_
backbone
(
self
,
backbone
:
tf
.
keras
.
Model
,
input_specs
:
Mapping
[
str
,
tf
.
keras
.
layers
.
InputSpec
],
state_specs
:
Optional
[
Mapping
[
str
,
tf
.
keras
.
layers
.
InputSpec
]]
=
None
,
)
->
Tuple
[
Mapping
[
str
,
tf
.
keras
.
Input
],
Union
[
Tuple
[
Mapping
[
# pytype: disable=invalid-annotation # typed-keras
str
,
tf
.
Tensor
],
Mapping
[
str
,
tf
.
Tensor
]],
Mapping
[
str
,
tf
.
Tensor
]]]:
"""Builds the model network.
)
->
Tuple
[
Mapping
[
str
,
Any
],
Any
,
Any
]:
"""Builds the backbone network and gets states and endpoints.
Args:
backbone: the model backbone.
...
...
@@ -104,9 +103,9 @@ class MovinetClassifier(tf.keras.Model):
layer, will overwrite the contents of the buffer(s).
Returns:
I
nputs a
nd outputs as a tuple. Inputs are expected to be a dict with
base input and states. Outputs are expected to be
a dict of endpoints
and (optionally) output
states.
i
nputs
:
a
dict of input specs.
endpoints:
a dict of
model
endpoints
.
states: a dict of model
states.
"""
state_specs
=
state_specs
if
state_specs
is
not
None
else
{}
...
...
@@ -145,7 +144,30 @@ class MovinetClassifier(tf.keras.Model):
mismatched_shapes
))
else
:
endpoints
,
states
=
backbone
(
inputs
)
return
inputs
,
endpoints
,
states
def
_build_network
(
self
,
backbone
:
tf
.
keras
.
Model
,
input_specs
:
Mapping
[
str
,
tf
.
keras
.
layers
.
InputSpec
],
state_specs
:
Optional
[
Mapping
[
str
,
tf
.
keras
.
layers
.
InputSpec
]]
=
None
,
)
->
Tuple
[
Mapping
[
str
,
tf
.
keras
.
Input
],
Union
[
Tuple
[
Mapping
[
# pytype: disable=invalid-annotation # typed-keras
str
,
tf
.
Tensor
],
Mapping
[
str
,
tf
.
Tensor
]],
Mapping
[
str
,
tf
.
Tensor
]]]:
"""Builds the model network.
Args:
backbone: the model backbone.
input_specs: the model input spec to use.
state_specs: a dict of states such that, if any of the keys match for a
layer, will overwrite the contents of the buffer(s).
Returns:
Inputs and outputs as a tuple. Inputs are expected to be a dict with
base input and states. Outputs are expected to be a dict of endpoints
and (optionally) output states.
"""
inputs
,
endpoints
,
states
=
self
.
_build_backbone
(
backbone
=
backbone
,
input_specs
=
input_specs
,
state_specs
=
state_specs
)
x
=
endpoints
[
'head'
]
x
=
movinet_layers
.
ClassifierHead
(
...
...
official/projects/movinet/train.py
View file @
f13be764
...
...
@@ -46,7 +46,8 @@ from official.modeling import performance
# Import movinet libraries to register the backbone and model into tf.vision
# model garden factory.
# pylint: disable=unused-import
# the followings are the necessary imports.
from
official.projects.movinet.google.configs
import
movinet_google
from
official.projects.movinet.google.modeling
import
movinet_model_google
from
official.projects.movinet.modeling
import
movinet
from
official.projects.movinet.modeling
import
movinet_model
# pylint: enable=unused-import
...
...
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