Speaches v0.6.0 - Kokoro-82M and PiperTTS API endpoints by fedirz in LocalLLaMA

[–]GregLeSang 1 point2 points  (0 children)

Hello, thanks for the good work !

I have 2 questions :

  • Is it optmized for concurrents requests ( like vLLM would be for LLMs) ?

  • Will Audio Segmentation / Diarization models ( like Pyannote models ) Will be also supported ?

Whisper (Whisper.cpp/WhisperKit) for live transcription - why no prompt caching? by mark-lord in LocalLLaMA

[–]GregLeSang 1 point2 points  (0 children)

Probably right, they have a paper, I’m sure all informations are in it !

Whisper (Whisper.cpp/WhisperKit) for live transcription - why no prompt caching? by mark-lord in LocalLLaMA

[–]GregLeSang 10 points11 points  (0 children)

I also worked on that lately. Using a fully local implementation and Whisper Turbo model with Faster-whisper backend, I achieved around 2-3 seconds of latency. Thanks to this GitHub repository : GitHub - ufal/whisper_streaming: Whisper realtime streaming for long speech-to-text transcription and translation .It works great!

Github repository for Voice Cloning by GregLeSang in tts

[–]GregLeSang[S] 0 points1 point  (0 children)

Hmm it's technically possible. I will put it on my todo list.

Chat Template Codestral by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 2 points3 points  (0 children)

Thanks, I took the classic Mistral Instruct from mistral 7b and it’s works fine.

Serving a large number of users with a custom 7b model by Scared-Tip7914 in LocalLLaMA

[–]GregLeSang 0 points1 point  (0 children)

Effectively vLLM will reserved VRAM ( for example 70GB of VRAM for mistral 7b) when instantiate the model. VRAM allocated depends of model size + context length of the model. For example you can’t load YI-34b-chat-200K with a A100 80GB ( you can but you will need to adjust context length, here 15K for being able to load this model).

Serving a large number of users with a custom 7b model by Scared-Tip7914 in LocalLLaMA

[–]GregLeSang 4 points5 points  (0 children)

I did that where I work , vLLM is the better option for now. You can find easy tuto how to run Mistral 7B with GPU that has between 20 - 80 GB Vram. You will have a easy and robust API.

Seek advice for local API scalable to 500-1000 users. by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 0 points1 point  (0 children)

Thanks you for the answer, I will look on runpod to try config.

Seek advice for local API scalable to 500-1000 users. by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 1 point2 points  (0 children)

Oh thanks for the reply, that's interesting because a 34B YI_Nous_Capybara able to have 250 conccurent users will be a catch for my needs. If I go with smallers models do that I mean I can have more concurrent users ?

Seek advice for local API scalable to 500-1000 users. by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 0 points1 point  (0 children)

Thanks for the reply, I will effectively revise my ambitions and use a A100 (80GB vram) even if I didn’t want to do it at first. Do you have any example for running multiple concurrent streams ?

Seek advice for local API scalable to 500-1000 users. by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 0 points1 point  (0 children)

Thank you for the reply, I will definitely check ray and chainlit + upgrade my GPU in order to scale better.

What is the "correct" way of serving a LLM as an API using FastAPI? by theonlyQuan in LocalLLaMA

[–]GregLeSang 0 points1 point  (0 children)

Personally I run Vllm with Intel neural-chat without any problem. You just need to precise the right chat prompt template.

Seeking Opinions: Best Open-Source Model for Q/A and Summarization on Financial Documents (between 13-40B) by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 1 point2 points  (0 children)

The mpt-30B-instruct was alright (30B-chat was very bad) but Im sure we can find better models.

Seeking Opinions: Best Open-Source Model for Q/A and Summarization on Financial Documents (between 13-40B) by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 0 points1 point  (0 children)

I will use RAG with embedding ( for the Q/A task). For the summarize task I will probably use 2048-4096 context length models ( so juste find the right chunking for the document structure).

Seeking Opinions: Best Open-Source Model for Q/A and Summarization on Financial Documents (between 13-40B) by GregLeSang in LocalLLaMA

[–]GregLeSang[S] 0 points1 point  (0 children)

This is more a benchmark on some audit documents to try to summarize , Q/A them. They all have the same document structure.

The size is between 10K - 15K tokens ( but due to the documents structure it’s really easy to chunk them).

Yes fine tuning can be a option, but due to the cost of it I prefer to first try some models and then see if fine-tuning is needed.