~5m11:01
Ray Codes

Destroys Google Translate? Tencent’s New 440MB AI Runs 100% Offline (Hy-MT2 Review)

Sep 17, 2026

Read: ~5m · You save: 6 min

Hy-MT2 Review: Tencent's New 440MB AI Works Fully Offline and Can Replace Google Translate

Tencent Hy-MT2: a 440MB local AI translator that can replace Google Translate! Review, tests, and how to install it.

Translating sensitive data via cloud APIs is a costly and time-consuming process. Tencent has introduced an on-premises alternative that runs entirely offline. This review delves into the key details, test results, and practical applications of the Hy-MT2 model.

Introduction to Hy-MT2

Hy-MT2 is a new translation model from Tencent, designed to run locally on the user's computer. The primary focus is on high-speed processing, enabling the translation of many languages locally and handling documents faster than many commercial alternatives. The model is built on an architecture optimized for instruction following and precise rule adherence. The license permits the use of the model in commercial projects without restrictions.

Model Variants and Hardware Requirements

The Hy-MT2 model is available in different sizes:

  • 2 Billion Parameters (Light Version): Minimal processing requirements, can run on a Central Processing Unit (CPU). Minimum memory is 440MB.
  • 30 Billion Parameters (Server Version): Activates 3 billion parameters for a specific task.

For 1.8 billion parameters with 4-bit quantization, approximately 1.2GB of Video Random Access Memory (VRAM) is required. This makes the model accessible for running on entry-level computers and even on CPUs.

Architecture and Workflow

The original model file was compressed from 3.6 GB to 440 MB, reducing memory consumption and speeding up generation. The model's workflow includes the following stages:

  1. Data Input: Standard text files or data extracted via OCR from images are accepted.
  2. Formatting Rules Application: The user can provide their own dictionary or rules that the model will consider.
  3. Processing: The model, with parameters of 1.8 billion or 30 billion, processes the data.
  4. Output: Clean dialogue text is generated in the requested translation format.

This approach allows for the creation of structured JSON files, which is convenient for application interfaces and prevents formatting errors.

Practical Applications

Hy-MT2 can be used in various scenarios:

  • Video Editors: Translating subtitles while preserving original timestamps, ensuring synchronization with the video.
  • VLM Integration: Collaborating with models like LLaVA 1.5 2B or LiquidAI's LFM-2.5 for translating text extracted from screenshots.
  • Technical Translation: The ability to enforce the use of specific terms, which standard models often miss.
  • Deployment on Edge Devices: Low memory consumption (less than 0.5GB RAM) allows the model to be used on mobile devices supporting Apple, Qualcomm, and MediaTek platforms.
  • Data Privacy: Translation is performed locally, ensuring the security of confidential files, such as code blocks and table layouts, without alteration.
  • Cost Savings: The absence of cloud computing eliminates additional expenses.

Test Results

The Hy-MT2 model demonstrates high performance:

  • First place in instruction-following benchmarks: Covers 33 languages and 5 regional dialects.
  • Superiority over cloud services: A compact version (1.8 billion parameters) using less than 0.5 GB of memory outperforms Microsoft Translate and DeepL API, achieving 88% in tests.
  • 30-billion parameter model: Achieves 94% performance, being a state-of-the-art open-source machine translation model.

Practical Test: Subtitle Translation

For the test, a 1.8 billion parameter model with 4-bit quantization was used. The subtitle file (SRT) of a previous video, approximately 1 minute in length, was translated into Hindi and Spanish.

Process:

  1. Load the model's GGUF file into the Ollama directory.
  2. Register the model using the Ollama command.
  3. Extract text and timestamps from the SRT file.
  4. Formulate a prompt for the model, specifying translation into the target languages (Hindi - HI, Spanish - ES).
  5. Send the prompt to the local Ollama URL.
  6. Save the translated files and performance metrics (number of blocks, characters, execution time, generation speed).

Results:

  • Metrics: 28 blocks and 3000 characters were processed. The total execution time was 6 seconds. The average latency per block was 0.2 seconds. The total translation time for both languages was 2-3 seconds.
  • Hindi Translation: The model successfully translated the majority of the text; however, some technical terms, such as "lightweight system," remained untranslated or were transliterated.
  • Spanish Translation: The results of the Spanish translation were presented with preserved timestamps.

The main advantage of the model is its high generation speed, making it useful for local workflows requiring low latency.

Hardware Requirements for Different Variants

  • 1.8 Billion Parameters, 16-bit Quantization: Requires 4GB VRAM (suitable for RTX 3050).
  • Lower Bit Quantizations (8-bit, 2-bit, 1.25-bit): Reduce model size and memory consumption.
  • 30 Billion Parameters (3 Billion Active): 14GB model size, 8GB VRAM consumption (requires a high-end GPU or Mac Studio).

Even with an 8GB RAM and 4GB VRAM configuration, when integrated with vision models, latency of less than one second per suggestion is achieved.

Limitations

  • Runtime Required: A suitable runtime engine is necessary to execute the model.
  • Ollama Integration: Highly compressed versions require setting up integration with Ollama.
  • Rare Dialects: The 1.8 billion parameter model performs better with common languages. For rare dialects, the 30 billion parameter version is recommended for smoother translation.

Conclusion

Tencent's Hy-MT2 is a powerful solution for on-device machine translation, offering high speed, low resource requirements, and data privacy. Its compact size and ability to run on basic hardware make it an attractive alternative to cloud-based services.

Introduction to Hy-MT2

Tencent's Hy-MT2 model is introduced, a local alternative to cloud translation services that operates entirely offline. The "Build with AI" series focuses on free local AI tools.

  • Tencent has released a local alternative to cloud translation APIs.
  • The Hy-MT2 model operates entirely offline.
  • The "Build with AI" series is dedicated to free local AI tools.

Hy-MT2 Architecture and Capabilities

Hy-MT2 is a new translation model from Tencent, optimized for high speed and local machine operation. It supports commercial use and is available in various sizes, from 2 to 30 billion parameters, with minimal memory requirements (440 MB for the lightest version).

  • Hy-MT2 focuses on high-speed processing and local translation.
  • The model is optimized for instruction following and precise rule processing.
  • The license allows commercial use without restrictions.
  • Versions with 2 and 30 billion parameters are available.
  • The minimum model size is 440 MB, requiring about 0.5 GB of RAM.
  • Supports translation between major world languages and regional dialects.

Loading the Hy-MT2 Model

The Hy-MT2 model loading process involves selecting a version (e.g., 1.8B 4-bit quantization) and downloading the GGUF file from Hugging Face. The VRAM calculation for the 1.8B 4-bit model is approximately 1.2 GB.

  • The model is available on Hugging Face in compressed TGZ files.
  • For 1.8B parameters, 4-bit, 6-bit, and 8-bit quantization versions are available.
  • VRAM calculation for 1.8B 4-bit: (1.8 * 4) / 8 + 1.2 = 1.2 GB.
  • Downloading the GGUF file is done using a terminal command.

Hy-MT2 Architectural Pipeline

Hy-MT2 architecture involves compressing the source file to 440 MB, processing text or OCR data, applying formatting rules, and translating using a 1.8 or 30 billion parameter engine. The result is structured JSON.

  • Source file compressed from 3.6 GB to 440 MB.
  • Processing steps: data input, formatting rules, translation.
  • Supports standard text and OCR data input.
  • Custom dictionaries can be used.
  • Output format is structured JSON, useful for application interfaces.

Practical Applications of Hy-MT2

Hy-MT2 has many practical applications: translating subtitles while preserving timings, integrating with vision models for translating text in images, using specific terminology, and deploying on edge devices.

  • Ideal for video editors: translating subtitles while preserving timings.
  • Can be used with vision models (e.g., LLaVA 3.5 2B) for translating text from images.
  • Allows the use of specific technical terms.
  • Possible deployment on edge devices (mobile phones) due to low memory consumption (<0.5 GB RAM).
  • Supports various platforms: Apple, Qualcomm, MediaTek.
  • Maintains data privacy as everything runs locally.

Hy-MT2 Test Results

Hy-MT2 ranks first in instruction following benchmarks across 33 languages. The 1.8B version outperforms Microsoft Translate and DeepL API in performance while using less than 0.5 GB of memory.

  • The model ranks first in instruction following benchmarks (33 languages + 5 dialects).
  • The small version (1.8B) outperforms cloud-based counterparts (Microsoft Translate, DeepL API).
  • The 1.8B version achieves 88% of performance using <0.5 GB of memory.
  • The large version (30B) achieves 94% of performance, being a state-of-the-art model.

Practical Demonstration of Translation

Registering a GGUF file in Ollama is done with a single command. For demonstration, we will translate the subtitles of the previous video (1 minute) into Hindi and Spanish.

  • A GGUF file is registered in Ollama using a single command.
  • Demonstration of translating subtitles from the previous video (1 minute).
  • Target languages: Hindi (HI) and Spanish (ES).
  • Input file: English SRT subtitles.
  • Output files: Translated text and metrics.

Hardware Requirements and Performance

Hardware requirements vary: for 1.8B 16-bit, 4GB VRAM is needed (RTX 3050), for 30B, 8GB VRAM is required. The model provides sub-second latency even when integrated with vision models.

  • 1.8B 16-bit: requires 4GB VRAM (e.g., RTX 3050).
  • 1.8B with reduced quantization (8-bit, 2-bit, 1.25-bit) requires less memory.
  • 30B (activates 3B parameters): requires 8GB VRAM (high-performance GPU or Mac Studio).
  • Provides sub-second latency when integrated with vision models.
  • Requires a runtime engine and Ollama setup for quantized versions.

Translation Limitations and Results

The smaller Hy-MT2 (1.8B) version handles most languages, but the 30B version is recommended for rare dialects. Testing showed 3000 characters translated in 6 seconds, with an average block latency of 0.2 seconds.

  • The 1.8B version is suitable for most common languages.
  • The 30B version is recommended for rare dialects.
  • Testing: 3000 characters translated in 6 seconds.
  • Average block latency: 0.2 seconds.
  • Total translation time for a 1-minute video: 2-3 seconds.

Analysis of Translation Results

Hindi and Spanish translation results showed that the model handles simple words well but sometimes leaves English terms. The main advantage is the high speed of local translation.

  • Hindi translation: the model handles simple words but may leave English terms (e.g., 'system').
  • Spanish translation: provided for user verification.
  • Timestamps and full video length are preserved.
  • Main advantage: high generation speed (2-3 seconds for a 1-minute video).
  • Ideal for low-latency local workflows.

Conclusion and Next Steps

To get started with Hy-MT2, README files and code are available via the first link in the description. The author encourages sharing ideas for new AI tools and models.

  • Instructions for installation and modification of the project are available in the README files and code.
  • The first link in the description contains step-by-step instructions.
  • The author encourages sharing ideas for future videos and AI models.