New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

base64-to-tensor

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-to-tensor

a pure js convert a base64 to a tensor object for node

latest
Source
npmnpm
Version
1.2.16
Version published
Weekly downloads
14
40%
Maintainers
1
Weekly downloads
 
Created
Source

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:

  • size and portablity required is drastically less since you do not need cairo or any of the native img dev converters.
  • speed is also faster since the calcs are done at hand without needing to bridge any calls.
  • 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

Keywords

tensorflow

FAQs

Package last updated on 05 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts