Out of curiosity, why GPL2 instead of 3?
Show HN: Gdańsk AI – full stack AI voice chatbot
21–30 of 35 posts
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#22Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#23I've honestly lost all interest in anything integrating with OpenAI at this point. Llama 2 is giving completions at ChatGPT levels with a single GPU. I've replaced all of my LLM usage with it. Open local models are the future.
Open local models are literally the past, but the very recent past. I therefore agree -- as long as they remain only on the order of a year older than the cutting edge, their future looks extremely bright. I just hope for-profit enterprises continue wanting to push that frontier as hard as they have been. (Wait, actually also if they stop doing that it might be for the best ...)
I think the qualitative difference between Llama 2 and any previous open LLM is sufficient to the point that we can call this a new epoch. It took OpenAI spending millions on free compute to show the world what these things are capable of. And because it's something you can really only believe when you see it, that's what set things off.
But the cat's out of the bag now, and it's never going back. I think OpenAI would do well to return to their roots of pure research rather than bothering with the product side of things. Come up with the latest and greatest new models, then chuck 'em over the fence for Microsoft to monetize.
>I just hope for-profit enterprises continue wanting to push that frontier as hard as they have been. (Wait, actually also if they stop doing that it might be for the best ...)
My bet is that Meta is pivoting hard right now. Llama is probably their most successful project/product/whatever since Instagram. They have the talent, the money, and (crucially right now) the hardware to do it. And this plays directly into Zuck's desire for a platform. It seems pretty obvious their play is to build an ecosystem around these things and start gradually introducing licensing fees (and/or hosted models) for big commercial users.
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#24Related, what’s the current SOTA on STT models freely available? T5 is pretty good but the closed Google and Meta stuff seems better.
TorToiSe ( https://github.com/neonbjb/tortoise-tts ) produces the best quality speech of any freely available model. However, its long inference times makes it impractical for voice chatbots like Gdansk.
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#25I've honestly lost all interest in anything integrating with OpenAI at this point. Llama 2 is giving completions at ChatGPT levels with a single GPU. I've replaced all of my LLM usage with it. Open local models are the future.
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#26Out of curiosity, why GPL2 instead of 3?
No good reason behind it, I'm just not very familiar with GPL3 so I often default to 2. What could be reasons to pick 3 over 2? I can consider it
Also, maybe A-GPL could be a good license here. It adds a provision that if the user accesses the code remotely (as on a server), you should share the code too. The default GPL only requires that if you distribute the binary.
PS. not a lawyer, would be happy to be corrected if something I said was wrong
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#27I think this a dumb architecture. The Whisper model has been released and runs well on an 8GB consumer GPU. Train a new head on it to produce speech until it exceeds the other voice-to-voice models, and then fine-tune it to banter instead of translate. Is that possible? Sure, but it's a pretty small model, so you wouldn't expect large LLM performance.
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#28Świetne imię
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#29I've honestly lost all interest in anything integrating with OpenAI at this point. Llama 2 is giving completions at ChatGPT levels with a single GPU. I've replaced all of my LLM usage with it. Open local models are the future.
Which GPU is capable of all that? And which do you have a write up for this?
Anything down to an RTX3090. You need 16GB VRAM to comfortably fit llama2-7b-chat with 8 bit quantization and a 2048 context length with llama.cpp. I'm getting completions (in real time) that are easily on par with ChatGPT on a VM with a single V100. People are even getting decent performance on Mac silicon with Metal.
Re: Show HN: Gdańsk AI – full stack AI voice chatbot
#30Earlier quoted context omitted.
TorToiSe ( https://github.com/neonbjb/tortoise-tts ) produces the best quality speech of any freely available model. However, its long inference times makes it impractical for voice chatbots like Gdansk.
What's the reason for the high inference latency? Any ideas on how this could be improved?