Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix glitch in documentation for the split operation. #18848

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions keras/ops/numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4814,9 +4814,6 @@ def split(x, indices_or_sections, axis=0):

Args:
x: Input tensor.
indices_or_sections: Either an integer indicating the number of
sections along `axis` or a list of integers indicating the indices
along `axis` at which the tensor is split.
indices_or_sections: If an integer, N, the tensor will be split into N
equal sections along `axis`. If a 1-D array of sorted integers,
the entries indicate indices at which the tensor will be split
Expand Down