Instructions to use MoYoYoTech/Translator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use MoYoYoTech/Translator with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="MoYoYoTech/Translator", filename="moyoyo_asr_models/qwen2.5-1.5b-instruct-q5_0.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use MoYoYoTech/Translator with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MoYoYoTech/Translator:Q5_0 # Run inference directly in the terminal: llama-cli -hf MoYoYoTech/Translator:Q5_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MoYoYoTech/Translator:Q5_0 # Run inference directly in the terminal: llama-cli -hf MoYoYoTech/Translator:Q5_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf MoYoYoTech/Translator:Q5_0 # Run inference directly in the terminal: ./llama-cli -hf MoYoYoTech/Translator:Q5_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf MoYoYoTech/Translator:Q5_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf MoYoYoTech/Translator:Q5_0
Use Docker
docker model run hf.co/MoYoYoTech/Translator:Q5_0
- LM Studio
- Jan
- Ollama
How to use MoYoYoTech/Translator with Ollama:
ollama run hf.co/MoYoYoTech/Translator:Q5_0
- Unsloth Studio new
How to use MoYoYoTech/Translator with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MoYoYoTech/Translator to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MoYoYoTech/Translator to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MoYoYoTech/Translator to start chatting
- Pi new
How to use MoYoYoTech/Translator with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf MoYoYoTech/Translator:Q5_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "MoYoYoTech/Translator:Q5_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use MoYoYoTech/Translator with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf MoYoYoTech/Translator:Q5_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default MoYoYoTech/Translator:Q5_0
Run Hermes
hermes
- Docker Model Runner
How to use MoYoYoTech/Translator with Docker Model Runner:
docker model run hf.co/MoYoYoTech/Translator:Q5_0
- Lemonade
How to use MoYoYoTech/Translator with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MoYoYoTech/Translator:Q5_0
Run and chat with the model
lemonade run user.Translator-Q5_0
List all available models
lemonade list
Xin Zhang commited on
Commit ·
e03f21e
1
Parent(s): 418e2a0
Update model and processor files
Browse files
moyoyo_asr_models/ggml-small.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 487601984
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:951596a31b1c96a01b7a2b1bc511f665d900c679126134f6ec18db5ec4a485fe
|
| 3 |
size 487601984
|
transcribe/helpers/vadprocessor.py
CHANGED
|
@@ -137,7 +137,7 @@ class VADIteratorOnnx:
|
|
| 137 |
return_seconds: bool (default - False)
|
| 138 |
whether return timestamps in seconds (default - samples)
|
| 139 |
"""
|
| 140 |
-
|
| 141 |
window_size_samples = 512 if self.sampling_rate == 16000 else 256
|
| 142 |
x = x[:window_size_samples]
|
| 143 |
if len(x) < window_size_samples:
|
|
@@ -156,7 +156,7 @@ class VADIteratorOnnx:
|
|
| 156 |
speech_start = max(0, self.current_sample - window_size_samples)
|
| 157 |
self.start = speech_start
|
| 158 |
return {'start': int(speech_start) if not return_seconds else round(speech_start / self.sampling_rate, 1)}
|
| 159 |
-
|
| 160 |
if (speech_prob >= self.threshold) and self.current_sample - self.start >= self.max_speech_samples:
|
| 161 |
if self.temp_end:
|
| 162 |
self.temp_end = 0
|
|
@@ -175,7 +175,7 @@ class VADIteratorOnnx:
|
|
| 175 |
return {'end': int(speech_end) if not return_seconds else round(speech_end / self.sampling_rate, 1)}
|
| 176 |
|
| 177 |
return None
|
| 178 |
-
|
| 179 |
|
| 180 |
|
| 181 |
class VadV2:
|
|
@@ -267,15 +267,15 @@ class VadV2:
|
|
| 267 |
|
| 268 |
return result
|
| 269 |
return None
|
| 270 |
-
|
| 271 |
|
| 272 |
-
|
|
|
|
| 273 |
class VadProcessor:
|
| 274 |
def __init__(
|
| 275 |
self,
|
| 276 |
prob_threshold=0.5,
|
| 277 |
-
silence_s=0.
|
| 278 |
-
cache_s=0.
|
| 279 |
sr=16000
|
| 280 |
):
|
| 281 |
self.prob_thres = prob_threshold
|
|
@@ -284,7 +284,7 @@ class VadProcessor:
|
|
| 284 |
self.silence_s = silence_s
|
| 285 |
|
| 286 |
self.vad = VadV2(self.prob_thres, self.sr, self.silence_s * 1000, self.cache_s * 1000, max_speech_duration_s=15)
|
| 287 |
-
|
| 288 |
|
| 289 |
def process_audio(self, audio_buffer: np.ndarray):
|
| 290 |
audio = np.array([], np.float32)
|
|
|
|
| 137 |
return_seconds: bool (default - False)
|
| 138 |
whether return timestamps in seconds (default - samples)
|
| 139 |
"""
|
| 140 |
+
|
| 141 |
window_size_samples = 512 if self.sampling_rate == 16000 else 256
|
| 142 |
x = x[:window_size_samples]
|
| 143 |
if len(x) < window_size_samples:
|
|
|
|
| 156 |
speech_start = max(0, self.current_sample - window_size_samples)
|
| 157 |
self.start = speech_start
|
| 158 |
return {'start': int(speech_start) if not return_seconds else round(speech_start / self.sampling_rate, 1)}
|
| 159 |
+
|
| 160 |
if (speech_prob >= self.threshold) and self.current_sample - self.start >= self.max_speech_samples:
|
| 161 |
if self.temp_end:
|
| 162 |
self.temp_end = 0
|
|
|
|
| 175 |
return {'end': int(speech_end) if not return_seconds else round(speech_end / self.sampling_rate, 1)}
|
| 176 |
|
| 177 |
return None
|
| 178 |
+
|
| 179 |
|
| 180 |
|
| 181 |
class VadV2:
|
|
|
|
| 267 |
|
| 268 |
return result
|
| 269 |
return None
|
|
|
|
| 270 |
|
| 271 |
+
|
| 272 |
+
|
| 273 |
class VadProcessor:
|
| 274 |
def __init__(
|
| 275 |
self,
|
| 276 |
prob_threshold=0.5,
|
| 277 |
+
silence_s=0.2,
|
| 278 |
+
cache_s=0.15,
|
| 279 |
sr=16000
|
| 280 |
):
|
| 281 |
self.prob_thres = prob_threshold
|
|
|
|
| 284 |
self.silence_s = silence_s
|
| 285 |
|
| 286 |
self.vad = VadV2(self.prob_thres, self.sr, self.silence_s * 1000, self.cache_s * 1000, max_speech_duration_s=15)
|
| 287 |
+
|
| 288 |
|
| 289 |
def process_audio(self, audio_buffer: np.ndarray):
|
| 290 |
audio = np.array([], np.float32)
|