
Security News
Node.js TSC Declines to Endorse Feature Bounty Program
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
This package provides wrappers for some pre-processing Perl scripts from the
Moses toolkit, namely, normalize-punctuation.perl
, tokenizer.perl
,
detokenizer.perl
and split-sentences.perl
.
All provided classes are importable from the package mosestokenizer
.
>>> from mosestokenizer import *
All classes have a constructor that takes a two-letter language code as
argument ('en'
, 'fr'
, 'de'
, etc) and the resulting objects
are callable.
When created, these wrapper objects launch the corresponding Perl script as a
background process. When the objects are no longer needed, you should call the
.close()
method to close the background process and free system resources.
The objects also support the context manager interface.
Thus, if used within a with
block, the .close()
method is invoked
automatically when the block exits.
The following two usages of MosesTokenizer
are equivalent:
>>> # here we will call .close() explicitly at the end:
>>> tokenize = MosesTokenizer('en')
>>> tokenize('Hello World!')
['Hello', 'World', '!']
>>> tokenize.close()
>>> # here we take advantage of the context manager interface:
>>> with MosesTokenizer('en') as tokenize:
>>> tokenize('Hello World!')
...
['Hello', 'World', '!']
As shown above, MosesTokenizer
callable objects take a string and return a
list of tokens (strings).
By contrast, MosesDetokenizer
takes a list of tokens and returns a string:
>>> with MosesDetokenizer('en') as detokenize:
>>> detokenize(['Hello', 'World', '!'])
...
'Hello World!'
MosesSentenceSplitter
does more than the name says. Besides splitting
sentences, it will also unwrap text, i.e. it will try to guess if a sentence
continues in the next line or not. It takes a list of lines (strings) and
returns a list of sentences (strings):
>>> with MosesSentenceSplitter('en') as splitsents:
>>> splitsents([
... 'Mr. Smith is away. Do you want to',
... 'leave a message?'
... ])
...
['Mr. Smith is away.', 'Do you want to leave a message?']
MosesPunctuationNormalizer
objects take a string as argument and return a
string:
>>> with MosesPunctuationNormalizer('en') as normalize:
>>> normalize('«Hello World» — she said…')
...
'"Hello World" - she said...'
Copyright ® 2016-2021, Luís Gomes luismsgomes@gmail.com.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
FAQs
Wrappers for several pre-processing scripts from the Moses toolkit.
We found that mosestokenizer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.