Closed gandersen101 closed 3 years ago
Merging #48 (4225852) into master (69c73ca) will increase coverage by
0.32%
. The diff coverage is98.63%
.
@@ Coverage Diff @@
## master #48 +/- ##
==========================================
+ Coverage 98.68% 99.01% +0.32%
==========================================
Files 22 22
Lines 992 1011 +19
Branches 236 239 +3
==========================================
+ Hits 979 1001 +22
+ Misses 5 4 -1
+ Partials 8 6 -2
Impacted Files | Coverage Δ | |
---|---|---|
src/spaczz/pipeline/spaczzruler.py | 98.12% <95.45%> (+0.37%) |
:arrow_up: |
src/spaczz/attrs.py | 97.87% <100.00%> (-0.03%) |
:arrow_down: |
src/spaczz/exceptions.py | 100.00% <100.00%> (ø) |
|
src/spaczz/matcher/_phrasematcher.py | 100.00% <100.00%> (ø) |
|
src/spaczz/matcher/fuzzymatcher.py | 100.00% <100.00%> (ø) |
|
src/spaczz/matcher/regexmatcher.py | 100.00% <100.00%> (ø) |
|
src/spaczz/matcher/similaritymatcher.py | 100.00% <100.00%> (ø) |
|
src/spaczz/matcher/tokenmatcher.py | 100.00% <100.00%> (ø) |
|
src/spaczz/process.py | 100.00% <100.00%> (ø) |
|
src/spaczz/regex/regexconfig.py | 100.00% <100.00%> (ø) |
|
... and 5 more |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 69c73ca...4225852. Read the comment docs.
FuzzyMatcher
andSimilarityMatcher
should run considerably faster.FuzzyMatcher
andSimilarityMatcher
now include athresh
parameter that defaults to100
. When matching, ifflex > 0
and the match ratio is >=thresh
during the initial scan of the document, no optimization will be attempted. By default perfect matches don't need to be run through match optimization.