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
49b61fe4
Commit
49b61fe4
authored
Apr 04, 2022
by
Mark Daoust
Committed by
A. Unique TensorFlower
Apr 04, 2022
Browse files
Remove the docs tests.
PiperOrigin-RevId: 439396600
parent
d22500b3
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
109 deletions
+16
-109
official/utils/docs/README.md
official/utils/docs/README.md
+12
-0
official/utils/docs/build_all_api_docs.py
official/utils/docs/build_all_api_docs.py
+1
-2
official/utils/docs/build_all_api_docs_test.py
official/utils/docs/build_all_api_docs_test.py
+0
-50
official/utils/docs/build_nlp_api_docs.py
official/utils/docs/build_nlp_api_docs.py
+1
-2
official/utils/docs/build_orbit_api_docs.py
official/utils/docs/build_orbit_api_docs.py
+1
-2
official/utils/docs/build_orbit_api_docs_test.py
official/utils/docs/build_orbit_api_docs_test.py
+0
-51
official/utils/docs/build_vision_api_docs.py
official/utils/docs/build_vision_api_docs.py
+1
-2
No files found.
official/utils/docs/README.md
0 → 100644
View file @
49b61fe4
# Docs generation scripts for TensorFlow Models
The scripts here are used to generate api-reference pages for tensorflow.org.
The scripts require tensorflow_docs, which can be installed directly from
github:
```
$> pip install -U git+https://github.com/tensorflow/docs
$> python build_all_api_docs.py --output_dir=/tmp/tfm_docs
```
official/utils/docs/build_all_api_docs.py
View file @
49b61fe4
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
Example:
Example:
$> pip install -U git+https://github.com/tensorflow/docs
$> pip install -U git+https://github.com/tensorflow/docs
$> python build_nlp_api_docs \
$> python build_nlp_api_docs.py --output_dir=/tmp/api_docs
--output_dir=/tmp/api_docs
"""
"""
import
pathlib
import
pathlib
...
...
official/utils/docs/build_all_api_docs_test.py
deleted
100644 → 0
View file @
d22500b3
# Copyright 2022 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.
"""Tests for official.tools.build_docs."""
import
os
import
shutil
import
tensorflow
as
tf
from
official.utils.docs
import
build_all_api_docs
class
BuildDocsTest
(
tf
.
test
.
TestCase
):
def
setUp
(
self
):
super
(
BuildDocsTest
,
self
).
setUp
()
self
.
workdir
=
self
.
get_temp_dir
()
if
os
.
path
.
exists
(
self
.
workdir
):
shutil
.
rmtree
(
self
.
workdir
)
os
.
makedirs
(
self
.
workdir
)
def
test_api_gen
(
self
):
build_all_api_docs
.
gen_api_docs
(
code_url_prefix
=
"https://github.com/tensorflow/models/blob/master/tensorflow_models"
,
site_path
=
"tf_modeling/api_docs/python"
,
output_dir
=
self
.
workdir
,
project_short_name
=
"tfm"
,
project_full_name
=
"TensorFlow Modeling"
,
search_hints
=
True
)
# Check that the "defined in" section is working
with
open
(
os
.
path
.
join
(
self
.
workdir
,
"tfm.md"
))
as
f
:
content
=
f
.
read
()
self
.
assertIn
(
"__init__.py"
,
content
)
if
__name__
==
"__main__"
:
tf
.
test
.
main
()
official/utils/docs/build_nlp_api_docs.py
View file @
49b61fe4
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
Example:
Example:
$> pip install -U git+https://github.com/tensorflow/docs
$> pip install -U git+https://github.com/tensorflow/docs
$> python build_nlp_api_docs \
$> python build_nlp_api_docs.py --output_dir=/tmp/api_docs
--output_dir=/tmp/api_docs
"""
"""
import
pathlib
import
pathlib
...
...
official/utils/docs/build_orbit_api_docs.py
View file @
49b61fe4
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
Example:
Example:
$> pip install -U git+https://github.com/tensorflow/docs
$> pip install -U git+https://github.com/tensorflow/docs
$> python build_orbit_api_docs \
$> python build_orbit_api_docs.py --output_dir=/tmp/api_docs
--output_dir=/tmp/api_docs
"""
"""
from
absl
import
app
from
absl
import
app
from
absl
import
flags
from
absl
import
flags
...
...
official/utils/docs/build_orbit_api_docs_test.py
deleted
100644 → 0
View file @
d22500b3
# Copyright 2022 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.
"""Tests for official.tools.build_docs."""
import
os
import
shutil
import
tensorflow
as
tf
from
official.utils.docs
import
build_orbit_api_docs
class
BuildDocsTest
(
tf
.
test
.
TestCase
):
def
setUp
(
self
):
super
(
BuildDocsTest
,
self
).
setUp
()
self
.
workdir
=
self
.
get_temp_dir
()
if
os
.
path
.
exists
(
self
.
workdir
):
shutil
.
rmtree
(
self
.
workdir
)
os
.
makedirs
(
self
.
workdir
)
def
test_api_gen
(
self
):
build_orbit_api_docs
.
gen_api_docs
(
code_url_prefix
=
"https://github.com/tensorflow/models/blob/master/orbit"
,
site_path
=
"/api_docs/python"
,
output_dir
=
self
.
workdir
,
project_short_name
=
"orbit"
,
project_full_name
=
"Orbit"
,
search_hints
=
True
)
# Check that the "defined in" section working
with
open
(
os
.
path
.
join
(
self
.
workdir
,
"orbit.md"
))
as
f
:
content
=
f
.
read
()
self
.
assertIn
(
"__init__.py"
,
content
)
if
__name__
==
"__main__"
:
tf
.
test
.
main
()
official/utils/docs/build_vision_api_docs.py
View file @
49b61fe4
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
...
@@ -17,8 +17,7 @@ r"""Tool to generate api_docs for tensorflow_models/official library.
Example:
Example:
$> pip install -U git+https://github.com/tensorflow/docs
$> pip install -U git+https://github.com/tensorflow/docs
$> python build_vision_api_docs \
$> python build_vision_api_docs.py --output_dir=/tmp/api_docs
--output_dir=/tmp/api_docs
"""
"""
import
pathlib
import
pathlib
...
...
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