-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added WordIterator, GlobalWordIterator and SentenceIterator to the library - Added quotes around the generator expression inside target_link_libraries command - Included tests for iterators
- Loading branch information
1 parent
7f89761
commit bc88fea
Showing
5 changed files
with
122 additions
and
3 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,78 @@ | ||
class WordIterator: | ||
def __init__(self, annotation, sentence_id): | ||
self._sentence_id = sentence_id | ||
self._word_id = -1 | ||
self._annotation = annotation | ||
|
||
def __iter__(self): | ||
self._word_id = -1 | ||
return self | ||
|
||
def __next__(self): | ||
self._word_id += 1 | ||
if self._word_id >= self._annotation.word_count(self._sentence_id): | ||
raise StopIteration | ||
return self | ||
|
||
def surface(self): | ||
range = self.range() | ||
return self._annotation.text[range.begin:range.end] | ||
|
||
def range(self): | ||
return self._annotation.word_as_range(self._sentence_id, self._word_id) | ||
|
||
def id(self): | ||
return (self._sentence_id, self._word_id) | ||
|
||
class GlobalWordIterator: | ||
def __init__(self, annotation): | ||
self._annotation = annotation | ||
self._word_id = -1 | ||
self._sentence_id = 0 | ||
|
||
def __iter__(self): | ||
self._word_id = -1 | ||
self._sentence_id = 0 | ||
return self | ||
|
||
def __next__(self): | ||
self._word_id += 1 | ||
if self._word_id >= self._annotation.word_count(self._sentence_id): | ||
self._sentence_id += 1 | ||
if self._sentence_id >= self._annotation.sentence_count(): | ||
raise StopIteration | ||
self._word_id = 0 | ||
return self | ||
|
||
def surface(self): | ||
range = self.range() | ||
return self._annotation.text[range.begin:range.end] | ||
|
||
def range(self): | ||
return self._annotation.word_as_range(self._sentence_id, self._word_id) | ||
|
||
def id(self): | ||
return (self._sentence_id, self._word_id) | ||
|
||
class SentenceIterator: | ||
def __init__(self, annotation): | ||
self._annotation = annotation | ||
self._sentence_id = -1 | ||
|
||
def __iter__(self): | ||
self._sentence_id = -1 | ||
return self | ||
|
||
def __next__(self): | ||
self._sentence_id += 1 | ||
if self._sentence_id >= self._annotation.sentence_count(): | ||
raise StopIteration | ||
return self | ||
|
||
def words(self): | ||
return WordIterator(self._annotation, self._sentence_id) | ||
|
||
def __repr__(self): | ||
range = self._annotation.sentence_as_range(self._sentence_id) | ||
sentence = self._annotation.text[range.begin:range.end] | ||
return f'{sentence}' |
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,40 @@ | ||
# type: ignore | ||
from slimt import SentenceIterator, WordIterator, GlobalWordIterator | ||
|
||
def test_basic(service, models): | ||
source = "Hi, How are you? Its been a long time.\nCan you help me out with some things?" | ||
model = models[1] | ||
response = service.translate(model, [source], html=False)[0] | ||
|
||
target = response.target | ||
text = target.text | ||
|
||
sen_iter_tgt = SentenceIterator(target) | ||
word_iter_global = GlobalWordIterator(target) | ||
|
||
sentence_count = target.sentence_count() | ||
for sentence_idx, word_iter in zip(range(sentence_count), sen_iter_tgt): | ||
word_count = target.word_count(sentence_idx) | ||
for word_idx, word in zip(range(word_count), word_iter.words()): | ||
|
||
expected_text_range = target.word_as_range(sentence_idx, word_idx) | ||
reconstructed_text_range = word.range() | ||
|
||
# For SentenceIterator and WordIterator | ||
assert expected_text_range.begin == reconstructed_text_range.begin | ||
assert expected_text_range.end == reconstructed_text_range.end | ||
|
||
expected_word = text[expected_text_range.begin:expected_text_range.end] | ||
reconstructed_word = word.surface() | ||
|
||
assert expected_word == reconstructed_word | ||
|
||
word_global = next(word_iter_global) | ||
|
||
reconstructed_text_range_glob = word_global.range() | ||
reconstructed_word_glob = word_global.surface() | ||
|
||
# For GlobalWordIterator | ||
assert expected_text_range.begin == reconstructed_text_range_glob.begin | ||
assert expected_text_range.end == reconstructed_text_range_glob.end | ||
assert expected_word == reconstructed_word_glob |
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