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
9c3deec8
Commit
9c3deec8
authored
Mar 21, 2022
by
Yilei Yang
Committed by
A. Unique TensorFlower
Mar 21, 2022
Browse files
Internal change
PiperOrigin-RevId: 436393505
parent
c65a91e0
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
0 additions
and
14 deletions
+0
-14
official/legacy/image_classification/configs/base_configs.py
official/legacy/image_classification/configs/base_configs.py
+0
-1
official/legacy/image_classification/configs/configs.py
official/legacy/image_classification/configs/configs.py
+0
-1
official/projects/volumetric_models/tasks/semantic_segmentation_3d.py
...jects/volumetric_models/tasks/semantic_segmentation_3d.py
+0
-1
official/projects/volumetric_models/tasks/semantic_segmentation_3d_test.py
.../volumetric_models/tasks/semantic_segmentation_3d_test.py
+0
-1
official/vision/beta/ops/preprocess_ops_3d.py
official/vision/beta/ops/preprocess_ops_3d.py
+0
-1
official/vision/beta/ops/preprocess_ops_3d_test.py
official/vision/beta/ops/preprocess_ops_3d_test.py
+0
-1
official/vision/beta/projects/video_ssl/dataloaders/video_ssl_input.py
...on/beta/projects/video_ssl/dataloaders/video_ssl_input.py
+0
-1
official/vision/beta/projects/video_ssl/dataloaders/video_ssl_input_test.py
...ta/projects/video_ssl/dataloaders/video_ssl_input_test.py
+0
-1
official/vision/beta/train.py
official/vision/beta/train.py
+0
-1
official/vision/beta/train_spatial_partitioning.py
official/vision/beta/train_spatial_partitioning.py
+0
-1
official/vision/ops/preprocess_ops_3d.py
official/vision/ops/preprocess_ops_3d.py
+0
-1
official/vision/ops/preprocess_ops_3d_test.py
official/vision/ops/preprocess_ops_3d_test.py
+0
-1
official/vision/train.py
official/vision/train.py
+0
-1
official/vision/train_spatial_partitioning.py
official/vision/train_spatial_partitioning.py
+0
-1
No files found.
official/legacy/image_classification/configs/base_configs.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Definitions for high level configuration groups.."""
import
dataclasses
...
...
official/legacy/image_classification/configs/configs.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Configuration utils for image classification experiments."""
import
dataclasses
...
...
official/projects/volumetric_models/tasks/semantic_segmentation_3d.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Image segmentation task definition."""
from
typing
import
Any
,
Dict
,
Mapping
,
Optional
,
Sequence
,
Union
...
...
official/projects/volumetric_models/tasks/semantic_segmentation_3d_test.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Tests for semantic segmentation task."""
# pylint: disable=unused-import
...
...
official/vision/beta/ops/preprocess_ops_3d.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Utils for processing video dataset features."""
from
typing
import
Optional
,
Tuple
...
...
official/vision/beta/ops/preprocess_ops_3d_test.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
import
io
import
itertools
...
...
official/vision/beta/projects/video_ssl/dataloaders/video_ssl_input.py
View file @
9c3deec8
...
...
@@ -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/vision/beta/projects/video_ssl/dataloaders/video_ssl_input_test.py
View file @
9c3deec8
...
...
@@ -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/train.py
View file @
9c3deec8
...
...
@@ -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."""
from
absl
import
app
...
...
official/vision/beta/train_spatial_partitioning.py
View file @
9c3deec8
...
...
@@ -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 with spatial partitioning."""
from
typing
import
Sequence
...
...
official/vision/ops/preprocess_ops_3d.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Utils for processing video dataset features."""
from
typing
import
Optional
,
Tuple
...
...
official/vision/ops/preprocess_ops_3d_test.py
View file @
9c3deec8
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
import
io
import
itertools
...
...
official/vision/train.py
View file @
9c3deec8
...
...
@@ -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."""
from
absl
import
app
...
...
official/vision/train_spatial_partitioning.py
View file @
9c3deec8
...
...
@@ -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 with spatial partitioning."""
from
typing
import
Sequence
...
...
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