Skip to content

Commit

Permalink
Update symbols list
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Aug 29, 2023
1 parent 24416fe commit 9008ec4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
2 changes: 1 addition & 1 deletion scripts/autogen.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"keras_tuner": "https://github.com/keras-team/keras-tuner/tree/v1.3.5/",
"keras_cv": "https://github.com/keras-team/keras-cv/tree/v0.6.1/",
"keras_nlp": "https://github.com/keras-team/keras-nlp/tree/v0.6.1/",
"keras_core": "https://github.com/keras-team/keras-core/tree/v0.1.3/",
"keras_core": "https://github.com/keras-team/keras-core/tree/v0.1.5/",
}
USE_MULTIPROCESSING = False

Expand Down
37 changes: 30 additions & 7 deletions scripts/keras_core_api_master.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,9 +837,12 @@
"keras_core.ops.append",
"keras_core.ops.arange",
"keras_core.ops.arccos",
# "keras_core.ops.arccosh",
"keras_core.ops.arcsin",
"keras_core.ops.arcsinh",
"keras_core.ops.arctan",
"keras_core.ops.arctan2",
"keras_core.ops.arctanh",
"keras_core.ops.argmax",
"keras_core.ops.argmin",
"keras_core.ops.argsort",
Expand All @@ -854,12 +857,14 @@
"keras_core.ops.conjugate",
"keras_core.ops.copy",
"keras_core.ops.cos",
"keras_core.ops.cosh",
"keras_core.ops.count_nonzero",
"keras_core.ops.cross",
"keras_core.ops.cumprod",
"keras_core.ops.cumsum",
"keras_core.ops.diag",
"keras_core.ops.diagonal",
"keras_core.ops.digitize",
"keras_core.ops.divide",
"keras_core.ops.dot",
"keras_core.ops.einsum",
Expand Down Expand Up @@ -925,6 +930,7 @@
"keras_core.ops.round",
"keras_core.ops.sign",
"keras_core.ops.sin",
"keras_core.ops.sinh",
"keras_core.ops.size",
"keras_core.ops.sort",
"keras_core.ops.split",
Expand Down Expand Up @@ -994,9 +1000,12 @@
"keras_core.ops.cast",
"keras_core.ops.convert_to_numpy",
"keras_core.ops.convert_to_tensor",
"keras_core.ops.extract_sequences",
"keras_core.ops.in_top_k",
"keras_core.ops.logsumexp",
"keras_core.ops.qr",
"keras_core.ops.rsqrt",
"keras_core.ops.segment_max",
"keras_core.ops.scatter",
"keras_core.ops.scatter_update",
"keras_core.ops.segment_sum",
Expand All @@ -1008,13 +1017,27 @@
"keras_core.ops.while_loop",
],
},
# {
# "path": "image/",
# "title": "Image ops",
# "generate": [
# "keras_core.ops.image.resize",
# ],
# },
{
"path": "image/",
"title": "Image ops",
"generate": [
"keras_core.ops.image.resize",
"keras_core.ops.image.affine_transform",
"keras_core.ops.image.extract_patches",
],
},
{
"path": "fft/",
"title": "FFT ops",
"generate": [
"keras_core.ops.fft",
"keras_core.ops.fft2",
"keras_core.ops.rfft",
"keras_core.ops.stft",
"keras_core.ops.irfft",
"keras_core.ops.istft",
],
},
],
},
{
Expand Down

0 comments on commit 9008ec4

Please sign in to comment.