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/volumetric_models/modeling/nn_blocks_3d_test.py
.../projects/volumetric_models/modeling/nn_blocks_3d_test.py
+0
-1
official/projects/volumetric_models/modeling/segmentation_model_test.py
...cts/volumetric_models/modeling/segmentation_model_test.py
+0
-1
official/projects/yt8m/train_test.py
official/projects/yt8m/train_test.py
+0
-1
official/vision/beta/configs/__init__.py
official/vision/beta/configs/__init__.py
+0
-1
official/vision/beta/configs/backbones.py
official/vision/beta/configs/backbones.py
+0
-1
official/vision/beta/configs/backbones_3d.py
official/vision/beta/configs/backbones_3d.py
+0
-1
official/vision/beta/configs/common.py
official/vision/beta/configs/common.py
+0
-1
official/vision/beta/configs/decoders.py
official/vision/beta/configs/decoders.py
+0
-1
official/vision/beta/configs/image_classification.py
official/vision/beta/configs/image_classification.py
+0
-1
official/vision/beta/configs/image_classification_test.py
official/vision/beta/configs/image_classification_test.py
+0
-1
official/vision/beta/configs/maskrcnn.py
official/vision/beta/configs/maskrcnn.py
+0
-1
official/vision/beta/configs/retinanet.py
official/vision/beta/configs/retinanet.py
+0
-1
official/vision/beta/configs/semantic_segmentation.py
official/vision/beta/configs/semantic_segmentation.py
+0
-1
official/vision/beta/configs/semantic_segmentation_test.py
official/vision/beta/configs/semantic_segmentation_test.py
+0
-1
official/vision/beta/configs/video_classification.py
official/vision/beta/configs/video_classification.py
+0
-1
official/vision/beta/configs/video_classification_test.py
official/vision/beta/configs/video_classification_test.py
+0
-1
official/vision/beta/dataloaders/input_reader.py
official/vision/beta/dataloaders/input_reader.py
+0
-1
official/vision/beta/dataloaders/input_reader_factory.py
official/vision/beta/dataloaders/input_reader_factory.py
+0
-1
official/vision/beta/dataloaders/tfexample_utils.py
official/vision/beta/dataloaders/tfexample_utils.py
+0
-1
official/vision/beta/dataloaders/video_input.py
official/vision/beta/dataloaders/video_input.py
+0
-1
No files found.
official/projects/volumetric_models/modeling/nn_blocks_3d_test.py
View file @
4053c2ba
...
@@ -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 3D volumeric convoluion blocks."""
"""Tests for 3D volumeric convoluion blocks."""
# Import libraries
# Import libraries
...
...
official/projects/volumetric_models/modeling/segmentation_model_test.py
View file @
4053c2ba
...
@@ -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 segmentation network."""
"""Tests for segmentation network."""
from
absl.testing
import
parameterized
from
absl.testing
import
parameterized
...
...
official/projects/yt8m/train_test.py
View file @
4053c2ba
...
@@ -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
json
import
json
import
os
import
os
...
...
official/vision/beta/configs/__init__.py
View file @
4053c2ba
...
@@ -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.beta.configs
import
image_classification
from
official.vision.beta.configs
import
image_classification
...
...
official/vision/beta/configs/backbones.py
View file @
4053c2ba
...
@@ -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
"""Backbones configurations."""
"""Backbones configurations."""
import
dataclasses
import
dataclasses
from
typing
import
Optional
,
List
from
typing
import
Optional
,
List
...
...
official/vision/beta/configs/backbones_3d.py
View file @
4053c2ba
...
@@ -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
"""3D Backbones configurations."""
"""3D Backbones configurations."""
from
typing
import
Optional
,
Tuple
from
typing
import
Optional
,
Tuple
...
...
official/vision/beta/configs/common.py
View file @
4053c2ba
...
@@ -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
"""Common configurations."""
"""Common configurations."""
import
dataclasses
import
dataclasses
...
...
official/vision/beta/configs/decoders.py
View file @
4053c2ba
...
@@ -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
"""Decoders configurations."""
"""Decoders configurations."""
import
dataclasses
import
dataclasses
from
typing
import
List
,
Optional
from
typing
import
List
,
Optional
...
...
official/vision/beta/configs/image_classification.py
View file @
4053c2ba
...
@@ -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 configuration definition."""
"""Image classification configuration definition."""
import
dataclasses
import
dataclasses
import
os
import
os
...
...
official/vision/beta/configs/image_classification_test.py
View file @
4053c2ba
...
@@ -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 image_classification."""
"""Tests for image_classification."""
# pylint: disable=unused-import
# pylint: disable=unused-import
from
absl.testing
import
parameterized
from
absl.testing
import
parameterized
...
...
official/vision/beta/configs/maskrcnn.py
View file @
4053c2ba
...
@@ -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-CNN(-RS) configuration definition."""
"""R-CNN(-RS) configuration definition."""
import
dataclasses
import
dataclasses
...
...
official/vision/beta/configs/retinanet.py
View file @
4053c2ba
...
@@ -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
"""RetinaNet configuration definition."""
"""RetinaNet configuration definition."""
import
dataclasses
import
dataclasses
...
...
official/vision/beta/configs/semantic_segmentation.py
View file @
4053c2ba
...
@@ -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 configuration definition."""
"""Semantic segmentation configuration definition."""
import
dataclasses
import
dataclasses
import
os
import
os
...
...
official/vision/beta/configs/semantic_segmentation_test.py
View file @
4053c2ba
...
@@ -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 semantic_segmentation."""
"""Tests for semantic_segmentation."""
# pylint: disable=unused-import
# pylint: disable=unused-import
...
...
official/vision/beta/configs/video_classification.py
View file @
4053c2ba
...
@@ -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 configuration definition."""
"""Video classification configuration definition."""
import
dataclasses
import
dataclasses
from
typing
import
Optional
,
Tuple
from
typing
import
Optional
,
Tuple
...
...
official/vision/beta/configs/video_classification_test.py
View file @
4053c2ba
...
@@ -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 video_classification."""
"""Tests for video_classification."""
# pylint: disable=unused-import
# pylint: disable=unused-import
...
...
official/vision/beta/dataloaders/input_reader.py
View file @
4053c2ba
...
@@ -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
"""Dataset reader for vision model garden."""
"""Dataset reader for vision model garden."""
from
typing
import
Any
,
Callable
,
Optional
,
Tuple
from
typing
import
Any
,
Callable
,
Optional
,
Tuple
...
...
official/vision/beta/dataloaders/input_reader_factory.py
View file @
4053c2ba
...
@@ -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
"""Factory for getting TF-Vision input readers."""
"""Factory for getting TF-Vision input readers."""
from
official.common
import
dataset_fn
as
dataset_fn_util
from
official.common
import
dataset_fn
as
dataset_fn_util
...
...
official/vision/beta/dataloaders/tfexample_utils.py
View file @
4053c2ba
...
@@ -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
"""Utility functions to create tf.Example and tf.SequnceExample for test.
"""Utility functions to create tf.Example and tf.SequnceExample for test.
Example:video classification end-to-end test
Example:video classification end-to-end test
...
...
official/vision/beta/dataloaders/video_input.py
View file @
4053c2ba
...
@@ -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
"""Parser for video and label datasets."""
"""Parser for video and label datasets."""
from
typing
import
Dict
,
Optional
,
Tuple
,
Union
from
typing
import
Dict
,
Optional
,
Tuple
,
Union
...
...
Prev
1
2
3
4
5
6
7
8
9
…
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