Transformers in the Browser
Laserbeak enables developers to run transformer models in the browser/Electron using WebGPU.
It is designed to efficiently manage models by caching them in IndexedDB and sharing weights between encoder-decoder models for optimal performance.
To see what it can do, check out our:
🌟 Features
- Run transformer models in the browser using WebGPU
- Built on top of a custom Rust runtime for performance
- Efficient model management with caching and weight sharing
- Easy-to-use API for loading and running models
⚡️ Quick start
Install Laserbeak using npm:
npm i laserbeak
📚 Usage
Here's a simple example of how to load and run a model using Laserbeak:
import {
SessionManager,
AvailableModels,
InferenceSession,
} from "@rumbl/laserbeak";
let manager = new SessionManager();
let modelSession = await manager.loadModel(AvailableModels.FLAN_T5_BASE, () =>
console.log("Loaded successfully!")
);
await session.run(prompt, (output: string) => {
console.log(output);
});
🚀 Roadmap
Laserbeak is still a pre_pre_alpha project, here's our roadmap:
Stay tuned for exciting updates!
💪 Contributing
We welcome contributions to Laserbeak!