I using Spacy for custom sentence spliting and i need to parametrized the custom_delimeter/word for sentence spiting but i didnt find how to pass as an arugument here is the function,
# Manual or Custom Based
def mycustom_boundary(docx):
for token in docx[:-1]:
if token.text == '...':
docx[token.i+1].is_sent_start = True
return docx
# Adding the rule before parsing
nlp.add_pipe(mycustom_boundary,before='parser')
Please let me know how can i send as a argument custom based splitter as list to function?