1.2.16 • Published 9 months ago

base64-to-tensor v1.2.16

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

base64-to-tensor

Build and lint

pure js convert a base64 image to tensor

Installation

npm i base64-to-tensor --save

Getting Started

Make sure to have @tensorflow/tfjs-core installed and a valid tensorflow backend set. You also need to pick between sync package jpeg-js or async package sharp.

# pure js full sync blocking installation
npm i @tensorflow/tfjs-core jpeg-js
# if going to use async non blocking
npm i @tensorflow/tfjs-core sharp

View the convert.test.ts file for an example setup.

import { convert, convertAsync } from "base64-to-tensor";
import { setBackend } from "@tensorflow/tfjs-core";
import "@tensorflow/tfjs-backend-wasm";

await setBackend("wasm");

const tensor = convert(mybase64); // The base64 must be a valid jpeg image.
// or use native sharp for increased performance 2x [Expiremental]
const tensor = await convertAsync(mybase64);
// output example
// {
//       kept: false,
//       isDisposedInternal: false,
//       shape: [189, 300, 3],
//       dtype: "int32",
//       size: 170100,
//       strides: [900, 3],
//       dataId: { id: 1 },
//       id: 1,
//       rankType: "3",
//     }

Why

The benefits of using pure js to calc the image is in a couple areas:

  1. size and portablity required is drastically less since you do not need cairo or any of the native img dev converters.
  2. speed is also faster since the calcs are done at hand without needing to bridge any calls.
  3. can use tensors in worker threads - allows for properly using Tensorflow wasm backends in an API service 🥳.

Benchmarks

Examples of some test ran on a mac m1(64gb):

Namecharssizesyncasync
jpeg2679126.16 KB100ms50ms
1.2.9

9 months ago

1.2.12

9 months ago

1.2.13

9 months ago

1.2.10

9 months ago

1.2.11

9 months ago

1.2.16

9 months ago

1.2.14

9 months ago

1.2.15

9 months ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.20

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago