Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add multi-document support for span arrays #170

Merged
merged 22 commits into from
Mar 3, 2021
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ab58815
Initial version of StringTable class
frreiss Jan 26, 2021
a5e16de
Initial implementation of multi-doc SpanArrays.
frreiss Jan 26, 2021
2aa58cd
Merge branch 'master' of https://github.com/CODAIT/text-extensions-fo…
frreiss Jan 26, 2021
692efa5
Merge branch 'master' of https://github.com/CODAIT/text-extensions-fo…
frreiss Feb 3, 2021
ba2bf9b
Fixed a bunch of regressions
frreiss Feb 3, 2021
19dfad7
Pull base class for tables of things
frreiss Feb 18, 2021
759f9e0
Merge branch 'master' of https://github.com/CODAIT/text-extensions-fo…
frreiss Feb 19, 2021
1ec4880
Additional refactoring of ThingTable
frreiss Feb 22, 2021
4b09833
Adjust remainder of package for changes to span internals
frreiss Feb 22, 2021
5d40dd8
Fix bug introduced by pycharm auto-fix-up-imports
frreiss Feb 22, 2021
68f21fd
Merge branch 'master' of https://github.com/CODAIT/text-extensions-fo…
frreiss Feb 22, 2021
d7f437f
Fix bug in document_text property and add document_tokens property
frreiss Feb 23, 2021
bd8c2e0
Make combine_folds() return a multi-doc SpanArray instead of a series…
frreiss Feb 23, 2021
98dc855
Update and rerun notebooks
frreiss Feb 23, 2021
cbc0d2b
Update and rerun notebooks under tutorials/corpus
frreiss Feb 24, 2021
ce7d2ec
Clean up constructors and remove token table
frreiss Feb 27, 2021
48ddb9e
Rerun notebooks after code changes
frreiss Feb 27, 2021
9cb2a74
Rerun expensive notebooks after code changes
frreiss Feb 27, 2021
59749f9
Further updates to rendering to fix dark mode
frreiss Mar 2, 2021
5aa13ad
Rerun notebooks after rendering changes
frreiss Mar 2, 2021
fdfe2aa
Update test results to reflect HTML changes
frreiss Mar 2, 2021
0fdd13b
Make document_text property more user-friendly
frreiss Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
…r-pandas into branch-multidoc
  • Loading branch information
frreiss committed Jan 26, 2021
commit 2aa58cd440a7348dd1a12d26edc9f67bfdd3508c
1 change: 1 addition & 0 deletions text_extensions_for_pandas/array/span.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
# Internal imports
import text_extensions_for_pandas.jupyter as jupyter
from text_extensions_for_pandas.array.string_table import StringTable
from text_extensions_for_pandas.util import to_int_array


def _check_same_text(o1, o2):
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.