npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

korean-text-analytics

v0.0.7

Published

Korean Text Analytics for Nodejs 한글의 자연어 처리와 텍스트 마이닝을 지원하는 기본기능을 탑재한 모듈

Downloads

18

Readme

korean-text-analytics

test version.

이 모듈은 nodejs에서 한국어에 대한 자연어 처리를 진행하고 텍스트 마이닝의 기본 기능들을 제공하기 위해 개발되어 지고 있습니다.

유의사항 .

  • Windows 10과 Mac osX 에서 테스트를 진행하였습니다. 이외의 플랫폼에서는 테스트를 진행하지 않았습니다.
  • iconv 모듈에 의존성이 있습니다.
  • 형태소 분석과 토픽 모델링(LDA)에 Java Library가 사용되고 있습니다.
  • 테스트 버전이라 형태소 분석에 대한 성능을 기대 할 수 없습니다. (추후 수정 예정)

1. 형태소 분석

Komoran 형태소 분석기를 사용하고 있습니다.

  • Komoran : http://www.shineware.co.kr/?page_id=835
  • 이외의 형태소 분석기(꼬꼬마, 한나눔 등)에 대해선 추후 추가 할 예정입니다. - 라이센스 확인 필요
JAVA 1.7 이상이 설치 되어 있어야 합니다.

1.1 사용예제

1.1.1 한 문장 형태소 분석
var mod = require('korean-text-analytics');
var task = new mod.TaskQueue();

mod.ExecuteMorphModule('안녕하세요. 여기는 대한민국 입니다.', function (err, rep) {
	console.log(err, rep);
})

/* 결과 :
rep : {
	morphed: [
     { word: '안녕하세요', tag: 'NNP' },
     { word: '.', tag: 'SF' },
     { word: '여기', tag: 'NP' },
     { word: '는', tag: 'JX' },
     { word: '대한민국', tag: 'NNP' },
     { word: '이', tag: 'VCP' },
     { word: 'ㅂ니다', tag: 'EF' },
     { word: '.', tag: 'SF' }
    ],
 	origin: '안녕하세요. 여기는 대한민국 입니다. '
}
*/
1.1.1 여러 문장에 대한 단어와 태그 출력

목적 : 여러 텍스트를 한번에 처리하고 추가적인 정보 없이 단어와 품사를 확인

var mod = require('korean-text-analytics');
var task = new mod.TaskQueue();

task.addSteamTask('동해물과 백두산이 마르고 닳도록', {comment: '추가 정보'});
task.addSteamTask('하느님이 보우하사 우리나라만세', {comment: '추가 정보'});
task.exec(function (err, rep) {
    var tags = mod.ResultOnlyTags(rep);
    console.log(tags);
});

/* 결과
rep : [
	{ word: '동해물과 백두산이', tag: 'NNP' },
    { word: '마르', tag: 'VV' },
    { word: '고', tag: 'EC' },
    { word: '닳', tag: 'VV' },
    { word: '도록', tag: 'EC' },
    { word: '하느님', tag: 'NNG' },
    { word: '이', tag: 'JKS' },
    { word: '보우', tag: 'NNG' },
    { word: '하', tag: 'XSV' },
    { word: '사', tag: 'EC' },
    { word: '우리나라', tag: 'NNG' },
    { word: '만세', tag: 'NNG' }
]
*/
1.1.2 전체 형태소 분석 결과 출력

목적 : 여러 텍스트를 한번에 처리하고 원문과 추가적인 정보를 저장한 상태로 형태소 분석의 결과를 얻고자 함.

var mod = require('korean-text-analytics');
var task = new mod.TaskQueue();

task.addSteamTask('동해물과 백두산이 마르고 닳도록');
task.addSteamTask('하느님이 보우하사 우리나라만세', {comment: '추가 정보'}/*데이터에 대한 추가정보를 입력*/);
task.exec(function (err, rep) {
    console.log(err, JSON.stringify(rep, null, 4));
});

/* 결과
rep : JSON ARRAY
[
    {
        "source": "동해물과 백두산이 마르고 닳도록",
        "addition": {
            "comment": "추가 정보"
        },
        "morphed": [
            {
                "sentence": "동해물과 백두산이 마르고 닳도록",
                "words": [
                    {
                        "word": "동해물과 백두산이",
                        "tag": "NNP"
                    },
                    {
                        "word": "마르",
                        "tag": "VV"
                    },
                    ...
                ]
            }
        ]
    },
    ....
]
*/

1.2 사용자 사전 추가

NodeJS Wrapper 제작중

1.3 품사의 빈도 카운트

문서 작성중

2.0 문서의 단어간 연관성 추출

NodeJS Wrapper 제작중

3.0 Topic Modeling (LDA)

문서 작성중

contact : [email protected]

  • 본 모듈은 초기 개발 단계라 미흡한 점이 많습니다.
  • 에러에 대한 내용이나 건의에 대하여 메일 주시면 대단히 감사하겠습니다.
  • 간단한 테스트 소스는 node_modules/korean-text-analytics/test.js 를 참고하세요

License : Apache License 2.0

TASK.

  • [x] 형태소 분석기 성능 개선
  • [x] LDA Javascript Wrapper Testing..
  • [x] 사용자 사전 추가 Javscript Wrapper 제작
  • [o] Add Simple Morph Wrapper.
  • [o] Morph Result Reformat