Skip to main content
Module

x/netsaur/web.ts>tensor5D

Powerful machine learning, accelerated by WebGPU
Go to Latest
function tensor5D
import { tensor5D } from "https://deno.land/x/netsaur@0.2.8/web.ts";

Create a 5D tensor from the given 5D array.

tensor5D([
  [
    [
      [
        [1, 2, 3],
        [4, 5, 6],
      ],
      [
        [1, 2, 3],
        [4, 5, 6],
      ],
    ],
    [
      [
        [1, 2, 3],
        [4, 5, 6],
      ],
      [
        [1, 2, 3],
        [4, 5, 6],
      ],
    ],
  ],
]);