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
32e4ca51
Commit
32e4ca51
authored
Nov 28, 2023
by
qianyj
Browse files
Update code to v2.11.0
parents
9485aa1d
71060f67
Changes
775
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
21 additions
and
22 deletions
+21
-22
official/legacy/detection/modeling/architecture/resnet.py
official/legacy/detection/modeling/architecture/resnet.py
+1
-1
official/legacy/detection/modeling/architecture/spinenet.py
official/legacy/detection/modeling/architecture/spinenet.py
+1
-2
official/legacy/detection/modeling/base_model.py
official/legacy/detection/modeling/base_model.py
+1
-1
official/legacy/detection/modeling/checkpoint_utils.py
official/legacy/detection/modeling/checkpoint_utils.py
+1
-1
official/legacy/detection/modeling/factory.py
official/legacy/detection/modeling/factory.py
+1
-1
official/legacy/detection/modeling/learning_rates.py
official/legacy/detection/modeling/learning_rates.py
+2
-2
official/legacy/detection/modeling/losses.py
official/legacy/detection/modeling/losses.py
+1
-1
official/legacy/detection/modeling/maskrcnn_model.py
official/legacy/detection/modeling/maskrcnn_model.py
+1
-1
official/legacy/detection/modeling/olnmask_model.py
official/legacy/detection/modeling/olnmask_model.py
+1
-1
official/legacy/detection/modeling/optimizers.py
official/legacy/detection/modeling/optimizers.py
+1
-1
official/legacy/detection/modeling/retinanet_model.py
official/legacy/detection/modeling/retinanet_model.py
+1
-1
official/legacy/detection/modeling/shapemask_model.py
official/legacy/detection/modeling/shapemask_model.py
+1
-1
official/legacy/detection/ops/__init__.py
official/legacy/detection/ops/__init__.py
+1
-1
official/legacy/detection/ops/nms.py
official/legacy/detection/ops/nms.py
+1
-1
official/legacy/detection/ops/postprocess_ops.py
official/legacy/detection/ops/postprocess_ops.py
+1
-1
official/legacy/detection/ops/roi_ops.py
official/legacy/detection/ops/roi_ops.py
+1
-1
official/legacy/detection/ops/spatial_transform_ops.py
official/legacy/detection/ops/spatial_transform_ops.py
+1
-1
official/legacy/detection/ops/target_ops.py
official/legacy/detection/ops/target_ops.py
+1
-1
official/legacy/detection/utils/__init__.py
official/legacy/detection/utils/__init__.py
+1
-1
official/legacy/detection/utils/box_utils.py
official/legacy/detection/utils/box_utils.py
+1
-1
No files found.
Too many changes to show.
To preserve performance only
775 of 775+
files are displayed.
Plain diff
Email patch
official/legacy/detection/modeling/architecture/resnet.py
View file @
32e4ca51
# 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/legacy/detection/modeling/architecture/spinenet.py
View file @
32e4ca51
# 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.
...
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
# ==============================================================================
"""Implementation of SpineNet model.
...
...
official/legacy/detection/modeling/base_model.py
View file @
32e4ca51
# 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/legacy/detection/modeling/checkpoint_utils.py
View file @
32e4ca51
# 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/legacy/detection/modeling/factory.py
View file @
32e4ca51
# 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/legacy/detection/modeling/learning_rates.py
View file @
32e4ca51
# 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.
...
...
@@ -61,7 +61,7 @@ class CosineLearningRateWithLinearWarmup(
"""Class to generate learning rate tensor."""
def
__init__
(
self
,
total_steps
,
params
):
"""Creates the co
n
sine learning rate tensor with linear warmup."""
"""Creates the cosine learning rate tensor with linear warmup."""
super
(
CosineLearningRateWithLinearWarmup
,
self
).
__init__
()
self
.
_total_steps
=
total_steps
assert
isinstance
(
params
,
(
dict
,
params_dict
.
ParamsDict
))
...
...
official/legacy/detection/modeling/losses.py
View file @
32e4ca51
# 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/legacy/detection/modeling/maskrcnn_model.py
View file @
32e4ca51
# 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/legacy/detection/modeling/olnmask_model.py
View file @
32e4ca51
# 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/legacy/detection/modeling/optimizers.py
View file @
32e4ca51
# 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/legacy/detection/modeling/retinanet_model.py
View file @
32e4ca51
# 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/legacy/detection/modeling/shapemask_model.py
View file @
32e4ca51
# 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/legacy/detection/ops/__init__.py
View file @
32e4ca51
# 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/legacy/detection/ops/nms.py
View file @
32e4ca51
# 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/legacy/detection/ops/postprocess_ops.py
View file @
32e4ca51
# 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/legacy/detection/ops/roi_ops.py
View file @
32e4ca51
# 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/legacy/detection/ops/spatial_transform_ops.py
View file @
32e4ca51
# 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/legacy/detection/ops/target_ops.py
View file @
32e4ca51
# 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/legacy/detection/utils/__init__.py
View file @
32e4ca51
# 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/legacy/detection/utils/box_utils.py
View file @
32e4ca51
# 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
…
3
4
5
6
7
8
9
10
11
…
39
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