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

Updating docs on TextSegmentation #654

Merged
merged 4 commits into from
Jul 31, 2024
Merged

Conversation

mkaramlou
Copy link
Contributor

Linked issue(s)

KOL-7079

What change does this PR introduce and why?

Please check if the PR fulfills these requirements

  • Include reference to internal ticket and/or GitHub issue "Fixes #NNNN" (if applicable)
  • Relevant tests for the changes have been added
  • Relevant docs have been added / updated

@mkaramlou mkaramlou requested a review from a team as a code owner July 30, 2024 21:10
@mkaramlou mkaramlou requested a review from munkyshi July 30, 2024 21:11
Comment on lines 424 to 427
# Highlights 'Hello' in 'Hello, world'
TextSegment(text_field="text", start=0, end=6),
# Highlights 'summary of' in "A summary of current documentation."
TextSegment(text_field="summary", start=2, end=13),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we indent these?

TextSegment(text_field="summary", start=10, end=51),
# Highlights 'Hello' in 'Hello, world'
TextSegment(text_field="text", start=0, end=6),
# Highlights 'summary of' in "A summary of current documentation."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should probably be consistent with single vs double quotes

text_segments: List[TextSegment] = [
TextSegment(text_field="text", start=0, end=5),
TextSegment(text_field="summary", start=10, end=51),
# Highlights 'Hello' in 'Hello, world'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we sure that this is configured correctly? This doesn't seem to line up from the python side:

>>> text = 'Hello, world'
>>> summary = "A summary of current documentation."
>>> text[0:6]
'Hello,'
>>> summary[2:13]
'summary of '

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure actually :) I guess thats why this example is useful. I will change to above.

Copy link
Contributor

@munkyshi munkyshi Jul 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to be clear, probably cleanest to adjust the indices to 0, 5 and 2, 12 (rather than the highlighted segment)

Comment on lines 426 to 429
# Highlights "Hello" in "Hello, world"
TextSegment(text_field="text", start=0, end=5),
# Highlights "summary of" in "A summary of current documentation."
TextSegment(text_field="summary", start=2, end=12),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should still be indented, right?

Copy link

codecov bot commented Jul 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 93.68%. Comparing base (427d3af) to head (78a9823).

Additional details and impacted files
@@           Coverage Diff           @@
##            trunk     #654   +/-   ##
=======================================
  Coverage   93.68%   93.68%           
=======================================
  Files          90       90           
  Lines        5624     5624           
  Branches      832      832           
=======================================
  Hits         5269     5269           
  Misses        270      270           
  Partials       85       85           
Flag Coverage Δ
integration 76.35% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@mkaramlou mkaramlou merged commit 2b3c94f into trunk Jul 31, 2024
57 checks passed
@mkaramlou mkaramlou deleted the DocumentationEnhancements branch July 31, 2024 00:48
@mkaramlou mkaramlou restored the DocumentationEnhancements branch August 12, 2024 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants