Giter Site home page Giter Site logo

beda's Introduction

BEDA

Build Status License

Get BEDA

go get github.com/hyperjumptech/beda

Introduction

BEDA is a golang library to detect differences or similarities between two words or string. Some time you want to detect whether a string is "the same" or "somehow similar to" another string. Suppose your system wants to detect whenever the user is putting bad-word as their user name, or to forbid them from using unwanted words in their postings. You need to implement some, not so easy , algorithm to do this task.

BEDA contains implementation of algorithm for detecting word differences. They are

  1. Levenshtein Distance : A string metric for measuring the difference between two sequences. Wikipedia
  2. Trigram or n-gram : A contiguous sequence of n items from a given sample of text or speech. Wikipedia
  3. Jaro & Jaro Winkler Distance : A string metric measuring an edit distance between two sequences. Wikipedia

BEDA is an Indonesia word for "different".

Usage

import "github.com/hyperjumptech/beda"

sd := beda.NewStringDiff("The First String", "The Second String")
lDist := sd.LevenshteinDistance()
tDiff := sd.TrigramCompare()
jDiff := sd.JaroDistance()
jwDiff := sd.JaroWinklerDistance(0.1)

fmt.Printf("Levenshtein Distance is %d \n", lDist)
fmt.Printf("Trigram Compare is is %f \n", lDist)
fmt.Printf("Jaro Distance is is %d \n", jDiff)
fmt.Printf("Jaro Wingkler Distance is %d \n", jwDiff)

Algorithms and APIs

String comparison is not so easy. There are a couple of algorithm to do this comparison, and each of them yield different result. Thus may suited for one purposses compared to the other.

To understand how and when or which algorithm should benefit your string comparisson quest, Please read this String similarity algorithms compared. Read them through, they will help you, a lot.

type StringDiff struct {
    S1 string
	S2 string
}

Levenshtein Distance

LevenshteinDistance is the minimum number of single-character edits required to change one word into the other, so the result is a positive integer. The algorithm is sensitive to string length. Which make it more difficult to draw pattern.

Reading :

API :

func LevenshteinDistance(s1, s2 string) int
func (sd *StringDiff) LevenshteinDistance() int

s1 is the first string to compare
s2 is the second string to compare
The closer return value to 0 means the more similar the two words.

Example :

sd := beda.NewStringDiff("abcd", "bc")
lDist := sd.LevenshteinDistance()
fmt.Printf("Distance is %d \n", lDist) // prints : Distance is 2

or

fmt.Printf("Distance is %d \n", beda.LevenshteinDistance("abcd", "bc"))

Damerau-Levenshtein Distance

(From Wikipedia) Damerau-Levenshtein Distance is a string metric for measuring the edit distance between two sequences. Informally, the Damerau–Levenshtein distance between two words is the minimum number of operations (consisting of insertions, deletions or substitutions of a single character, or transposition of two adjacent characters) required to change one word into the other.

The Damerau–Levenshtein distance differs from the classical Levenshtein distance by including transpositions among its allowable operations in addition to the three classical single-character edit operations (insertions, deletions and substitutions).

Reading :

API :

func DamerauLevenshteinDistance(s1, s2 string) int
func (sd *StringDiff) DamerauLevenshteinDistance(deleteCost, insertCost, replaceCost, swapCost int) int

func DamerauLevenshteinDistance take 2 arguments,
s1 is the first string to compare
s2 is the second string to compare
The closer return value to 0 means the more similar the two words. This function uses the default value of 1 for all deleteCost, insertCost, replaceCost and swapCost

func (sd *StringDiff) DamerauLevenshteinDistance takes 4 arguments,
deleteCost is multiplier factor for delete operation
insertCost is multiplier factor for insert operation
replaceCost is multiplier factor for replace operation
swapCost is multiplier factor for swap operation
A multiplier value enable us to weight on how impactful each of the operation contributing to the change distance.

Example :

sd := beda.NewStringDiff("abcd", "bc")
lDist := sd.DamerauLevenshteinDistance(1,1,1,1)
fmt.Printf("Distance is %d \n", lDist) // prints : Distance is 2

or

fmt.Printf("Distance is %d \n", beda.DamerauLevenshteinDistance("abcd", "bc"))

TriGram Compare

TrigramCompare is a case of n-gram, a contiguous sequence of n (three, in this case) items from a given sample. In our case, an application name is a sample and a character is an item.

Reading:

API :

func TrigramCompare(s1, s2 string) float32
func (sd *StringDiff) TrigramCompare() float32

s1 is the first string to compare
s2 is the second string to compare
The closer the result to 1 (one) means that the word is closer 100% similarities in 3 grams sequence.

Example :

sd := beda.NewStringDiff("martha", "marhta")
diff := sd.TrigramCompare()
fmt.Printf("Differences is %f \n", diff) 

or

fmt.Printf("Distance is %f \n", beda.TrigramCompare("martha", "marhta"))

Jaro Distance

JaroDistance distance between two words is the minimum number of single-character transpositions required to change one word into the other.

API :

func JaroDistance(s1, s2 string) float32
func (sd *StringDiff) JaroDistance() float32

s1 is the first string to compare
s2 is the second string to compare
The closer the result to 1 (one) means that the word is closer 100% similarities

Example :

sd := beda.NewStringDiff("martha", "marhta")
diff := sd.JaroDistance()
fmt.Printf("Differences is %f \n", diff) 

or

fmt.Printf("Distance is %f \n", beda.JaroDistance("martha", "marhta"))

Jaro Wingkler Distance

JaroWinklerDistance uses a prefix scale which gives more favourable ratings to strings that match from the beginning for a set prefix length

Reading :

API :

func JaroWinklerDistance(s1, s2 string) float32
func (sd *StringDiff) JaroWinklerDistance(p float32) float32

or

fmt.Printf("Distance is %f \n", beda.JaroWinklerDistance("martha", "marhta"))

s1 is the first string to compare
s2 is the second string to compare
p argument is constant scaling factor for how much the score is adjusted upwards for having common prefixes. The standard value for this constant in Winkler’s work is p = 0.1

The closer the result to 1 (one) means that the word is closer 100% similarities

Example :

sd := beda.NewStringDiff("martha", "marhta")
diff := sd.JaroWinklerDistance(0.1)
fmt.Printf("Differences is %f \n", diff) 

Tasks and Help Wanted.

Yes. We need contributor to make BEDA even better and useful to Open Source Community.

If you really want to help us, simply Fork the project and apply for Pull Request. Please read our Contribution Manual and Code of Conduct

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.