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
10ef6bbe
Commit
10ef6bbe
authored
Nov 05, 2021
by
Abdullah Rashwan
Committed by
A. Unique TensorFlower
Nov 05, 2021
Browse files
Internal change
PiperOrigin-RevId: 407843815
parent
6b2e7683
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
129 deletions
+0
-129
official/vision/keras_cv/contributing.md
official/vision/keras_cv/contributing.md
+0
-21
official/vision/keras_cv/losses/__init__.py
official/vision/keras_cv/losses/__init__.py
+0
-17
official/vision/keras_cv/ops/__init__.py
official/vision/keras_cv/ops/__init__.py
+0
-19
official/vision/keras_cv/requirements.txt
official/vision/keras_cv/requirements.txt
+0
-2
official/vision/keras_cv/setup.py
official/vision/keras_cv/setup.py
+0
-70
No files found.
official/vision/keras_cv/contributing.md
deleted
100644 → 0
View file @
6b2e7683
## Contributing to KerasCV
Patches to KerasCV are welcome!
The source-of-truth repository lives under
[
TF Model Garden Vision
](
https://github.com/tensorflow/models/official/vision/keras_cv
)
,
and is mirrored as a read-only repository under
[
keras-team/keras-cv
](
https://github.com/keras-team/keras-cv
)
.
Contributions should be made as PRs to the TF Model Garden repository.
This is to ensure the codebase is rigorously tested with state-of-art models
on different accelerators.
In the long run, we will move development to the current repository
`keras-team/keras-cv`
.
## :heavy_check_mark: Contributor checklist
1.
Ensure you have signed the
[
Contributor License Agreement
](
https://cla.developers.google.com/about/google-individual?csw=1
)
.
*
All code contributors are required to sign a Contributor License Agreement.
*
Please read this
[
troubleshooting guide
](
Contributor-License-Agreements#troubleshooting-clas
)
if you encounter an issue.
2.
Please review the
[
contribution guidelines
](
https://github.com/tensorflow/models/wiki/How-to-contribute
)
.
3.
Check if your changes are consistent with the
[
TensorFlow coding style
](
https://www.tensorflow.org/community/contribute/code_style
)
.
official/vision/keras_cv/losses/__init__.py
deleted
100644 → 0
View file @
6b2e7683
# Copyright 2021 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.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Keras-CV layers package definition."""
from
official.vision.keras_cv.losses.focal_loss
import
FocalLoss
from
official.vision.keras_cv.losses.loss_utils
import
multi_level_flatten
official/vision/keras_cv/ops/__init__.py
deleted
100644 → 0
View file @
6b2e7683
# Copyright 2021 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.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Keras-CV layers package definition."""
from
official.vision.keras_cv.ops.anchor_generator
import
AnchorGenerator
from
official.vision.keras_cv.ops.box_matcher
import
BoxMatcher
from
official.vision.keras_cv.ops.iou_similarity
import
IouSimilarity
from
official.vision.keras_cv.ops.target_gather
import
TargetGather
official/vision/keras_cv/requirements.txt
deleted
100644 → 0
View file @
6b2e7683
numpy
scipy
official/vision/keras_cv/setup.py
deleted
100644 → 0
View file @
6b2e7683
# Copyright 2021 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.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Setup script."""
import
os
from
setuptools
import
find_packages
from
setuptools
import
setup
version
=
'0.0.1'
def
_get_requirements
():
"""Parses requirements.txt file."""
install_requires_tmp
=
[]
dependency_links_tmp
=
[]
with
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'./requirements.txt'
),
'r'
)
as
f
:
for
line
in
f
:
package_name
=
line
.
strip
()
# Skip empty line or comments starting with "#".
if
not
package_name
or
package_name
[
0
]
==
'#'
:
continue
if
package_name
.
startswith
(
'-e '
):
dependency_links_tmp
.
append
(
package_name
[
3
:].
strip
())
else
:
install_requires_tmp
.
append
(
package_name
)
return
install_requires_tmp
,
dependency_links_tmp
install_requires
,
dependency_links
=
_get_requirements
()
install_requires
.
append
(
'tf-nightly'
)
install_requires
.
append
(
'tensorflow-datasets'
)
setup
(
name
=
'keras-cv'
,
version
=
version
,
description
=
'Keras Computer Vision Library'
,
url
=
'https://github.com/keras-team/keras-cv'
,
author
=
'The Keras authors'
,
author_email
=
'keras-team@google.com'
,
license
=
'Apache License 2.0'
,
install_requires
=
install_requires
,
classifiers
=
[
'Programming Language :: Python'
,
'Programming Language :: Python :: 3.6'
,
'Operating System :: Unix'
,
'Operating System :: Microsoft :: Windows'
,
'Operating System :: MacOS'
,
'Intended Audience :: Science/Research'
,
'Topic :: Scientific/Engineering'
,
'Topic :: Software Development'
],
packages
=
find_packages
(
exclude
=
(
'tests'
,)),
exclude_package_data
=
{
''
:
[
'*_test.py'
,],},
dependency_links
=
dependency_links
,
python_requires
=
'>=3.6'
,
)
Prev
1
2
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