Skip to content

Commit 89da3b2

Browse files
add back keras_cv
1 parent 6a339bc commit 89da3b2

File tree

12 files changed

+887
-0
lines changed

12 files changed

+887
-0
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jupyter
1111
pydot
1212
boto3
1313
tensorflow
14+
keras-cv
1415
keras-tuner
1516
tf_keras
1617
keras-hub-nightly # TODO: update to keras-hub.

scripts/api_master.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from kt_api_master import KT_API_MASTER
2+
from cv_api_master import CV_API_MASTER
23
from hub_api_master import HUB_API_MASTER
34

45
API_MASTER = {
@@ -1821,6 +1822,7 @@
18211822
],
18221823
},
18231824
KT_API_MASTER,
1825+
CV_API_MASTER,
18241826
HUB_API_MASTER,
18251827
],
18261828
}

scripts/autogen.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,8 @@ def make_md_source_for_entry(self, entry, path_stack, title_stack):
539539
"missing {{toc}} tag." % (template_path,)
540540
)
541541
template = template.replace("{{toc}}", toc)
542+
if "keras_cv/" in path_stack and "models/" in path_stack:
543+
template = render_tags.render_tags(template, keras_cv)
542544
if "keras_hub/" in path_stack and "models/" in path_stack:
543545
template = render_tags.render_tags(template, keras_hub)
544546
source_path = Path(self.md_sources_dir) / Path(*path_stack)

0 commit comments

Comments
 (0)