Skip to content

Commit

Permalink
model details
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingFathead committed Apr 24, 2024
1 parent dc2752e commit 783daa9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,16 @@ async def model_command(self, update: Update, context: CallbackContext) -> None:
f"<b>Available models:</b>\n{models_list}\n\n"
"To change the model, use commands like:\n"
"<code>/model medium.en</code>\n"
"<code>/model large-v3</code>",
"<code>/model large-v3</code>\n\n"
"<b>Model Details:</b>\n"
"- <b>Tiny</b>: Fastest, uses ~1GB VRAM, about 32x faster than large.\n"
"- <b>Base</b>: Faster, uses ~1GB VRAM, about 16x faster than large.\n"
"- <b>Small</b>: Balanced, uses ~2GB VRAM, about 6x faster than large.\n"
"- <b>Medium</b>: More precise, uses ~5GB VRAM, about 2x faster than large.\n"
"- <b>Large</b>: Most precise, processes at real-time (1x speed), uses ~10GB VRAM.\n\n"
"Note: '.en' models (e.g., 'tiny.en') are optimized for English and offer better accuracy for English audio. "
"As model size increases, the benefit of English optimization becomes less significant. Choose based on your "
"needs for speed, memory usage, and linguistic accuracy.",
parse_mode='HTML')
return

Expand Down

0 comments on commit 783daa9

Please sign in to comment.