tf_agents.utils.composite.slice_to
Stay organized with collections
Save and categorize content based on your preferences.
Slice a composite tensor along axis
from 0 to end
.
tf_agents.utils.composite.slice_to(
tensor, axis, end
)
Examples:
slice_to(tensor, 2, -1) === tensor[:, :, :-1]
sparse_to_dense(slice_to(sparse_tensor, 2, -1))
=== sparse_to_dense(sparse_tensor)[:, :, :-1]
Args |
tensor
|
A Tensor or SparseTensor .
|
axis
|
A python integer.
|
end
|
A 0D scalar.
|
Returns |
The sliced composite tensor.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-04-26 UTC.
[null,null,["Last updated 2024-04-26 UTC."],[],[],null,["# tf_agents.utils.composite.slice_to\n\n\u003cbr /\u003e\n\n|-------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/agents/blob/v0.19.0/tf_agents/utils/composite.py#L179-L220) |\n\nSlice a composite tensor along `axis` from 0 to `end`. \n\n tf_agents.utils.composite.slice_to(\n tensor, axis, end\n )\n\n#### Examples:\n\n slice_to(tensor, 2, -1) === tensor[:, :, :-1]\n sparse_to_dense(slice_to(sparse_tensor, 2, -1))\n === sparse_to_dense(sparse_tensor)[:, :, :-1]\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|----------|-------------------------------|\n| `tensor` | A `Tensor` or `SparseTensor`. |\n| `axis` | A python integer. |\n| `end` | A `0D` scalar. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| The sliced composite tensor. ||\n\n\u003cbr /\u003e"]]