Skip to main content

Escape unknown symbols in SentecePiece vocabularies

Project description

escape-unk

Escape unknown symbols in SentecePiece vocabularies. This is particulary useful for MarianNMT toolkit which does not support replacing unknown tokens with most attentive word in the source (see here, thanks to @emjotde for the idea).

Install

Just install it from PyPi

pip install escape-unk

Background

There are some scenarios where your machine translation model has to translate sentencences containing characters unknown for the SentencePiece vocabulary. Neural models usually start to hallucinate, throw out garbage or just don't know hot to translate when an unknown character comes to the input. In the cases where those characters simply need to be copied, escaping them to their hexadecimal representation, can be useful if the model manages to copy the escaped symbols.

Escape Chinese characters in an English-German vocabulary is just like:

echo "Beijing (Chinese: 北京) is the capital of the People's Republic of China" | escape-unk -m vocab.deen.spm
Beijing (Chinese: [[e58c97e4baac]]) is the capital of the People's Republic of China

or escaping emojis

echo "I ❤️ you" | escape-unk -m vocab.deen.spm
I [[e29da4efb88f]] you

So instead of:

echo "Beijing (Chinese: 北京) is the capital of the People's Republic of China" | marian-decoder -c model.config.yml
Peking (chinesisch: ) ist die Hauptstadt der Volksrepublik China

we will have:

echo "Beijing (Chinese: 北京) is the capital of the People's Republic of China" | escape-unk -m vocab.deen.spm | marian-decoder -c model.config.yml
Beijing (chinesisch: [[e58c97e4baac]]) ist die Hauptstadt der Volksrepublik China

and the full pipeline with unescape-unk:

echo "Beijing ..." | escape-unk -m vocab.deen.spm | marian-decode -c config.yml | unescape-unk
Beijing (chinesisch: 北京) ist die Hauptstadt der Volksrepublik China

WARNING: if an escaped sequence is not correctly copied by the translator and generates an invalid sequence, the character is omitted and substituted by an empty string. If you want it to fail when this happens, use --strict/-s mode with unescape-unk command.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

escape-unk-1.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

escape_unk-1.1-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file escape-unk-1.1.tar.gz.

File metadata

  • Download URL: escape-unk-1.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for escape-unk-1.1.tar.gz
Algorithm Hash digest
SHA256 3aaeec36c92991faedc166e2d10bc1b665e3b47feb70f31ebc6bb2d86c2939a2
MD5 b92b5bba6f2bcf5de2b6448c22e9235c
BLAKE2b-256 49488b992337a0045c42eabbd24d7287bc5e3c4d28c53d16fb15f058720f1fb6

See more details on using hashes here.

File details

Details for the file escape_unk-1.1-py3-none-any.whl.

File metadata

  • Download URL: escape_unk-1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for escape_unk-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 294427221ae21daf5c567baf6d07ca78dd8b3c0c2786bbe7c8254547d3c66324
MD5 6af65cf8956d547dcba679fcdedd82d0
BLAKE2b-256 80fdf0171f84db51de418379784c9dd46a9ee3bc00308b42f7dbc6ea089f640c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page