Socket
Socket
Sign inDemoInstall

nlp-id

Package Overview
Dependencies
0
Maintainers
6
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nlp-id

Kumparan's NLP Services


Maintainers
6

Readme

Kumparan's NLP Services

nlp-id is a collection of modules which provides various functions for Natural Language Processing for Bahasa Indonesia. This repository contains all source code related to NLP services.

Installation

To install nlp-id, use the following command:

$ pip install nlp-id     

Usage

Description on how to use the lemmatizer, tokenizer, POS-tagger, etc. will be explained in more detail in this section.

Lemmatizer

Lemmatizer is used to get the root words from every word in a sentence.

from nlp_id.lemmatizer import Lemmatizer 
lemmatizer = Lemmatizer() 
lemmatizer.lemmatize('Saya sedang mencoba') 
# saya sedang coba 

Tokenizer

Tokenizer is used to convert text into tokens of word, punctuation, number, date, email, URL, etc. There are two kinds of tokenizer in this repository, standard tokenizer and phrase tokenizer. The standard tokenizer tokenizes the text into separate tokens where the word tokens are single-word tokens. Tokens that started with ku- or ended with -ku, -mu, -nya, -lah, -kah will be split if it is personal pronoun or particle.

from nlp_id.tokenizer import Tokenizer 
tokenizer = Tokenizer() 
tokenizer.tokenize('Lionel Messi pergi ke pasar di daerah Jakarta Pusat.') 
# ['Lionel', 'Messi', 'pergi', 'ke', 'pasar', 'di', 'daerah', 'Jakarta', 'Pusat', '.']

tokenizer.tokenize('Lionel Messi pergi ke rumahmu di daerah Jakarta Pusat.') 
# ['Lionel', 'Messi', 'pergi', 'ke', 'rumah', 'mu', 'di', 'daerah', 'Jakarta', 'Pusat', '.']

The phrase tokenizer tokenizes the text into separate tokens where the word tokens are phrases (single or multi-word tokens).

from nlp_id.tokenizer import PhraseTokenizer 
tokenizer = PhraseTokenizer() 
tokenizer.tokenize('Lionel Messi pergi ke pasar di daerah Jakarta Pusat.') 
# ['Lionel Messi', 'pergi', 'ke', 'pasar', 'di', 'daerah', 'Jakarta Pusat', '.']

POS Tagger

POS tagger is used to obtain the Part-Of-Speech tag from a text. There are two kinds of POS tagger in this repository, standard POS tagger and phrase POS tagger. The tokens in standard POS Tagger are single-word tokens, while the tokens in phrase POS Tagger are phrases (single or multi-word tokens).

from nlp_id.postag import PosTag
postagger = PosTag() 
postagger.get_pos_tag('Lionel Messi pergi ke pasar di daerah Jakarta Pusat.') 
# [('Lionel', 'NNP'), ('Messi', 'NNP'), ('pergi', 'VB'), ('ke', 'IN'), ('pasar', 'NN'), ('di', 'IN'), ('daerah', 'NN'),  
  ('Jakarta', 'NNP'), ('Pusat', 'NNP'), ('.', 'SYM')]

postagger.get_phrase_tag('Lionel Messi pergi ke pasar di daerah Jakarta Pusat.') 
# [('Lionel Messi', 'NP'), ('pergi', 'VP'), ('ke', 'IN'), ('pasar', 'NN'), ('di', 'IN'), ('daerah', 'NN'), 
  ('Jakarta Pusat', 'NP'), ('.', 'SYM')]

Description of tagset used for POS Tagger:

No.TagDescriptionExample
1ADVAdverbs. Includes adverb, modal, and auxiliary verbsangat, hanya, justru, boleh, harus, mesti
2CCCoordinating conjunction. Coordinating conjunction links two or more syntactically equivalent parts of a sentence. Coordinating conjunction can link independent clauses, phrases, or words.dan, tetapi, atau
3DTDeterminer/article. A grammatical unit which limits the potential referent of a noun phrase, whose basic role is to mark noun phrases as either definite or indefinite.para, sang, si, ini, itu, nya
4FWForeign word. Foreign word is a word which comes from foreign language and is not yet included in Indonesian dictionaryworkshop, business, e-commerce
5INPreposition. A preposition links word or phrase and constituent in front of that preposition and results prepositional phrase.dalam, dengan, di, ke
6JJAdjective. Adjectives are words which describe, modify, or specify some properties of the head noun of the phrasebersih, panjang, jauh, marah
7NEGNegationtidak, belum, jangan
8NNNoun. Nouns are words which refer to human, animal, thing, concept, or understandingmeja, kursi, monyet, perkumpulan
9NNPProper Noun. Proper noun is a specific name of a person, thing, place, event, etc.Indonesia, Jakarta, Piala Dunia, Idul Fitri, Jokowi
10NUMNumber. Includes cardinal and ordinal number9876, 2019, 0,5, empat
11PRPronoun. Includes personal pronoun and demonstrative pronounsaya, kami, kita, kalian, ini, itu, nya, yang
12RPParticle. Particle which confirms interrogative, imperative, or declarative sentencespun, lah, kah
13SCSubordinating Conjunction. Subordinating conjunction links two or more clauses and one of the clauses is a subordinate clause.sejak, jika, seandainya, dengan, bahwa
14SYMSymbols and Punctuations+,%,@
15UHInterjection. Interjection expresses feeling or state of mind and has no relation with other words syntactically.ayo, nah, ah
16VBVerb. Includes transitive verbs, intransitive verbs, active verbs, passive verbs, and copulas.tertidur, bekerja, membaca
17ADJPAdjective Phrase. A group of words headed by an adjective that describes a noun or a pronounsangat tinggi
18DPDate Phrase. Date written with whitespaces1 Januari 2020
19NPNoun Phrase. A phrase that has a noun (or indefinite pronoun) as its headJakarta Pusat, Lionel Messi
20NUMPNumber Phrase.10 juta
21VPVerb Phrase. A syntactic unit composed of at least one verb and its dependentstidak makan

Stopword

nlp-id also provide list of Indonesian stopword.

from nlp_id.stopword import StopWord 
stopword = StopWord() 
stopword.get_stopword() 
# [{list_of_nlp_id_stopword}]    

Stopword Removal is used to remove every Indonesian stopword from the given text.

from nlp_id.stopword import StopWord 
text = "Lionel Messi pergi Ke pasar di area Jakarta Pusat" # single sentence
stopword = StopWord() 
stopword.remove_stopword(text)
# Lionel Messi pergi pasar area Jakarta Pusat  

paragraph = "Lionel Messi pergi Ke pasar di area Jakarta Pusat itu. Sedangkan Cristiano Ronaldo ke pasar Di area Jakarta Selatan. Dan mereka tidak bertemu begini-begitu."
stopword.remove_stopword(text)
# Lionel Messi pergi pasar area Jakarta Pusat. Cristiano Ronaldo pasar area Jakarta Selatan. bertemu.

Training and Evaluation

Our model is trained using stories from kumparan as the dataset. We managed to get ~93% accuracy on our test set.

Citation

DOI

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc