Skip to main content
Module

x/netsaur/mod.ts>tensor6D

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

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

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