import { tensor3D } from "https://deno.land/x/netsaur@0.2.14/src/core/tensor/tensor.ts";
Create a 3D tensor from the given 3D array.
tensor3D([
[
[1, 2, 3, 4],
[5, 6, 7, 8],
],
[
[1, 2, 3, 4],
[5, 6, 7, 8],
],
]);
Parameters
values: Array3D