Skip to content

Commit 93cea12

Browse files
committed
Internal change.
PiperOrigin-RevId: 492558048
1 parent 85b7d97 commit 93cea12

File tree

7 files changed

+33
-6
lines changed

7 files changed

+33
-6
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright 2022 The TensorFlow Authors. All Rights Reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+

official/projects/qat/vision/configs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Configs package definition."""
16-
16+
from official.projects.qat.vision.configs import common
1717
from official.projects.qat.vision.configs import image_classification
1818
from official.projects.qat.vision.configs import retinanet
1919
from official.projects.qat.vision.configs import semantic_segmentation

official/projects/qat/vision/modeling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414

1515
"""Modeling package definition."""
16-
16+
from official.projects.qat.vision.modeling import heads
1717
from official.projects.qat.vision.modeling import layers

official/projects/qat/vision/modeling/heads/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Heads package definition."""
17-
1816
from official.projects.qat.vision.modeling.heads.dense_prediction_heads import RetinaNetHeadQuantized

official/projects/qat/vision/modeling/layers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Layers package definition."""
16-
16+
from official.projects.qat.vision.modeling.layers import nn_layers
1717
from official.projects.qat.vision.modeling.layers.nn_blocks import BottleneckBlockQuantized
1818
from official.projects.qat.vision.modeling.layers.nn_blocks import Conv2DBNBlockQuantized
1919
from official.projects.qat.vision.modeling.layers.nn_blocks import InvertedBottleneckBlockQuantized
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright 2022 The TensorFlow Authors. All Rights Reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+

official/projects/qat/vision/tasks/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@
1313
# limitations under the License.
1414

1515
"""Tasks package definition."""
16-
1716
from official.projects.qat.vision.tasks import image_classification
17+
from official.projects.qat.vision.tasks import retinanet
18+
from official.projects.qat.vision.tasks import semantic_segmentation

0 commit comments

Comments
 (0)