Update normalize.jl

compathelper/new_version/2020-05-20-12-03-08-092-188304956
matthieugomez 2020-02-13 09:49:41 -05:00
parent f144292b70
commit 283ce87ef2
1 changed files with 0 additions and 1 deletions

View File

@ -184,7 +184,6 @@ struct TokenSet{S <: SemiMetric} <: SemiMetric
TokenSet{S}(dist::S) where {S <: SemiMetric} = new(dist)
end
TokenSet(dist::SemiMetric) = TokenSet{typeof(normalize(dist))}(normalize(dist))
isnormalized(dist::TokenSet) = true
normalize(dist::TokenSet) = dist
# http://chairnerd.seatgeek.com/fuzzywuzzy-fuzzy-string-matching-in-python/