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
36d6f41f
Commit
36d6f41f
authored
Mar 22, 2022
by
saberkun
Browse files
Merge pull request #10514 from ZihanWangKi:master
PiperOrigin-RevId: 436548878
parents
bc8b6332
259c4347
Changes
222
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
20 deletions
+0
-20
official/vision/beta/dataloaders/video_input_test.py
official/vision/beta/dataloaders/video_input_test.py
+0
-1
official/vision/beta/modeling/__init__.py
official/vision/beta/modeling/__init__.py
+0
-1
official/vision/beta/modeling/backbones/__init__.py
official/vision/beta/modeling/backbones/__init__.py
+0
-1
official/vision/beta/modeling/backbones/efficientnet_test.py
official/vision/beta/modeling/backbones/efficientnet_test.py
+0
-1
official/vision/beta/modeling/backbones/factory.py
official/vision/beta/modeling/backbones/factory.py
+0
-1
official/vision/beta/modeling/backbones/factory_test.py
official/vision/beta/modeling/backbones/factory_test.py
+0
-1
official/vision/beta/modeling/backbones/mobilenet_test.py
official/vision/beta/modeling/backbones/mobilenet_test.py
+0
-1
official/vision/beta/modeling/backbones/resnet_3d_test.py
official/vision/beta/modeling/backbones/resnet_3d_test.py
+0
-1
official/vision/beta/modeling/backbones/resnet_deeplab_test.py
...ial/vision/beta/modeling/backbones/resnet_deeplab_test.py
+0
-1
official/vision/beta/modeling/backbones/resnet_test.py
official/vision/beta/modeling/backbones/resnet_test.py
+0
-1
official/vision/beta/modeling/backbones/revnet.py
official/vision/beta/modeling/backbones/revnet.py
+0
-1
official/vision/beta/modeling/backbones/revnet_test.py
official/vision/beta/modeling/backbones/revnet_test.py
+0
-1
official/vision/beta/modeling/backbones/spinenet_mobile.py
official/vision/beta/modeling/backbones/spinenet_mobile.py
+0
-1
official/vision/beta/modeling/backbones/spinenet_mobile_test.py
...al/vision/beta/modeling/backbones/spinenet_mobile_test.py
+0
-1
official/vision/beta/modeling/backbones/spinenet_test.py
official/vision/beta/modeling/backbones/spinenet_test.py
+0
-1
official/vision/beta/modeling/classification_model_test.py
official/vision/beta/modeling/classification_model_test.py
+0
-1
official/vision/beta/modeling/decoders/__init__.py
official/vision/beta/modeling/decoders/__init__.py
+0
-1
official/vision/beta/modeling/decoders/aspp_test.py
official/vision/beta/modeling/decoders/aspp_test.py
+0
-1
official/vision/beta/modeling/decoders/fpn_test.py
official/vision/beta/modeling/decoders/fpn_test.py
+0
-1
official/vision/beta/modeling/decoders/nasfpn_test.py
official/vision/beta/modeling/decoders/nasfpn_test.py
+0
-1
No files found.
official/vision/beta/dataloaders/video_input_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
import
io
...
...
official/vision/beta/modeling/__init__.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Modeling package definition."""
from
official.vision.beta.modeling
import
backbones
...
...
official/vision/beta/modeling/backbones/__init__.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Backbones package definition."""
from
official.vision.beta.modeling.backbones.efficientnet
import
EfficientNet
...
...
official/vision/beta/modeling/backbones/efficientnet_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for EfficientNet."""
# Import libraries
...
...
official/vision/beta/modeling/backbones/factory.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Backbone registers and factory method.
One can regitered a new backbone model by the following two steps:
...
...
official/vision/beta/modeling/backbones/factory_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for factory functions."""
# Import libraries
from
absl.testing
import
parameterized
...
...
official/vision/beta/modeling/backbones/mobilenet_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for MobileNet."""
import
itertools
...
...
official/vision/beta/modeling/backbones/resnet_3d_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for resnet."""
# Import libraries
...
...
official/vision/beta/modeling/backbones/resnet_deeplab_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for resnet_deeplab models."""
# Import libraries
...
...
official/vision/beta/modeling/backbones/resnet_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for resnet."""
# Import libraries
...
...
official/vision/beta/modeling/backbones/revnet.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Contains definitions of RevNet."""
from
typing
import
Any
,
Callable
,
Dict
,
Optional
...
...
official/vision/beta/modeling/backbones/revnet_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for RevNet."""
# Import libraries
...
...
official/vision/beta/modeling/backbones/spinenet_mobile.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
# Copyright 2020 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
official/vision/beta/modeling/backbones/spinenet_mobile_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
# Copyright 2020 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
official/vision/beta/modeling/backbones/spinenet_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for SpineNet."""
# Import libraries
from
absl.testing
import
parameterized
...
...
official/vision/beta/modeling/classification_model_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for classification network."""
# Import libraries
...
...
official/vision/beta/modeling/decoders/__init__.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Decoders package definition."""
from
official.vision.beta.modeling.decoders.aspp
import
ASPP
...
...
official/vision/beta/modeling/decoders/aspp_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for aspp."""
# Import libraries
...
...
official/vision/beta/modeling/decoders/fpn_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for FPN."""
# Import libraries
...
...
official/vision/beta/modeling/decoders/nasfpn_test.py
View file @
36d6f41f
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for NAS-FPN."""
# Import libraries
...
...
Prev
1
2
3
4
5
6
7
8
9
10
…
12
Next
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