58 comments

  • dawdler-purge9 hours ago
    I created a CLI wrapper for Kitten TTS: <a href="https:&#x2F;&#x2F;github.com&#x2F;newptcai&#x2F;purr" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;newptcai&#x2F;purr</a><p>BTW, it seems that kitten (the Python package) has the following chain of dependencies: kittentts → misaki[en] → spacy-curated-transformers<p>So if you install it directly via uv, it will pull torch and NVIDIA CUDA packages (several GB), which are not needed to run kitten.
    • cristoperb9 hours ago
      Thanks, your install script worked for me.<p>In case it helps anyone else, the first time I tried to run purr I got &quot;OSError: PortAudio library not found&quot;. Installing libportaudio (apt install libportaudio2) got it running.
      • Mic923 hours ago
        Also did create a cli. I had to fork the project and removed one unused import which allowed me to remove a lot of unused ml libraries: <a href="https:&#x2F;&#x2F;github.com&#x2F;Mic92&#x2F;puss-say" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Mic92&#x2F;puss-say</a>
        • Mic923 hours ago
          Unfortunately upstream never looks at any pull requests.
    • yjftsjthsd-h9 hours ago
      Thank you so much, that fixes an enormous pain point I was hitting. It&#x27;s not just the size, that dependency chain was actually breaking on my machine and failing to install. Are we losing something by dropping the extra dependencies?
      • dawdler-purge8 hours ago
        I don&#x27;t think so. It is perhaps a bug to have this unnecessary dependency. I expect the author of kitten to fix this soon.
        • rohan_joshi5 hours ago
          thanks a lot for helping w this. yes i&#x27;ll fix this asap.
          • dawdler-purge5 hours ago
            Please let me know when this has been fixed. I will update purr to make the installation steps simpler.
  • kevin4216 hours ago
    What I love about OpenClaw is that I was able to send it a message on Discord with just this github URL and it started sending me voice messages using it within a few minutes. It also gave me a bunch of different benchmarks and sample audio.<p>I&#x27;m impressed with the quality given the size. I don&#x27;t love the voices, but it&#x27;s not bad. Running on an intel 9700 CPU, it&#x27;s about 1.5x realtime using the 80M model. It wasn&#x27;t any faster running on a 3080 GPU though.
    • rohan_joshi16 hours ago
      yeah we&#x27;ll add some more professional-sounding voices and also support for diy custom voices. we tried to add more anime&#x2F;cartoon-ish voices to showcase the expressivity.<p>Regarding running on the 3080 gpu, can you share more details on github issues, discord or email? it should be blazing fast on that. i&#x27;ll add an example to run the model on gpu too.
      • nine_k6 hours ago
        I wonder if it&#x27;s possible to guide the intonation in any way.
    • nsnzjznzbx12 hours ago
      Oh that is a good use case. Don&#x27;t connect to email and all that insecure stuff. But as a sandbox for &quot;try this out and deploy a demo&quot;. Got me thinking!
    • Aerroon9 hours ago
      I&#x27;m jealous. It took me <i>far</i> longer and much more frustration to get it to run.<p>Had to get the right Python version and make sure it didn&#x27;t break anything with the previous Python version. A friend suggested using Docker, so I started down that path until I realized I&#x27;d probably have to set the whole thing up there myself. Eventually got it to run and I <i>think</i> I didn&#x27;t break anything else.<p>I hate Python so much.
      • stavros6 hours ago
        Nowadays these frustrations shouldn&#x27;t be a thing any more. If the author used uv, the script would be able to install its own dependencies and just work.
        • rohan_joshi5 hours ago
          yeah let me add uv and conda support to make it easier.
          • Barbing2 hours ago
            One of the most responsive developers I’ve ever seen, kudos
      • RobertoG9 hours ago
        why you don&#x27;t use some kind of environment, Conda or something like that?
        • deathanatos7 hours ago
          I used uv, which should have generated a stable environment. No dice. There&#x27;s a bug in spacey.<p>I suspect success is highly variable on macOS vs. Linux; the spacey bug is only in newer (3.14 only or later) Pythons, which Linux will have.
          • rohan_joshi5 hours ago
            thanks for pointing these errors out. we&#x27;re looking into this and will help fix this.
        • sysworld8 hours ago
          Even the built in venv would&#x27;ve solved most of his issues too. But I agree with him in that Python documentation could be better. Or have a more unified system in place. I feel like every other how to doc I read on setting something Python up uses a different environment containment product.
        • jacquesm7 hours ago
          Conda was fantastic up to some point last year and since then I&#x27;ve had quite a few unresolvable version issues with it. It is really annoying, especially when you&#x27;re tying multiple things together and each requires its own set of mutually exclusive specific versions of libraries. The latest like that was gnu radio and some out-of-tree stuff at the same time as a bluetooth library. High drama. I eventually gave up, rewrote the whole thing in a different language and it took less time than I had spent on trying to get the python solution duct-taped together.<p>I should learn to give up quicker.
        • Aerroon7 hours ago
          Because I need a new version of python very rarely (years go by). I don&#x27;t remember all the arcane incantations to set everything up.<p>I did eventually do that though, and I&#x27;m pretty sure I had to mess about with installing and uninstalling torch.<p>I dread using anything made in python because of this. It&#x27;s always annoying and never just works (if the version of python is incompatible, otherwise it&#x27;s fine) .
      • rohan_joshi5 hours ago
        damnn, really sorry for the inconv, looks like some folks are having bad env issues. we&#x27;re working on fixing this.
      • Teknomadix6 hours ago
        Two words; Nix Flakes
  • bobokaytop1 hour ago
    The size&#x2F;quality tradeoff here is interesting. 25MB for a TTS model that&#x27;s usable is a real achievement, but the practical bottleneck for most edge deployments isn&#x27;t model size -- it&#x27;s the inference latency on low-power hardware and the audio streaming architecture around it. Curious how this performs on something like a Raspberry Pi 4 for real-time synthesis. The voice quality tradeoff at that size usually shows up most in prosody and sentence-final intonation rather than phoneme accuracy.
  • geokon2 hours ago
    Very cool :) Look forward to trying it out<p>Maybe a dumb and slightly tangential question, (I don&#x27;t mean this as a criticism!) but why not release a command line executable?<p>Even the API looks like what you&#x27;d see in a manpage.<p>I get it wouldn&#x27;t be too much work for a user to actually make something like that, I&#x27;m just curious what the thought process is
    • rohan_joshi2 hours ago
      great idea, we&#x27;ll do that too. we just decided to launch an onnx first and get some feedback. we&#x27;ll be simplifying the process of running it everywhere including a command line executable.
  • jacquesm7 hours ago
    Good on device TTS is an amazing accessibility tool. Thank you for building this. Way too many of devices that use it rely on online services, this is much preferred.
    • rohan_joshi5 hours ago
      thanks a lot for the feedback. glad you liked it. we&#x27;re gonna be launching more tiny models across use-cases.
  • daneel_w13 hours ago
    A very clear improvement from the first set of models you released some time ago. I&#x27;m really impressed. Thanks for sharing it all.
    • rohan_joshi13 hours ago
      thanks a lot. yeah these models are way better than our previous launch. our 15M model now is better than our previous 80M model and we expect to continue seeing this rate of improvement.
  • _hzw9 hours ago
    I&#x27;d love to see a monolingual Japanese model sometime in the future. Qwen3-tts works for Japanese in general, but from time to time it will mix with some Mandarin in between, making it unusable.
    • meatmanek7 hours ago
      You could try a preprocessing step where you convert to hiragana, but I guess that would lose pitch accent information (e.g. 飴 vs 雨)
      • _hzw7 hours ago
        Exactly. Qwen only has one pitch accent for pure hiragana words, even though it actually work (removing mandarin mixed-in), which requires some great efforts to normalize text in order to disambiguate heteronyms, the result is (if you use voice cloning) your favorite CV speaking in some weird, unknown accent :)
    • rohan_joshi5 hours ago
      our next model(eta 3ish weeks) will support Japanese. would love to get your feedback then on how the quality is. can you share what usecase you want? would love to support it.
  • __fst__11 hours ago
    Was playing around a bit and for its size it&#x27;s very impressive. Just has issues pronounciating numbers. I tried to let it generate &quot;Startup finished in 135 ms.&quot;<p>I didn&#x27;t expect it to pronounciate &#x27;ms&#x27; correctly, but the number sounded just like noise. Eventually I got an acceptable result for the string &quot;Startup finished in one hundred and thirty five seconds.
    • rohan_joshi10 hours ago
      yeah we&#x27;re fixing this at the model level too. but in the meantime, there is a way to add text preprocessing for you, and if you have a special use-cased, claude code should be able to one-shot custom preprocessing. its the way that most existing tts models (including sota cloud ones) deal w numbers and units, they just convert it into string.
    • rohan_joshi10 hours ago
      thanks a lot for trying it and giving feedback. custom preprocessing will fix this for 95% of use-cases. and as i mentioned, this will be fixed at the model level in the next release.
      • magicalhippo10 hours ago
        I tried it with some &quot;hard mode&quot; text:<p><i>The above SECDED check-bit encoding can be implemented in a similar way, but since it uses only three-bit patterns, mapping syndromes to correction masks can be done with three-input AND gates.</i><p>It sounded quite good indeed for the normal English stuff, but I guess predictably was quite bad at the domain-specific words. It misspoke &quot;SECDED&quot;, had wrong emphasis on &quot;syndromes&quot;, and pronounced &quot;AND gates&quot; like &quot;and gates&quot;.<p>Could you give some example of what kind of preprocessing would help in this case? I tried some local LLMs, but they didn&#x27;t do a good job (maybe my prompts sucked).
    • nozzlegear10 hours ago
      &gt; <i>pronounciating</i><p>I&#x27;m not sure if you&#x27;re misspelling it deliberately or not, but the word you&#x27;re looking for is &quot;pronounce&quot; and it&#x27;s verb form &quot;pronouncing&quot;, as in &quot;It just has issues pronouncing numbers&quot; and &quot;I didn&#x27;t expect it to pronounce &#x27;ms&#x27; correctly.&quot;
      • fc417fc8028 hours ago
        He mixed pronounce with enunciate. It&#x27;s an understandable mistake IMO. (English also has annunciate. Truly a cursed language in many respects.)<p><a href="https:&#x2F;&#x2F;en.wiktionary.org&#x2F;wiki&#x2F;enunciate#English" rel="nofollow">https:&#x2F;&#x2F;en.wiktionary.org&#x2F;wiki&#x2F;enunciate#English</a>
  • ks204816 hours ago
    You should put examples comparing the 4 models you released - same text spoken by each.
    • rohan_joshi16 hours ago
      great idea, let me add this. meanwhile, you can try the models on our huggingface spaces demo here: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;spaces&#x2F;KittenML&#x2F;KittenTTS-Demo" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;spaces&#x2F;KittenML&#x2F;KittenTTS-Demo</a>
  • nsnzjznzbx12 hours ago
    They sound like cartoon voices... but I really like them I could listen to a book with those.
    • rohan_joshi12 hours ago
      yeah we tried to include those voices in this release to showcase the expressivity. but we&#x27;ve already started adding more professional sounding voices for prod use-cases.
  • Stevvo1 hour ago
    Found they struggle with numbers. Like, give them a random four digit number in a sentence and it fumbles.
  • rsmtjohn2 hours ago
    The &lt;25MB figure is what stands out. Been wanting to add TTS to a few Next.js projects for offline&#x2F;edge scenarios but model sizes have always made it impractical to ship.<p>At 25MB you can actually bundle it with the app. Going to test whether this works in a Vercel Edge Function context -- if latency is acceptable there it opens up a lot of use cases that currently require a round-trip to a hosted API.
  • boutell13 hours ago
    Great stuff. Is your team interested in the STT problem?
    • rohan_joshi13 hours ago
      Yes, we&#x27;ve started working on it and will have a range of stt models v soon. lmk if you have a prod use-case in mind?
      • Barbing9 hours ago
        Many of my use cases are similar to those of: Robert J. P. Oberg - (GitHub) ognistik<p>Perhaps his YouTube channel is worth a watch. This video from four months ago compares various STT tools: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;pKU9CABtnOw" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;pKU9CABtnOw</a><p>Speaking of apps that would, if I had to guess, love to integrate you:<p>FluidVoice is incredible and developing quickly. Handy is really hot right now. Also have VoiceInk out there, solid iOS option.<p>[ps-not parent commenter]
        • _boffin_6 hours ago
          Thank you for this link.
        • rohan_joshi5 hours ago
          got it, this helps a lot. thanks!
      • coder54311 hours ago
        From my point of view, Parakeet is not very good at formatting the output, so it would be nice if a small model focused on having nicely formatted (and correct) text, not just the lowest WER score. Rewarding the model for inserting logical line breaks, quotation marks, etc.
      • bavell11 hours ago
        Home Assistant integration a la Alexa would be awesome
  • PunchyHamster11 hours ago
    I ran install instructions and it took 7.1GB of deps, tf you mean &quot;tiny&quot; ?
    • rohan_joshi11 hours ago
      damnn, lemme fix it, sorry for that. we may have forgotten to remove the redundant dependencies. i&#x27;ll comment here once i push the change. thanks a lot for trying it and giving feedback.
      • deathanatos10 hours ago
        It&#x27;s mostly torch, I think. It pulls in NVIDIA libs (which … makes sense, I guess), and NVIDIA is just not at all judicious when it comes to disk space. I literally run out of disk trying to install this on Linux.<p>On macOS, it&#x27;s a markedly different experience: it&#x27;s only ~700 MiB there; I&#x27;m assuming b&#x2F;c no NVIDIA libs get pulled in, b&#x2F;c why would they.<p>For anyone who might want to play around with this: I can get down to ~3 GiB (&amp; about 1.3 GiB if you wipe your uv cache afterwards) on Linux if I add the following to the end of `pyproject.toml`:<p><pre><code> [tool.uv.sources] # This tells uv to use the specific index for torch, torchvision, and torchaudio torch = [ {index = &quot;pytorch-cpu&quot;} ] torchvision = [ {index = &quot;pytorch-cpu&quot;} ] torchaudio = [ {index = &quot;pytorch-cpu&quot;} ] [[tool.uv.index]] name = &quot;pytorch-cpu&quot; url = &quot;https:&#x2F;&#x2F;download.pytorch.org&#x2F;whl&#x2F;cpu&quot; </code></pre> &amp; add &quot;torch&quot; to the direct dependencies, b&#x2F;c otherwise it seems like uv is ignoring the source? (… which of course downloads a CPU-only torch.)<p>This is an example of what one sees under Linux:<p><pre><code> nvidia-nvjitlink-cu12 ------------------------------ 23.83 MiB&#x2F;37.44 MiB nvidia-curand-cu12 ------------------------------ 23.79 MiB&#x2F;60.67 MiB nvidia-cuda-nvrtc-cu12 ------------------------------ 23.87 MiB&#x2F;83.96 MiB nvidia-nvshmem-cu12 ------------------------------ 23.62 MiB&#x2F;132.66 MiB triton ------------------------------ 23.82 MiB&#x2F;179.55 MiB nvidia-cufft-cu12 ------------------------------ 23.76 MiB&#x2F;184.17 MiB nvidia-cusolver-cu12 ------------------------------ 23.84 MiB&#x2F;255.11 MiB nvidia-cusparselt-cu12 ------------------------------ 23.99 MiB&#x2F;273.89 MiB nvidia-cusparse-cu12 ------------------------------ 23.96 MiB&#x2F;274.86 MiB nvidia-nccl-cu12 ------------------------------ 23.79 MiB&#x2F;307.42 MiB nvidia-cublas-cu12 ------------------------------ 23.73 MiB&#x2F;566.81 MiB nvidia-cudnn-cu12 ------------------------------ 23.56 MiB&#x2F;674.02 MiB torch ------------------------------ 23.75 MiB&#x2F;873.22 MiB </code></pre> That&#x27;s not all the libraries, either, but you can see NVIDIA here is easily over 1 GiB.<p>It also then crashes for me, with:<p><pre><code> File &quot;KittenTTS&#x2F;.venv&#x2F;lib&#x2F;python3.14&#x2F;site-packages&#x2F;pydantic&#x2F;v1&#x2F;fields.py&quot;, line 576, in _set_default_and_type raise errors_.ConfigError(f&#x27;unable to infer type for attribute &quot;{self.name}&quot;&#x27;) pydantic.v1.errors.ConfigError: unable to infer type for attribute &quot;REGEX&quot; </code></pre> Which seems to be [this bug in spacey](<a href="https:&#x2F;&#x2F;github.com&#x2F;explosion&#x2F;spaCy&#x2F;issues&#x2F;13895" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;explosion&#x2F;spaCy&#x2F;issues&#x2F;13895</a>), so I&#x27;m going to have to try adding `&lt;3.14` to `requires-python` in `pyproject.toml` too I think. That is, for anyone wanting to try this out:<p><pre><code> -requires-python = &quot;&gt;=3.8&quot; +requires-python = &quot;&gt;=3.8,&lt;3.14&quot; </code></pre> (This isn&#x27;t really something KittenTTS should have to do, since this is a bug in spacey … and ideally, at some point, spacey will fix it.)<p>Also:<p><pre><code> + curated-tokenizers==0.0.9 </code></pre> This version is so utterly ancient that there aren&#x27;t wheels for it anymore, so that means a loooong wait while this builds. It&#x27;s pulled in via misaki, and my editor says your one import of misaki is unused.<p>Hilariously, removing it breaks but only on macOS machine. I think you&#x27;re using it solely for the side-effect that it tweaks phonemizer to use espeakng, but you can just do that tweak yourself, &amp; then I think that dependency can be dropped. That drops a good number of dependencies &amp; <i>really</i> speeds up the installation since we&#x27;re not compiling a bunch of stuff.<p>You need to add `phonemizer-fork` to your dependencies. (If you remove misaki, you&#x27;ll find this missing.)
        • rohan_joshi5 hours ago
          thanks a lot for sharing this, its v helpful for fixing the env issues. we&#x27;ll fix all of them by the weekend.
    • zeroq6 hours ago
      a classic &quot;how to draw an owl&quot; lol :)
  • tim-projects2 hours ago
    Only American voices? For some reason I&#x27;m only interested in Irish, British or Welsh accents. American is a no
    • foo421 hour ago
      minor nit to pick: Welsh accents are British accents as Wales is in Britain. In fact by some definitions it&#x27;s the most British part.<p>People from outside the UK often use British as synonymous with English, and in the context of accents, often a South East English accent or some sort of Received Pronunciation (RP) accent. Technically a &quot;British&quot; accent could be from anywhere in England, Scotland, or Wales, and therefore by extension might not even be the English language.<p>While I&#x27;m here, since it&#x27;s generally confusing, the UK is Great Britain and Northern Ireland. Great Britain is England, Scotland, and Wales.
  • armcat14 hours ago
    This is awesome, well done. Been doing lot of work with voice assistants, if you can replicate voice cloning Qwen3-TTS into this small factor, you will be absolute legends!
    • rohan_joshi14 hours ago
      thanks a lot, our voice cloning model will be out by May. we&#x27;re experimenting w some very cool ways of doing voice cloning at 15M but will have a range of models going upto 500M
      • armcat13 hours ago
        That&#x27;s sick, looking forward to it! You have my email in the profile, please let me know when you do!
  • magicalhippo16 hours ago
    A lot of good small TTS models in recent times. Most seem to struggle hard on prosody though.<p>Kokoro TTS for example has a very good Norwegian voice but the rhythm and emphasizing is often so out of whack the generated speech is almost incomprehensible.<p>Haven&#x27;t had time to check this model out yet, how does it fare here? What&#x27;s needed to improve the models in this area now that the voice part is more or less solved?
    • rohan_joshi15 hours ago
      small models struggle with prosody due to limited capacity. this version does much better than the precious one and is the best among other &lt;25MB models. Kokoro is a really good model for its size, its competitive on artificial analysis too. i think by the next release we should have something kokoro quality but a fifth of the size. Adding control for rhythm seems to be quite important too, and we should start looking at that for other languages.
      • magicalhippo11 hours ago
        Listened to the video examples, sounded very good though wasn&#x27;t terribly challenging text.<p>If only I could have that in Norwegian my SO would be pleased.<p>Also I totally misremembered regarding Kokoro TTS. It&#x27;s good, but not what was butchering Norwegian. Forgot which one I was thinking of, maybe it was the old VITS stuff Rhaspy uses. Points stand, the voice was good but could barely understand what was said.
    • soco15 hours ago
      That, and also using English words in the middle of another language phrase confuses them a lot.
      • rohan_joshi15 hours ago
        yes. the current release of our model is english-only. so other languages are not expected to perform well. we&#x27;ll try to look out for this in our multilingual release.
  • jamamp9 hours ago
    The Github readme doesn&#x27;t list this: what data trained this? Was it done by the voices of the creators, or was this trained on data scraped from the internet or other archives?
  • vezycash14 hours ago
    Would an Android app of this be able to replace the built in tts?
    • rohan_joshi14 hours ago
      yes, our mobile sdk is coming soon(eta 2 weeks) so we should be able to replace the built-in version of it. can you share what tts use-case you&#x27;re thinking of?
      • satvikpendem14 hours ago
        I use an epub reader like Moon+ with the built in TTS to turn epubs into audiobooks, and I tried Kokoro TTS but the issue was too much lag between sentences plus it doesn&#x27;t preprocess the next sentence while it reads out the current one.
        • rohan_joshi14 hours ago
          okay this seems pretty doable, i think i know someone who is working on an epub reader using kittentts. if they don&#x27;t post about it, i&#x27;ll do it once its done.
        • gabrielcsapo14 hours ago
          Working on a reader and server that use pockettts to turn epubs into audio books <a href="https:&#x2F;&#x2F;github.com&#x2F;gabrielcsapo&#x2F;compendus" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gabrielcsapo&#x2F;compendus</a> shows a virtual scroller for the text and audio
  • swaminarayan7 hours ago
    How did you make a very small AI model (14M) sound more natural and expressive than even bigger models?
    • rohan_joshi5 hours ago
      glad you liked it, thank you so much for the kind words. our team is really good at squeezing performance out of small models. we are working on a new launch and hope to release a technical report along with that which includes details. fyi, our current 14M model is better than our previous 80M model. and we expect this trend to continue.
  • arcanemachiner10 hours ago
    Fingers crossed for a normal-sounding voice this time around. The cute Kitten voices are nice, but I want something I can take seriously when I&#x27;m listening to an audiobook.
    • rohan_joshi10 hours ago
      How is the Bruno voice for this one? there will also be another release in ~15-20 days where we have more professional voices. if you&#x27;d like to get early access and give feedback lmk, or dm me.
      • Barbing9 hours ago
        Hey Rohan, love to contribute feedback.<p>Huge fan of Ava multilingual and hopefully there are many other others with similar taste, so my feedback might shape things towards a halfway decent direction at least for some.<p>btw, use case is most often to listen to news&#x2F;articles.
        • rohan_joshi2 hours ago
          got it, this is very useful. thanks a lot.
      • arcanemachiner8 hours ago
        Not too bad, actually! Looking forward to hearing some more voices.<p>No need to DM me, just post on HN or &#x2F;r&#x2F;LocalLLama and I&#x27;ll catch wind of it.<p>Thanks for your work!
  • altruios17 hours ago
    One of the core features I look for is expressive control.<p>Either in the form of the api via pitch&#x2F;speed&#x2F;volume controls, for more deterministic controls.<p>Or in expressive tags such as [coughs], [urgently], or [laughs in melodic ascending and descending arpeggiated gibberish babbles].<p>the 25MB model is amazingly good for being 25MB. How does it handle expressive tags?
    • rohan_joshi16 hours ago
      thank you so much. Right now, it cannot handle expressive tags. what kind of tags would be most helpful according to you?
      • altruios15 hours ago
        Emotion based tagging control would be the most helpful narrowing it down. Tags like [sarcastically] [happily] [joyfully] [fearfully]: so a subsection of adverbs.<p>A stretch goal is &#x27;arbitrary tags&#x27; from [singing] [sung to the tune of {x}] [pausing for emphasis] [slowly decreasing speed for emphasis] [emphasizing the object of this sentence] [clapping] [car crash in the distance] [laser&#x27;s pew pew].<p>But yeah: instruction&#x2F;control via [tags] is the deciding feature for me, provided prompt adherence is strong enough.<p>Also: a thought...<p>Everyone is using [] for different kinds of tags in this space: which is very simple. Maybe it makes sense to differentiate kinds of tags? I.E. [tags for modifying how text is spoken] vs {tags for creating sounds not specifically speech: not modifying anything... but instead it&#x27;s own &#x27;sound&#x2F;word&#x27;}
        • rohan_joshi15 hours ago
          yeah i think to start with, narrowing it down to a few tags would be most helpful and we&#x27;ll probably start w that first. Thanks a lot!
      • daneel_w13 hours ago
        Intonation (frequency rise&#x2F;fall) would offer a lot of versatility.
      • zeroq6 hours ago
        not OP but something like [&lt;intention&gt;] where intention might be something like anger, curiousness, etc. [long pause], [gasp], [laughter] stuff like that.
  • pabs33 hours ago
    Is this open-source or open-weights ML?
    • rohan_joshi2 hours ago
      yes, indeed. we are working on adding mit licensed phonemizers too by this weekend, so you&#x27;ll be able to use these models as you like :)
      • pabs31 hour ago
        I think you misunderstood the question. I guess its only open-weights not open-source then.<p>For some insight into the original question, take a look at the Debian ML policy:<p><a href="https:&#x2F;&#x2F;salsa.debian.org&#x2F;deeplearning-team&#x2F;ml-policy" rel="nofollow">https:&#x2F;&#x2F;salsa.debian.org&#x2F;deeplearning-team&#x2F;ml-policy</a>
  • amelius11 hours ago
    How long until I can buy this as a chip for my Arduino projects?
    • rohan_joshi10 hours ago
      not v long. until then you start running tts on phones, wearables and r pis. at the model level, we&#x27;ll have a model for this kind of mcu&#x27;s later this year.
      • yjftsjthsd-h9 hours ago
        You can (just about?) already run on a pi zero, right? That&#x27;s not literally a chip, but in practical utility it can&#x27;t be very different
  • stbtrax8 hours ago
    Did they train this on @lauriewired&#x27;s voice? The demo video sounds exactly like her at 0:18
    • rohan_joshi5 hours ago
      i can confirm that we did not.
      • stbtrax5 hours ago
        What&#x27;s the source of that voice then in training data? It sounds insanely close to her voice. Strange parallel to openAI denying they trained on Scarlet J&#x27;s voice.
  • ks204816 hours ago
    There&#x27;s a number of recent, good quality, small TTS models.<p>If the author doesn&#x27;t describe some detail about the data, training, or a novel architecture, etc, I only assume they just took another one, do a little finetuning, and repackage as a new product.
    • the_duke16 hours ago
      Any recommendations?
      • Joel_Mckay14 hours ago
        Depends how small or complex you want a TTS, as flite + flitevox voice packages worked on pi or zynq ARM cpu just fine. =3<p>Also:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;sparkaudio&#x2F;spark-tts" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;sparkaudio&#x2F;spark-tts</a>
    • okokwhatever16 hours ago
      [flagged]
  • agnishom6 hours ago
    I thought they were going to make kitten sounds instead of speech
    • rohan_joshi5 hours ago
      for that, a 100KB model could be enough ;)
    • casey26 hours ago
      I guess they are Discord kittens?
  • pumanoir15 hours ago
    The example.py file says &quot;it will run blazing fast on any GPU. But this example will run on CPU.&quot;<p>I couldn&#x27;t locate how to run it on a GPU anywhere in the repo.
    • rohan_joshi14 hours ago
      thanks for the feedback. i&#x27;ll add an example of running it on gpu.
  • Remi_Etien15 hours ago
    25MB is impressive. What&#x27;s the tradeoff vs the 80M model — is it mainly voice quality or does it also affect pronunciation accuracy on less common words?
    • rohan_joshi15 hours ago
      80M model is the highest quality while also being quite efficient. it is superior in terms of pronunciation accuracy for less common words, and also is more stable in terms of speed. its my fav model. i think the 40M is quite similar to 80M for most usecases. 15M is for resource cpus, loading onto a browser etc.<p>The new 15M is way better than the previous 80M model(v0.1). So we&#x27;re able to predictably improve the quality which is very encouraging.
  • DavidTompkins15 hours ago
    This would be great as a js package - 25mb is small enough that I think it&#x27;d be worth it (in-browser tts is still pretty bad and varies by browser)
    • rohan_joshi15 hours ago
      great idea, we&#x27;re on it. we&#x27;re also working on a mobile sdk. a browser sdk would be really cool too.
  • sroussey4 hours ago
    It is based on onnx, so can i use with transformers.js and the browser?
    • aratahikaru53 hours ago
      Yes, someone already made a web demo for it: <a href="https:&#x2F;&#x2F;github.com&#x2F;clowerweb&#x2F;kitten-tts-web-demo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;clowerweb&#x2F;kitten-tts-web-demo</a> (7 months ago). WebGPU support was marked experimental there, but transformer.js v4 (released last month) seems more stable now with some runtime&#x2F;perf improvements: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;blog&#x2F;transformersjs-v4#performance--runtime-improvements" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;blog&#x2F;transformersjs-v4#performance--r...</a>
  • devinprater16 hours ago
    A lot of these models struggle with small text strings, like &quot;next button&quot; that screen readers are going to speak a lot.
    • soco15 hours ago
      I think I tried on my Android everything I could try and 1. outside webpage reading, not many options; 2. as browser extensions, also not many (I don&#x27;t like to copy URLs in your app) 3. they all insist reading every little shit, not only buttons but also &quot;wave arrow pointing directly right&quot; which some people use in their texts. So basically reading text aloud is a bunch of shitty options. Anyone jumping in this market opening?
      • rohan_joshi15 hours ago
        we&#x27;d love to serve this use-case. i&#x27;ll make a demo for this next week and comment here with it.
  • great_psy17 hours ago
    Thanks for working on this!<p>Is there any way to get those running on iPhone ? I would love to have the ability for it to read articles to me like a podcast.
    • rohan_joshi16 hours ago
      yes, we&#x27;re releasing an official mobile sdk and inference engine very soon. if you want to use something until then, some folks from the oss community have built ways to run kitten on ios. if you search kittentts ios on github you should find a few. if you cant find it, feel free to ping me and i can help you set it up. thanks a lot for your support and feedback!
  • fwsgonzo16 hours ago
    How much work would it be to use the C++ ONNX run-time with this instead of Python? Is it a Claudeable amount of work?<p>The iOS version is Swift-based.
    • rohan_joshi16 hours ago
      shouldn&#x27;t be hard. what backend&#x2F;hardware are you interested in running this with? i&#x27;ll add an example for using C++ onnx model. btw check out roadmap, our inference engine will be out 1-2 weeks and it is expected to be faster than onnx.
      • koolala4 hours ago
        I want to run it in a website with Wasm and having the browser do the audio playback
      • fwsgonzo14 hours ago
        desktop CPUs running inference on a single background thread would be the ideal case for what I&#x27;m considering.
  • pabs33 hours ago
    Whats the training data for this?
    • phyzix57613 hours ago
      Sounds like the voice actors from Critical Role but I just came off of watching 48 hours of Campaign 3 so I&#x27;m probably imagining things.
  • sschueller15 hours ago
    I&#x27;m still looking for the &quot;perfect&quot; setup in order to clone my voice and use it locally to send voice replies in telegram via openclaw. Does anyone have auch a setup?<p>I want to be my own personal assistant...<p>EDIT: I can provide it a RTX 3080ti.
    • ilaksh14 hours ago
      You need to provide info on your hardware. Pocket-TTS does cloning on CPU, but for me randomly outputs something pretty weird sounding mixed in with like 90% good outputs. So it hasn&#x27;t been quite stable enough to run without checking output. But maybe it depends on your voice sample.<p>Qwen 3 TTS is good for voice cloning but requires GPU of some sort.
    • nicpottier13 hours ago
      Try training a model on piper, you will need to record a lot of utterances but the results are pretty great and the output is a fast TTS model.
    • justanotherunit15 hours ago
      Is it not just to train a model on your voice recordings and just use that to generate audio clips from text?
    • bdbdbdb12 hours ago
      Why not just send text replies? You can already do that
  • ilaksh17 hours ago
    Thanks for open sourcing this.<p>Is there any way to do a custom voice as a DIY? Or we need to go through you? If so, would you consider making a pricing page for purchasing a license&#x2F;alternative voice? All but one of the voices are unusable in a business context.
    • rohan_joshi16 hours ago
      thanks a lot for the feedback. yes, we&#x27;re working on a diy way to add custom voices and will also be releasing a model with more professional voices in the next 2-3 weeks. as of now, we&#x27;re providing commercial support for custom voices, languages and deployment through the support form on our github. can you share more about your business use-case? if possible, i&#x27;d like to ensure the next release can serve that.
      • ilaksh15 hours ago
        Right now it&#x27;s outgoing calls for a small business client that checks information. Although if they call back they don&#x27;t mind an automated system, on outgoing calls the person answering will often hang up if they detect AI right away, so we use a realistic custom voice with an accent.<p>This is a mind numbing task that requires workers to make hundreds of calls each day with only minor variations, sometimes navigating phone trees, half the time leaving almost the exact same message.<p>Anyway, I believe almost all such businesses will be automated within months. Human labour just cannot compete on cost.
  • schopra90915 hours ago
    Really cool to see innovation in terms of quality of tiny models. Great work!
    • rohan_joshi14 hours ago
      thanks a lot. small model quality is improving exponentially. This 15M is way better than the 80M model from our previous launch (V0.1).
  • janice199914 hours ago
    What&#x27;s the actual install size for a working example? Like similar &quot;tiny&quot; projects, do these models actually require installing 1GB+ of dependencies?
    • deathanatos14 hours ago
      Running the example is 3 MiB for the repo, +667 MiB of Python dependencies, +86 MiB of models that will get downloaded from HuggingFace. =756 MiB.<p>(That&#x27;s using the example as-is. If you switch it to the smaller model, modify the above with +57 MiB of models from HuggingFace, or =727 MiB.)<p>So I toyed with this a bit + the Rust library &quot;ort&quot;, and ort is only 224M in release (non-debug) mode, and it was pretty simple to run this model with it. (I did not know ort before just now.) I didn&#x27;t replicate the preprocessing the Python does before running the model, though. (You have to turn the text into an array of floats, essentially; the library is doing text -&gt; phonemes -&gt; tokens; the latter step is straight-forward.)
      • deathanatos10 hours ago
        So, that was on macOS. It&#x27;s actually huge on Linux, and I&#x27;ve run out of disk space trying to pull dependencies. It&#x27;s nvidia, who always shows great judgement in their use of disk.
    • wedowhatwedo14 hours ago
      My quick test showed 670m of python libraries required on top of the model.
  • gabrielcsapo14 hours ago
    are there plans to output text alignment?
    • rohan_joshi14 hours ago
      yes, we just started working on this yesterday haha, great that you mentioned it. once we have it working it&#x27;ll be out soon.
      • gabrielcsapo14 hours ago
        that would be awesome, I was using pockettts then I had to run it through whisper to get the accurate alignment. Not super productive for realtime work.
  • deathanatos8 hours ago
    So, one thing I noticed, and this could easily be user error, is that if I set the text &amp; voice in the example to:<p><pre><code> text =&quot;&quot;&quot; Hello world. This is Kitten TTS. Look, it&#x27;s working! &quot;&quot;&quot; voice = &#x27;Luna&#x27; </code></pre> On macOS, I get &quot;Kitten TTS&quot;, but on Linux, I get &quot;Kit… TTS&quot;. Both OSes generate the same phonemes of,<p><pre><code> Phonemes: ðɪs ɪz kˈɪʔn ̩ tˌiːtˌiːˈɛs , </code></pre> which makes me really confused as to where it&#x27;s going off the rails on Linux, since from there it should just be invoking the model.<p>edit: it really helps to use the same model <i>facepalm</i>. It&#x27;s the 80M model, and it happens on both OS. Wildly the nano gets it better? I&#x27;m going to join the Discord lol.
    • rohan_joshi5 hours ago
      hey sorry for this issue, i think its a bug in our preprocessing. let me look into it and help fix it. i think you posted this in our discord so lets carry the conversation there.
  • whitepaper2714 hours ago
    This is great. Demo looks awesome.
  • wiradikusuma16 hours ago
    I&#x27;m thinking of giving &quot;voice&quot; to my virtual pets (think Pokemon but less than a dozen). The pets are made up animals but based on real animal, like Mouseier from Mouse (something like that). Is this possible?<p>Tldr: generate human-like voice based on animal sound. Anyway maybe it doesn&#x27;t make sense.
    • rohan_joshi14 hours ago
      it&#x27;d be an interesting experiment to try what kind of information is extracted from the samples of the pet sounds. it&#x27;d be so cool if it can just get the features of the audio and then still be able to reproduce the audio in english lol. we would need a really good &quot;speaker&quot; encoder i think.
  • Tacite17 hours ago
    Is it English only?
    • rohan_joshi16 hours ago
      as of now its english only. the training for multilingual model is underway and should be out in April! what languages are you most interested in? Right now, we are providing deployments for custom languages + voices through support form on the github.
      • hattimaTim2 hours ago
        Here to suggest the Bengali language! It has the 7th largest speaker base worldwide but often ignored by tech companies, sadly.
      • ivm13 hours ago
        Spanish would be great, there&#x27;s a serious lack of Spanish TTS on Android compared to iOS and the quality is not the best.
        • rohan_joshi10 hours ago
          spanish model will be out in a matter of weeks.
      • Zopieux14 hours ago
        French, Spanish, German would go a long way.
        • rohan_joshi10 hours ago
          french, spanish and german models will also be out v soon. these are languages we are working on already. some lower resource languages will take longer.
  • moralestapia12 hours ago
    Wow, what an amazing feat. Congratulations!
    • rohan_joshi11 hours ago
      thank you so much. glad you liked the model.
  • exe3413 hours ago
    sounds amazing! does it stream? or is it so fast you don&#x27;t need to?
    • rohan_joshi11 hours ago
      it can support chunk streaming, i&#x27;m working on adding it to the repo. should be up by tomorrow.
  • tredre310 hours ago
    This is something I&#x27;ve been looking for (the &lt;50MB models in particular). Unfortunately my feedback is as follows:<p><pre><code> Downloading https:&#x2F;&#x2F;github.com&#x2F;KittenML&#x2F;KittenTTS&#x2F;releases&#x2F;download&#x2F;0.8.1&#x2F;kittentts-0.8.1-py3-none-any.whl (22 kB) Collecting num2words (from kittentts==0.8.1) Using cached num2words-0.5.14-py3-none-any.whl.metadata (13 kB) Collecting spacy (from kittentts==0.8.1) Using cached spacy-3.8.11-cp314-cp314-win_amd64.whl.metadata (28 kB) Collecting espeakng_loader (from kittentts==0.8.1) Using cached espeakng_loader-0.2.4-py3-none-win_amd64.whl.metadata (1.3 kB) INFO: pip is looking at multiple versions of kittentts to determine which version is compatible with other requirements. This could take a while. ERROR: Ignored the following versions that require a different python version: 0.7.10 Requires-Python &gt;=3.8,&lt;3.13; 0.7.11 Requires-Python &gt;=3.8,&lt;3.13; 0.7.12 Requires-Python &gt;=3.8,&lt;3.13; 0.7.13 Requires-Python &gt;=3.8,&lt;3.13; 0.7.14 Requires-Python &gt;=3.8,&lt;3.13; 0.7.15 Requires-Python &gt;=3.8,&lt;3.13; 0.7.16 Requires-Python &gt;=3.8,&lt;3.13; 0.7.17 Requires-Python &gt;=3.8,&lt;3.13; 0.7.5 Requires-Python &gt;=3.8,&lt;3.13; 0.7.6 Requires-Python &gt;=3.8,&lt;3.13; 0.7.7 Requires-Python &gt;=3.8,&lt;3.13; 0.7.8 Requires-Python &gt;=3.8,&lt;3.13; 0.7.9 Requires-Python &gt;=3.8,&lt;3.13; 0.8.0 Requires-Python &gt;=3.8,&lt;3.13; 0.8.1 Requires-Python &gt;=3.8,&lt;3.13; 0.8.2 Requires-Python &gt;=3.8,&lt;3.13; 0.8.3 Requires-Python &gt;=3.8,&lt;3.13; 0.8.4 Requires-Python &gt;=3.8,&lt;3.13; 0.9.0 Requires-Python &gt;=3.8,&lt;3.13; 0.9.2 Requires-Python &gt;=3.8,&lt;3.13; 0.9.3 Requires-Python &gt;=3.8,&lt;3.13; 0.9.4 Requires-Python &gt;=3.8,&lt;3.13; 3.8.3 Requires-Python &gt;=3.9,&lt;3.13; 3.8.5 Requires-Python &gt;=3.9,&lt;3.13; 3.8.6 Requires-Python &gt;=3.9,&lt;3.13; 3.8.7 Requires-Python &gt;=3.9,&lt;3.14; 3.8.8 Requires-Python &gt;=3.9,&lt;3.14; 3.8.9 Requires-Python &gt;=3.9,&lt;3.14 ERROR: Could not find a version that satisfies the requirement misaki&gt;=0.9.4 (from kittentts) (from versions: 0.1.0, 0.3.0, 0.3.5, 0.3.9, 0.4.0, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.4.9, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.5.5, 0.5.6, 0.5.7, 0.5.8, 0.5.9, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4) ERROR: No matching distribution found for misaki&gt;=0.9.4 </code></pre> I realize that I can run a multiple versions of python on my system, and use venv to managed them (or whatever equivalent is now trendy), but as I near retirement age all those deep dependencies nets required by modern software is really depressing me. Have you ever tried to build a node app that hasn&#x27;t been updated in 18 months? It can&#x27;t be done. Old man yelling at cloud I guess <i>shrugs</i>.
    • rohan_joshi10 hours ago
      this is some env issue sorry for the inconvenience, lemme fix it. can you dm me w your env? discord &#x2F; github &#x2F; mail &#x2F; anywhere works.
  • devcraft_ai1 hour ago
    [dead]
  • eddie-wang7 hours ago
    [flagged]
  • aplomb102611 hours ago
    [dead]
  • openclaw018 hours ago
    [dead]
  • ryguz13 hours ago
    [dead]
  • devnotes7714 hours ago
    [dead]
  • adriencr8113 hours ago
    [dead]
  • 5o1ecist2 hours ago
    [dead]
  • blackoutwars868 hours ago
    [dead]
  • Iamkkdasari7415 hours ago
    [dead]
  • rcdwealth11 hours ago
    [dead]