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/projects/video_ssl/tasks/pretrain_test.py
...ial/vision/beta/projects/video_ssl/tasks/pretrain_test.py
+0
-1
official/vision/beta/projects/video_ssl/train.py
official/vision/beta/projects/video_ssl/train.py
+0
-1
official/vision/beta/projects/yolo/modeling/backbones/darknet_test.py
...ion/beta/projects/yolo/modeling/backbones/darknet_test.py
+0
-1
official/vision/beta/projects/yolo/modeling/decoders/yolo_decoder_test.py
...beta/projects/yolo/modeling/decoders/yolo_decoder_test.py
+0
-1
official/vision/beta/projects/yolo/modeling/heads/yolo_head_test.py
...ision/beta/projects/yolo/modeling/heads/yolo_head_test.py
+0
-1
official/vision/beta/projects/yolo/modeling/layers/nn_blocks_test.py
...sion/beta/projects/yolo/modeling/layers/nn_blocks_test.py
+0
-1
official/vision/beta/serving/detection.py
official/vision/beta/serving/detection.py
+0
-1
official/vision/beta/serving/detection_test.py
official/vision/beta/serving/detection_test.py
+0
-1
official/vision/beta/serving/export_base.py
official/vision/beta/serving/export_base.py
+0
-1
official/vision/beta/serving/export_saved_model.py
official/vision/beta/serving/export_saved_model.py
+0
-1
official/vision/beta/serving/export_saved_model_lib.py
official/vision/beta/serving/export_saved_model_lib.py
+0
-1
official/vision/beta/serving/export_tfhub.py
official/vision/beta/serving/export_tfhub.py
+0
-1
official/vision/beta/serving/image_classification.py
official/vision/beta/serving/image_classification.py
+0
-1
official/vision/beta/serving/image_classification_test.py
official/vision/beta/serving/image_classification_test.py
+0
-1
official/vision/beta/serving/semantic_segmentation.py
official/vision/beta/serving/semantic_segmentation.py
+0
-1
official/vision/beta/serving/semantic_segmentation_test.py
official/vision/beta/serving/semantic_segmentation_test.py
+0
-1
official/vision/beta/serving/video_classification.py
official/vision/beta/serving/video_classification.py
+0
-1
official/vision/beta/serving/video_classification_test.py
official/vision/beta/serving/video_classification_test.py
+0
-1
official/vision/beta/tasks/__init__.py
official/vision/beta/tasks/__init__.py
+0
-1
official/vision/configs/__init__.py
official/vision/configs/__init__.py
+0
-1
No files found.
official/vision/beta/projects/video_ssl/tasks/pretrain_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
import
functools
import
functools
import
os
import
os
...
...
official/vision/beta/projects/video_ssl/train.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Training driver."""
"""Training driver."""
from
absl
import
app
from
absl
import
app
...
...
official/vision/beta/projects/yolo/modeling/backbones/darknet_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Tests for yolo."""
"""Tests for yolo."""
from
absl.testing
import
parameterized
from
absl.testing
import
parameterized
...
...
official/vision/beta/projects/yolo/modeling/decoders/yolo_decoder_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Tests for YOLO."""
"""Tests for YOLO."""
# Import libraries
# Import libraries
...
...
official/vision/beta/projects/yolo/modeling/heads/yolo_head_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Tests for yolo heads."""
"""Tests for yolo heads."""
# Import libraries
# Import libraries
...
...
official/vision/beta/projects/yolo/modeling/layers/nn_blocks_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
from
absl.testing
import
parameterized
from
absl.testing
import
parameterized
import
numpy
as
np
import
numpy
as
np
import
tensorflow
as
tf
import
tensorflow
as
tf
...
...
official/vision/beta/serving/detection.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Detection input and model functions for serving/inference."""
"""Detection input and model functions for serving/inference."""
from
typing
import
Mapping
,
Text
from
typing
import
Mapping
,
Text
...
...
official/vision/beta/serving/detection_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Test for image detection export lib."""
"""Test for image detection export lib."""
import
io
import
io
...
...
official/vision/beta/serving/export_base.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Base class for model export."""
"""Base class for model export."""
import
abc
import
abc
...
...
official/vision/beta/serving/export_saved_model.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
r
"""Vision models export binary for serving/inference.
r
"""Vision models export binary for serving/inference.
To export a trained checkpoint in saved_model format (shell script):
To export a trained checkpoint in saved_model format (shell script):
...
...
official/vision/beta/serving/export_saved_model_lib.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
r
"""Vision models export utility function for serving/inference."""
r
"""Vision models export utility function for serving/inference."""
import
os
import
os
...
...
official/vision/beta/serving/export_tfhub.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""A script to export the image classification as a TF-Hub SavedModel."""
"""A script to export the image classification as a TF-Hub SavedModel."""
# Import libraries
# Import libraries
...
...
official/vision/beta/serving/image_classification.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Image classification input and model functions for serving/inference."""
"""Image classification input and model functions for serving/inference."""
import
tensorflow
as
tf
import
tensorflow
as
tf
...
...
official/vision/beta/serving/image_classification_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Test for image classification export lib."""
"""Test for image classification export lib."""
import
io
import
io
...
...
official/vision/beta/serving/semantic_segmentation.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Semantic segmentation input and model functions for serving/inference."""
"""Semantic segmentation input and model functions for serving/inference."""
import
tensorflow
as
tf
import
tensorflow
as
tf
...
...
official/vision/beta/serving/semantic_segmentation_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Test for semantic segmentation export lib."""
"""Test for semantic segmentation export lib."""
import
io
import
io
...
...
official/vision/beta/serving/video_classification.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Video classification input and model functions for serving/inference."""
"""Video classification input and model functions for serving/inference."""
from
typing
import
Mapping
,
Dict
,
Text
from
typing
import
Mapping
,
Dict
,
Text
...
...
official/vision/beta/serving/video_classification_test.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
# import io
# import io
import
os
import
os
...
...
official/vision/beta/tasks/__init__.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Tasks package definition."""
"""Tasks package definition."""
from
official.vision.beta.tasks
import
image_classification
from
official.vision.beta.tasks
import
image_classification
...
...
official/vision/configs/__init__.py
View file @
36d6f41f
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# Lint as: python3
"""Configs package definition."""
"""Configs package definition."""
from
official.vision.configs
import
backbones
from
official.vision.configs
import
backbones
...
...
Prev
1
…
4
5
6
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