/web-transformers

Transformer neural networks in the browser

Primary LanguageTypeScriptMIT LicenseMIT

web-transformers

Build and Test

This library enables you to run huggingface transformer models directly in the browser. It accomplishes this by running the models using the ONNX Runtime JavaScript API and by implementing its own JavaScript-only tokenization library.

At the moment, it is compatible with Google's T5 models, but it was designed to be expanded. I hope to support GPT2, Roberta, and InCoder in the future.

Usage

The following example code shows how to load a tokenizer and a transformer model. It then uses those objects to create a generate functions which generates output text from input text.

import { AutoTokenizer, T5ForConditionalGeneration } from 'web-transformers';

// Load the tokenizer and model
const tokenizer = AutoTokenizer.fromPretrained(modelId, modelsPath);
const model = new T5ForConditionalGeneration(modelId, modelsPath);

// Generate text using Seq2Seq
async function generate(inputText: string) {
    // Tokenize the text
    const inputTokenIds = await tokenizer.encode(inputText);
    // Generate output
    const generationOptions = {
        "maxLength": 50,
        "topK": 10,
    };
    const outputTokenIds = await model.generate(inputTokenIds, generationOptions);
    // Convert output tokens into text
    const outputText = await tokenizer.decode(finalOutputTokenIds, true);
    return outputText;
};

// Translate
console.log(await generate("translate English to French: Hello World!"));

Sample Web App

This repo contains a sample nextjs app that translates text using a transformer neural network.

First build the library:

git clone git@github.com:praeclarum/web-transformers.git
cd web-transformers
npm i

Now, build the sample:

cd sample
npm i

Before running the sample, you need to download the model files that will be executed. You can do this by running the following command:

npm run download_models

Then you can run the sample with:

npm run dev

Models

Currently only the T5 network is supported.

Sampling

The neural network outputs the logarithm of the probability of each token. In order to get a token, a probabilistic sample has to be taken. The following algorithms are implemented:

  • Greedy: Take the token with the highest probability.
  • Top-k: Take the top-k tokens with the highest probability.

Sponsorship

This library was made possible thanks to the financial support of Reflect. Thanks Reflect!

License

Copyright © 2022 Frank A. Krueger. This project is MIT licensed.