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/modeling/heads/segmentation_heads_test.py
official/vision/modeling/heads/segmentation_heads_test.py
+0
-1
official/vision/modeling/layers/__init__.py
official/vision/modeling/layers/__init__.py
+0
-1
official/vision/modeling/layers/nn_blocks_3d_test.py
official/vision/modeling/layers/nn_blocks_3d_test.py
+0
-1
official/vision/modeling/layers/nn_blocks_test.py
official/vision/modeling/layers/nn_blocks_test.py
+0
-1
official/vision/modeling/layers/nn_layers_test.py
official/vision/modeling/layers/nn_layers_test.py
+0
-1
official/vision/modeling/maskrcnn_model_test.py
official/vision/modeling/maskrcnn_model_test.py
+0
-1
official/vision/modeling/retinanet_model_test.py
official/vision/modeling/retinanet_model_test.py
+0
-1
official/vision/modeling/segmentation_model_test.py
official/vision/modeling/segmentation_model_test.py
+0
-1
official/vision/modeling/video_classification_model_test.py
official/vision/modeling/video_classification_model_test.py
+0
-1
official/vision/serving/detection.py
official/vision/serving/detection.py
+0
-1
official/vision/serving/detection_test.py
official/vision/serving/detection_test.py
+0
-1
official/vision/serving/export_base.py
official/vision/serving/export_base.py
+0
-1
official/vision/serving/export_saved_model.py
official/vision/serving/export_saved_model.py
+0
-1
official/vision/serving/export_saved_model_lib.py
official/vision/serving/export_saved_model_lib.py
+0
-1
official/vision/serving/export_tfhub.py
official/vision/serving/export_tfhub.py
+0
-1
official/vision/serving/image_classification.py
official/vision/serving/image_classification.py
+0
-1
official/vision/serving/image_classification_test.py
official/vision/serving/image_classification_test.py
+0
-1
official/vision/serving/semantic_segmentation.py
official/vision/serving/semantic_segmentation.py
+0
-1
official/vision/serving/semantic_segmentation_test.py
official/vision/serving/semantic_segmentation_test.py
+0
-1
official/vision/serving/video_classification.py
official/vision/serving/video_classification.py
+0
-1
No files found.
official/vision/modeling/heads/segmentation_heads_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 segmentation_heads.py."""
# Import libraries
...
...
official/vision/modeling/layers/__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
"""Layers package definition."""
from
official.vision.modeling.layers.box_sampler
import
BoxSampler
...
...
official/vision/modeling/layers/nn_blocks_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/modeling/layers/nn_blocks_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 nn_blocks."""
from
typing
import
Any
,
Iterable
,
Tuple
...
...
official/vision/modeling/layers/nn_layers_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 nn_layers."""
# Import libraries
...
...
official/vision/modeling/maskrcnn_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 maskrcnn_model.py."""
import
os
...
...
official/vision/modeling/retinanet_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 RetinaNet models."""
# Import libraries
...
...
official/vision/modeling/segmentation_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 segmentation network."""
from
absl.testing
import
parameterized
...
...
official/vision/modeling/video_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 video classification network."""
# Import libraries
...
...
official/vision/serving/detection.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
"""Detection input and model functions for serving/inference."""
from
typing
import
Mapping
,
Text
...
...
official/vision/serving/detection_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
"""Test for image detection export lib."""
import
io
...
...
official/vision/serving/export_base.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
"""Base class for model export."""
import
abc
...
...
official/vision/serving/export_saved_model.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
r
"""Vision models export binary for serving/inference.
To export a trained checkpoint in saved_model format (shell script):
...
...
official/vision/serving/export_saved_model_lib.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
r
"""Vision models export utility function for serving/inference."""
import
os
...
...
official/vision/serving/export_tfhub.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
"""A script to export the image classification as a TF-Hub SavedModel."""
# Import libraries
...
...
official/vision/serving/image_classification.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
"""Image classification input and model functions for serving/inference."""
import
tensorflow
as
tf
...
...
official/vision/serving/image_classification_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
"""Test for image classification export lib."""
import
io
...
...
official/vision/serving/semantic_segmentation.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
"""Semantic segmentation input and model functions for serving/inference."""
import
tensorflow
as
tf
...
...
official/vision/serving/semantic_segmentation_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
"""Test for semantic segmentation export lib."""
import
io
...
...
official/vision/serving/video_classification.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
"""Video classification input and model functions for serving/inference."""
from
typing
import
Mapping
,
Dict
,
Text
...
...
Prev
1
…
7
8
9
10
11
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