Unclaimed project
Are you a maintainer of transformers.js? Claim this project to take control of your public changelog and roadmap.
Changelog
State-of-the-art Machine Learning for the web. Run π€ Transformers directly in your browser, with no need for a server!
Add support for EdgeTAM in https://github.com/huggingface/transformers.js/pull/1454
Add support for Supertonic TTS in https://github.com/huggingface/transformers.js/pull/1459
Example:
import { pipeline } from '@huggingface/transformers';
const tts = await pipeline('text-to-speech', 'onnx-community/Supertonic-TTS-ONNX');
const input_text = 'This is really cool!';
const audio = await tts(input_text, {
speaker_embeddings: 'https://huggingface.co/onnx-community/Supertonic-TTS-ONNX/resolve/main/voices/F1.bin',
});
await audio.save('output.wav');
Add support for SAM2 and SAM3 (Tracker) in https://github.com/huggingface/transformers.js/pull/1461
Remove Metaspace add_prefix_space logic in https://github.com/huggingface/transformers.js/pull/1451
ImageProcessor preprocess uses image_std for fill value by @NathanKolbas in https://github.com/huggingface/transformers.js/pull/1455
Full Changelog: https://github.com/huggingface/transformers.js/compare/3.7.6...3.8.0