Code Monkey home page Code Monkey logo

mixed-english-and-chinese-tokenizer's Introduction

Mixed English and Chinese Tokenizer

Tokenizes sentences containing a mix of Chinese and English words.

Optionally, lemmatizes English words. English contractions such as "don't" are always changed to full forms such as "do not".

Supports Cantonese / Taiwanese / Mandarin. Defaults to producing output in Traditional Chinese (see options below).

Important

In order for this to work, you need the CEDICT dictionary. Search for "cedict_ts.u8", download the file and place it into the root folder of your Node.js application.

Example

const MEACT = require('mixed-english-and-chinese-tokenizer');

let m = new MEACT();

(async() => {
	console.log(
		/* Produces ['hello', 'what', 'is', 'up', '边度', '有', '柜员机', '呀']: */
		await m.tokenize(`hello, what's up, 邊度有櫃員機呀?`),

		/* Produces ['hello', 'what', 'be', 'up', '边度', '有', '柜员机', '呀']: */
		await m.tokenize(`hello, what's up, 邊度有櫃員機呀?`),
	);

	m = null; // free up memory occupied by CEDICT
})();

Methods

async tokenize(text)

Returns an array of tokens from string. Punctuation is excluded.

let m = new MEACT();

let tokens = await m.tokenize('I am here'); // ['I', 'am', 'here'];

async lemmatize(text)

The same as tokenize(), except that English words are converted into lemmas.

For example, 'doing' will be changed to 'do'.

let m = new MEACT();

let tokens = await m.lemmatize('I am here'); // ['I', 'be', 'here'];

Options

The constructor takes an optional options object.

  • options.simplified - Boolean. Whether to use Simplified Chinese. Default is false and all output is forced to Traditional Chinese, even if it is in Simplified Chinese.
  • options.lemmaCache - Object. An object storing the cache of all English lemmas. Lemmatizing an English word is computationally expensive (50-400 ms). For that reason, you may want to use an object that will cache the lemmas. You could store that object globally or save it to disk. The code would look roughly like this:
let lemmaCache = readLemmaCacheFromDisk(); // assume you stored it somewhere

const m = new MEACT({ lemmaCache });
let lemmatized = m.lemmatize(text);

// lemmaCache has been updated with new lemmas, save it to disk. Next time the
// same sentence will be lemmatized much faster.
saveLemmaCacheToDisk(lemmaCache);

mixed-english-and-chinese-tokenizer's People

Contributors

anton-bot avatar

Watchers

Tadeusz Kurpiel avatar

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.