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
4053c2ba
Commit
4053c2ba
authored
Mar 22, 2022
by
saberkun
Browse files
Merge pull request #10514 from ZihanWangKi:master
PiperOrigin-RevId: 436548878
parents
f9f2765d
259c4347
Changes
222
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
20 deletions
+0
-20
official/projects/qat/vision/quantization/__init__.py
official/projects/qat/vision/quantization/__init__.py
+0
-1
official/projects/qat/vision/tasks/__init__.py
official/projects/qat/vision/tasks/__init__.py
+0
-1
official/projects/qat/vision/tasks/image_classification.py
official/projects/qat/vision/tasks/image_classification.py
+0
-1
official/projects/qat/vision/tasks/retinanet_test.py
official/projects/qat/vision/tasks/retinanet_test.py
+0
-1
official/projects/s3d/configs/s3d.py
official/projects/s3d/configs/s3d.py
+0
-1
official/projects/s3d/modeling/inception_utils.py
official/projects/s3d/modeling/inception_utils.py
+0
-1
official/projects/s3d/modeling/inception_utils_test.py
official/projects/s3d/modeling/inception_utils_test.py
+0
-1
official/projects/s3d/modeling/net_utils.py
official/projects/s3d/modeling/net_utils.py
+0
-1
official/projects/s3d/modeling/net_utils_test.py
official/projects/s3d/modeling/net_utils_test.py
+0
-1
official/projects/s3d/modeling/s3d.py
official/projects/s3d/modeling/s3d.py
+0
-1
official/projects/s3d/modeling/s3d_test.py
official/projects/s3d/modeling/s3d_test.py
+0
-1
official/projects/s3d/train.py
official/projects/s3d/train.py
+0
-1
official/projects/teams/teams_experiments.py
official/projects/teams/teams_experiments.py
+0
-1
official/projects/teams/teams_experiments_test.py
official/projects/teams/teams_experiments_test.py
+0
-1
official/projects/video_ssl/configs/__init__.py
official/projects/video_ssl/configs/__init__.py
+0
-1
official/projects/video_ssl/configs/video_ssl.py
official/projects/video_ssl/configs/video_ssl.py
+0
-1
official/projects/video_ssl/configs/video_ssl_test.py
official/projects/video_ssl/configs/video_ssl_test.py
+0
-1
official/projects/video_ssl/dataloaders/video_ssl_input.py
official/projects/video_ssl/dataloaders/video_ssl_input.py
+0
-1
official/projects/video_ssl/dataloaders/video_ssl_input_test.py
...al/projects/video_ssl/dataloaders/video_ssl_input_test.py
+0
-1
official/projects/video_ssl/losses/losses.py
official/projects/video_ssl/losses/losses.py
+0
-1
No files found.
official/projects/qat/vision/quantization/__init__.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Configs package definition."""
from
official.projects.qat.vision.quantization
import
configs
...
...
official/projects/qat/vision/tasks/__init__.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tasks package definition."""
from
official.projects.qat.vision.tasks
import
image_classification
official/projects/qat/vision/tasks/image_classification.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Image classification task definition."""
import
tensorflow
as
tf
...
...
official/projects/qat/vision/tasks/retinanet_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for RetinaNet task."""
# pylint: disable=unused-import
from
absl.testing
import
parameterized
...
...
official/projects/s3d/configs/s3d.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""S3D model configurations."""
import
dataclasses
from
typing
import
Text
...
...
official/projects/s3d/modeling/inception_utils.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Contains modules related to Inception networks."""
from
typing
import
Callable
,
Dict
,
Optional
,
Sequence
,
Set
,
Text
,
Tuple
,
Type
,
Union
...
...
official/projects/s3d/modeling/inception_utils_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
from
absl.testing
import
parameterized
import
tensorflow
as
tf
...
...
official/projects/s3d/modeling/net_utils.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Commonly used TensorFlow 2 network blocks."""
from
typing
import
Any
,
Text
,
Sequence
,
Union
...
...
official/projects/s3d/modeling/net_utils_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
from
absl
import
logging
from
absl.testing
import
parameterized
...
...
official/projects/s3d/modeling/s3d.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Contains the Tensorflow 2 version definition of S3D model.
S3D model is described in the following paper:
...
...
official/projects/s3d/modeling/s3d_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for S3D model."""
from
absl.testing
import
parameterized
...
...
official/projects/s3d/train.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""TensorFlow Model Garden Vision training driver for S3D."""
from
absl
import
app
...
...
official/projects/teams/teams_experiments.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
# pylint: disable=g-doc-return-or-yield,line-too-long
"""TEAMS experiments."""
import
dataclasses
...
...
official/projects/teams/teams_experiments_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for teams_experiments."""
from
absl.testing
import
parameterized
...
...
official/projects/video_ssl/configs/__init__.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Configs package definition."""
from
official.projects.video_ssl.configs
import
video_ssl
official/projects/video_ssl/configs/video_ssl.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Video classification configuration definition."""
...
...
official/projects/video_ssl/configs/video_ssl_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
# pylint: disable=unused-import
from
absl.testing
import
parameterized
...
...
official/projects/video_ssl/dataloaders/video_ssl_input.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Parser for video and label datasets."""
from
typing
import
Dict
,
Optional
,
Tuple
...
...
official/projects/video_ssl/dataloaders/video_ssl_input_test.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
import
io
...
...
official/projects/video_ssl/losses/losses.py
View file @
4053c2ba
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Define losses."""
# Import libraries
...
...
Prev
1
2
3
4
5
6
7
…
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