Fotie M. Constant

fotiecodes
Ā·

AI & ML interests

Full-stack, AI & ML interests

Recent Activity

liked a Space 20 days ago
hexgrad/Kokoro-TTS
upvoted an article about 1 month ago
o3-mini & Deepseek-R1
liked a Space about 1 month ago
webml-community/kokoro-web
View all activity

Organizations

fotiecodes organization's profile picture

fotiecodes's activity

upvoted an article about 1 month ago
reacted to Xenova's post with ā¤ļøšŸ¤šŸš€šŸ”„ about 1 month ago
view post
Post
6459
Introducing Kokoro.js, a new JavaScript library for running Kokoro TTS, an 82 million parameter text-to-speech model, 100% locally in the browser w/ WASM. Powered by šŸ¤— Transformers.js. WebGPU support coming soon!
šŸ‘‰ npm i kokoro-js šŸ‘ˆ

Try it out yourself: webml-community/kokoro-web
Link to models/samples: onnx-community/Kokoro-82M-ONNX

You can get started in just a few lines of code!
import { KokoroTTS } from "kokoro-js";

const tts = await KokoroTTS.from_pretrained(
  "onnx-community/Kokoro-82M-ONNX",
  { dtype: "q8" }, // fp32, fp16, q8, q4, q4f16
);

const text = "Life is like a box of chocolates. You never know what you're gonna get.";
const audio = await tts.generate(text,
  { voice: "af_sky" }, // See `tts.list_voices()`
);
audio.save("audio.wav");

Huge kudos to the Kokoro TTS community, especially taylorchu for the ONNX exports and Hexgrad for the amazing project! None of this would be possible without you all! šŸ¤—

The model is also extremely resilient to quantization. The smallest variant is only 86 MB in size (down from the original 326 MB), with no noticeable difference in audio quality! šŸ¤Æ
Ā·
upvoted an article 6 months ago
view article
Article

Llama 3.1 - 405B, 70B & 8B with multilinguality and long context

ā€¢ 230
New activity in fotiecodes/lanadoc_dataset 6 months ago