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
d7511194
Unverified
Commit
d7511194
authored
Jan 22, 2022
by
Srihari Humbarwadi
Committed by
GitHub
Jan 22, 2022
Browse files
Merge branch 'tensorflow:master' into panoptic-deeplab-modeling
parents
2ad1ec15
ab8b8012
Changes
1000
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
25 additions
and
25 deletions
+25
-25
official/projects/triviaqa/prediction.py
official/projects/triviaqa/prediction.py
+1
-1
official/projects/triviaqa/preprocess.py
official/projects/triviaqa/preprocess.py
+1
-1
official/projects/triviaqa/sentencepiece_pb2.py
official/projects/triviaqa/sentencepiece_pb2.py
+1
-1
official/projects/triviaqa/train.py
official/projects/triviaqa/train.py
+1
-1
official/projects/vit/README.md
official/projects/vit/README.md
+0
-0
official/projects/vit/configs/__init__.py
official/projects/vit/configs/__init__.py
+2
-2
official/projects/vit/configs/backbones.py
official/projects/vit/configs/backbones.py
+1
-1
official/projects/vit/configs/image_classification.py
official/projects/vit/configs/image_classification.py
+2
-2
official/projects/vit/modeling/nn_blocks.py
official/projects/vit/modeling/nn_blocks.py
+1
-1
official/projects/vit/modeling/vit.py
official/projects/vit/modeling/vit.py
+2
-2
official/projects/vit/modeling/vit_test.py
official/projects/vit/modeling/vit_test.py
+2
-2
official/projects/vit/train.py
official/projects/vit/train.py
+3
-3
official/projects/volumetric_models/configs/backbones.py
official/projects/volumetric_models/configs/backbones.py
+1
-1
official/projects/volumetric_models/configs/decoders.py
official/projects/volumetric_models/configs/decoders.py
+1
-1
official/projects/volumetric_models/configs/semantic_segmentation_3d.py
...cts/volumetric_models/configs/semantic_segmentation_3d.py
+1
-1
official/projects/volumetric_models/configs/semantic_segmentation_3d_test.py
...olumetric_models/configs/semantic_segmentation_3d_test.py
+1
-1
official/projects/volumetric_models/dataloaders/segmentation_input_3d.py
...ts/volumetric_models/dataloaders/segmentation_input_3d.py
+1
-1
official/projects/volumetric_models/dataloaders/segmentation_input_3d_test.py
...lumetric_models/dataloaders/segmentation_input_3d_test.py
+1
-1
official/projects/volumetric_models/evaluation/segmentation_metrics.py
...ects/volumetric_models/evaluation/segmentation_metrics.py
+1
-1
official/projects/volumetric_models/evaluation/segmentation_metrics_test.py
...volumetric_models/evaluation/segmentation_metrics_test.py
+1
-1
No files found.
Too many changes to show.
To preserve performance only
1000 of 1000+
files are displayed.
Plain diff
Email patch
official/projects/triviaqa/prediction.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/triviaqa/preprocess.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/triviaqa/sentencepiece_pb2.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/triviaqa/train.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/
vision/beta/
projects/vit/README.md
→
official/projects/vit/README.md
View file @
d7511194
File moved
official/
vision/beta/
projects/vit/configs/__init__.py
→
official/projects/vit/configs/__init__.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -15,4 +15,4 @@
# Lint as: python3
"""Configs package definition."""
from
official.
vision.beta.
projects.vit.configs
import
image_classification
from
official.projects.vit.configs
import
image_classification
official/
vision/beta/
projects/vit/configs/backbones.py
→
official/projects/vit/configs/backbones.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/
vision/beta/
projects/vit/configs/image_classification.py
→
official/projects/vit/configs/image_classification.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -26,7 +26,7 @@ from official.modeling import hyperparams
from
official.modeling
import
optimization
from
official.vision.beta.configs
import
common
from
official.vision.beta.configs
import
image_classification
as
img_cls_cfg
from
official.
vision.beta.
projects.vit.configs
import
backbones
from
official.projects.vit.configs
import
backbones
from
official.vision.beta.tasks
import
image_classification
DataConfig
=
img_cls_cfg
.
DataConfig
...
...
official/
vision/beta/
projects/vit/modeling/nn_blocks.py
→
official/projects/vit/modeling/nn_blocks.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/
vision/beta/
projects/vit/modeling/vit.py
→
official/projects/vit/modeling/vit.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -17,9 +17,9 @@
import
tensorflow
as
tf
from
official.modeling
import
activations
from
official.projects.vit.modeling
import
nn_blocks
from
official.vision.beta.modeling.backbones
import
factory
from
official.vision.beta.modeling.layers
import
nn_layers
from
official.vision.beta.projects.vit.modeling
import
nn_blocks
layers
=
tf
.
keras
.
layers
...
...
official/
vision/beta/
projects/vit/modeling/vit_test.py
→
official/projects/vit/modeling/vit_test.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -18,7 +18,7 @@
from
absl.testing
import
parameterized
import
tensorflow
as
tf
from
official.
vision.beta.
projects.vit.modeling
import
vit
from
official.projects.vit.modeling
import
vit
class
VisionTransformerTest
(
parameterized
.
TestCase
,
tf
.
test
.
TestCase
):
...
...
official/
vision/beta/
projects/vit/train.py
→
official/projects/vit/train.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -18,9 +18,9 @@
from
absl
import
app
from
official.common
import
flags
as
tfm_flags
from
official.projects.vit
import
configs
# pylint: disable=unused-import
from
official.projects.vit.modeling
import
vit
# pylint: disable=unused-import
from
official.vision.beta
import
train
from
official.vision.beta.projects.vit
import
configs
# pylint: disable=unused-import
from
official.vision.beta.projects.vit.modeling
import
vit
# pylint: disable=unused-import
if
__name__
==
'__main__'
:
...
...
official/projects/volumetric_models/configs/backbones.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/configs/decoders.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/configs/semantic_segmentation_3d.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/configs/semantic_segmentation_3d_test.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/dataloaders/segmentation_input_3d.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/dataloaders/segmentation_input_3d_test.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/evaluation/segmentation_metrics.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
official/projects/volumetric_models/evaluation/segmentation_metrics_test.py
View file @
d7511194
# Copyright 202
1
The TensorFlow Authors. All Rights Reserved.
# Copyright 202
2
The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
Prev
1
…
27
28
29
30
31
32
33
34
35
…
50
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