Code Monkey home page Code Monkey logo

fast-mlkit-translate-text's Introduction

MLKitTranslator

A MachineLearning Language Translator

Build Powerful React Native With Greate Language Identifier And Translator Amazing ⚡️

MIT License

MLKitTranslator
⚡️ Identify Language Immediately over 50 languages supported (full list)
😎 Lazy loaded. download models when needed
🔄 Offline-first. no network required for using
📱 Multiplatform. iOS, Android
Fast. Support New Architecture
🔗 Relational. Built on MLKit Translation foundation
⚠️ Static typing Full-Support TypeScript

Why MLKitTranslator?

Key capabilities

  • Broad language support Translate between more than 50 different languages. See the complete list.
  • Proven translation models Powered by the same models used by the Google Translate app's offline mode.
  • Dynamic model management Keep on-device storage requirements low by dynamically downloading and managing language packs.
  • Runs on the device Translations are performed quickly, and don't require you to send users' text to a remote server.

Installation

yarn add fast-mlkit-translate-text

or

npm i --save fast-mlkit-translate-text

Usage

Quick example: identify language type

import FastTranslator from 'fast-mlkit-translate-text';

const text = "你好,朋友";

FastTranslator.identifyLanguage(text)
.then((result:string) => {
	//output: 'en'
})
.catch((err:Error) => {
    //handle error
})

Translate text example: identify 、download model and translate

etc: you'd like to translate English to Chinese

1️⃣ prepare (when you change the source or target language, you need to call prepare firstly)

import FastTranslator from 'fast-mlkit-translate-text';

await FastTranslator prepare({
    source: 'Chinese';
    target: 'English';
    downloadIfNeeded: true; // set to false if you want to download mannually
});
// await FastTranslator.downloadLanguageModel('Chinese');
// await FastTranslator.downloadLanguageModel('English');

Do not translate text if the model is not downloaded you can check model by func isLanguageDownloaded

FastTranslator.isLanguageDownloaded('Chinese');
FastTranslator.isLanguageDownloaded('English');

2️⃣ translate text

await FastTranslator.translate(text);

// 🎉 got it, dude

Author and license

FastMLKitTranslateText was created by @yaaliuzhipeng

fast-mlkit-translate-text is available under the MIT license. See the LICENSE file for more info.

fast-mlkit-translate-text's People

Contributors

yaaliuzhipeng avatar

Stargazers

Sergey Haikov avatar Emin Deniz avatar Sebastien Lacoste-Seris avatar Abdelrahman A Boker avatar Aleko Kvashilava avatar Jacob Williams avatar Nikita Pilgrim avatar Sohel Kabir avatar YuanChieh,Cheng avatar  avatar Efstathios Ntonas avatar  avatar

Watchers

 avatar

Forkers

sergiudeveloper

fast-mlkit-translate-text's Issues

Expo Integration

Hi and thanks for creating this library.

I am curious about how I would go about integrating it within a bare expo app?

Many thanks,
Tom

android compile error

I used the command "npx react-native@latest init translateML" to create a react-native project and run it in Android Studio without an issue (connect to a AVD with API 33). After I install "npm i --save fast-mlkit-translate-text" and try to rebuild with "npm run android", I got the following error:

BUILD FAILED in 40s error Failed to install the app. Command failed with exit code 1: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081 C:\Code\rn\translateML\node_modules\fast-mlkit-translate-text\android\src\main\java\com\fastmlkittranslatetext\FastMlkitTranslateTextPackage.java:19: error: cannot find symbol if (name.equals(FastMlkitTranslateTextModule.NAME)) { ^ symbol: variable NAME location: class FastMlkitTranslateTextModule C:\Code\rn\translateML\node_modules\fast-mlkit-translate-text\android\src\main\java\com\fastmlkittranslatetext\FastMlkitTranslateTextPackage.java:32: error: cannot find symbol FastMlkitTranslateTextModule.NAME, ^ symbol: variable NAME location: class FastMlkitTranslateTextModule C:\Code\rn\translateML\node_modules\fast-mlkit-translate-text\android\src\main\java\com\fastmlkittranslat etext\FastMlkitTranslateTextPackage.java:34: error: cannot find symbol FastMlkitTranslateTextModule.NAME, ^ symbol: variable NAME location: class FastMlkitTranslateTextModule C:\Code\rn\translateML\node_modules\fast-mlkit-transl ate-text\android\src\main\java\com\fastmlkittranslatetext\FastMlkitTranslateTextPackage.java:35: error: cannot find symbol FastMlkitTranslateTextModule.NAME, ^ symbol: variable NAME location: class FastMlkitTranslateTextModule N ote: C:\Code\rn\translateML\node_modules\fast-mlkit-translate-text\android\src\main\java\com\fastmlkittranslatetext\FastMlkitTranslateTextPackage.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation f or details. 4 errors FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':fast-mlkit-translate-text:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details. * Try: > Run with --info option to get more log output. > Run with --scan to get full insights. BUILD FAILED in 40s. info Run CLI with --verbose flag for more details.

Looks like a version mismatch, any idea how I can fix it?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.