-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add text analyzer to skip text extraction from image (#199)
* read in text from csv * add tests for csv reading * run textanalyzer in demo notebook * add text analyser in doc and demo * improve init TextDetector testing * more init tests * add csv encoding keyword * add utf16-csv file * skip csv reading on windows
- Loading branch information
Showing
9 changed files
with
328 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
text, date | ||
this is a test, 05/31/24 | ||
bu bir denemedir, 05/31/24 | ||
dies ist ein Test, 05/31/24 | ||
c'est un test, 05/31/24 | ||
esto es una prueba, 05/31/24 | ||
detta är ett test, 05/31/24 | ||
|
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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
text, date | ||
this is a test, 05/31/24 | ||
bu bir denemedir, 05/31/24 | ||
dies ist ein Test, 05/31/24 | ||
c'est un test, 05/31/24 | ||
esto es una prueba, 05/31/24 | ||
detta är ett test, 05/31/24 | ||
|
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"test.csvrow-1": | ||
{ | ||
"filename": "test.csv", | ||
"text": "this is a test" | ||
}, | ||
"test.csvrow-2": | ||
{ | ||
"filename": "test.csv", | ||
"text": "bu bir denemedir" | ||
}, | ||
"test.csvrow-3": | ||
{ | ||
"filename": "test.csv", | ||
"text": "dies ist ein Test" | ||
}, | ||
"test.csvrow-4": | ||
{ | ||
"filename": "test.csv", | ||
"text": "c'est un test" | ||
}, | ||
"test.csvrow-5": | ||
{ | ||
"filename": "test.csv", | ||
"text": "esto es una prueba" | ||
}, | ||
"test.csvrow-6": | ||
{ | ||
"filename": "test.csv", | ||
"text": "detta är ett test" | ||
} | ||
} |
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
Oops, something went wrong.