-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exception fixed in WordSegmentation
- Loading branch information
Showing
9 changed files
with
23 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,16 +18,16 @@ but SymSpell needs to generate **only 25 deletes** to cover them all, both at pr | |
<br> | ||
|
||
``` | ||
Copyright (c) 2021 Wolf Garbe | ||
Version: 6.7.1 | ||
Copyright (c) 2022 Wolf Garbe | ||
Version: 6.7.2 | ||
Author: Wolf Garbe <[email protected]> | ||
Maintainer: Wolf Garbe <[email protected]> | ||
URL: https://github.com/wolfgarbe/symspell | ||
Description: https://seekstorm.com/blog/1000x-spelling-correction/ | ||
MIT License | ||
Copyright (c) 2021 Wolf Garbe | ||
Copyright (c) 2022 Wolf Garbe | ||
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 | ||
|
@@ -378,6 +378,11 @@ https://github.com/Archivus/SymSpell | |
2. Option to preserve case (upper/lower case) of input term. | ||
3. Open source the code for creating custom frequency dictionaries in any language and size as intersection between Google Books Ngram data (Provides representative word frequencies) and SCOWL Spell Checker Oriented Word Lists (Ensures genuine English vocabulary). | ||
|
||
#### Changes in v6.7.2 | ||
|
||
1. Exception fixed in WordSegmentation | ||
2. Platform changed from netcore 2.1 to netcore 3.0 | ||
|
||
#### Changes in v6.7.1 | ||
|
||
1. Framework target changed from net472 to net47<br> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,15 +11,15 @@ | |
// 2. mistakenly omitted space between two correct words led to one incorrect combined term | ||
// 3. multiple independent input terms with/without spelling errors | ||
|
||
// Copyright (C) 2021 Wolf Garbe | ||
// Version: 6.7.1 | ||
// Copyright (C) 2022 Wolf Garbe | ||
// Version: 6.7.2 | ||
// Author: Wolf Garbe [email protected] | ||
// Maintainer: Wolf Garbe [email protected] | ||
// URL: https://github.com/wolfgarbe/symspell | ||
// Description: https://seekstorm.com/blog/1000x-spelling-correction/ | ||
// | ||
// MIT License | ||
// Copyright (c) 2020 Wolf Garbe | ||
// Copyright (c) 2022 Wolf Garbe | ||
// 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, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,13 @@ | |
<Company>Wolf Garbe <[email protected]></Company> | ||
<Product>SymSpell</Product> | ||
<Description>Spelling correction & Fuzzy search: 1 million times faster through Symmetric Delete spelling correction algorithm</Description> | ||
<Copyright>Copyright (C) 2021 Wolf Garbe</Copyright> | ||
<Copyright>Copyright (C) 2022 Wolf Garbe</Copyright> | ||
<PackageProjectUrl>https://github.com/wolfgarbe/symspell</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/wolfgarbe</RepositoryUrl> | ||
<RepositoryType>Git</RepositoryType> | ||
<PackageTags>symspell, spelling-correction, spellcheck, spell-check, spelling, fuzzy-search, approximate-string-matching, edit-distance, levenshtein, levenshtein-distance, damerau-levenshtein, word segmentation</PackageTags> | ||
<PackageReleaseNotes>framework target changed from net472 to net47 \r\n | ||
framework target added netcoreapp3.0 \r\n | ||
more common contractions added to frequency_dictionary_en_82_765.txt</PackageReleaseNotes> | ||
<Version>6.7.1</Version> | ||
<PackageReleaseNotes>Exception fixed in WordSegmentation</PackageReleaseNotes> | ||
<Version>6.7.2</Version> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
|