virtebi

package module
v0.0.0-...-dde5974 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 19, 2015 License: MIT Imports: 7 Imported by: 0

README

Virtebi Segment

virtebi algorithm segmentation: split multiple joined words with corpus parser in golang

Implementation Virtebi Algorithm by split joined words, into readable words in golang

It was begin, when I searching for solution for parsing domain names, into readable string. And I found the solution http://stackoverflow.com/questions/195010/how-can-i-split-multiple-joined-words

How to use

First, you have to get the module

go get github.com/raitucarp/virtebi-segment

Download the corpus https://github.com/raitucarp/corpus/raw/master/corpus.txt Place the corpus to anywhere do you want

Import the module

package main

import (
    "github.com/raitucarp/virtebi-segment"
)

func main() {
    c := virtebi.NewCorpus()
    c.LoadCorpus("/home/path/to/the/corpus.txt")
    
    segment, prob := c.Segment("thisisatext")
    
    // this is a text
    fmt.Println(segment) 
}

TODO

  • Better documentation and Readme.
  • Improving code quality.
  • Fix some bugs.

License

The MIT License (MIT)

Copyright (c) 2015 Ribhararnus Pracutiar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Documentation

Overview

Package virtebi provides virtebi sorting algorithm to split multiple joined words into readable string.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Corpus

type Corpus struct {
	// dictionary is just
	// word and the value
	Dictionary map[string]float64

	// get maximum longest word
	// it's important to use this
	Max float64

	// total number of dictionary
	Total float64
}

create corpus structure

func NewCorpus

func NewCorpus() *Corpus

Corpus constructor

func (*Corpus) Build

func (c *Corpus) Build(path string)

manually build the database actually it's just call build from text

func (*Corpus) IsAlreadyBuilt

func (c *Corpus) IsAlreadyBuilt() bool

func (*Corpus) LoadCorpus

func (c *Corpus) LoadCorpus(path string)

load the corpus into existence, let the war begin

func (*Corpus) Segment

func (c *Corpus) Segment(text string) (string, float64)

Match is the rule here, take string and search in dictionary. Virtebi algorithm in action

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL