Skip to main content

SentencePiece python wrapper

Project description

SentencePiece Python Wrapper

Python wrapper for SentencePiece. This API will offer the encoding, decoding and training of Sentencepiece.

Build and Install SentencePiece

For Linux (x64/i686), macOS, and Windows(win32/x64) environment, you can simply use pip command to install SentencePiece python module.

% pip install sentencepiece

To build and install the Python wrapper from source, please install SentencePiece C++ and try the following commands:

% python setup.py build
% sudo python setup.py install

If you don’t have write permission to the global site-packages directory or don’t want to install into it, please try:

% python setup.py install --user

Usage

See this google colab page to run sentencepiece interactively. (Note: this sample is written in old interface.)

Segmentation

% python
>>> import sentencepiece as spm
>>> sp = spm.SentencePieceProcessor(model_file='test/test_model.model')
>>> sp.encode('This is a test')
[284, 47, 11, 4, 15, 400]
>>> sp.encode(['This is a test', 'Hello world'], out_type=int)
[[284, 47, 11, 4, 15, 400], [151, 88, 21, 887]]
>>> sp.encode('This is a test', out_type=str)
['▁This', '▁is', '▁a', '▁', 't', 'est']
>>> sp.encode(['This is a test', 'Hello world'], out_type=str)
[['▁This', '▁is', '▁a', '▁', 't', 'est'], ['▁He', 'll', 'o', '▁world']]
>>> for _ in range(10):
...     sp.encode('This is a test', out_type=str, enable_sampling=True, alpha=0.1, nbest_size=-1)
... 
['▁', 'This', '▁', 'is', '▁a', '▁', 't', 'e', 'st']
['▁T', 'h', 'i', 's', '▁is', '▁a', '▁', 'te', 's', 't']
['▁T', 'h', 'is', '▁', 'is', '▁', 'a', '▁', 't', 'est']
['▁', 'This', '▁is', '▁', 'a', '▁', 't', 'e', 'st']
['▁', 'This', '▁', 'is', '▁', 'a', '▁', 't', 'e', 's', 't']
['▁This', '▁is', '▁a', '▁', 'te', 's', 't']
['▁This', '▁is', '▁', 'a', '▁', 't', 'e', 'st']
['▁', 'T', 'h', 'is', '▁', 'is', '▁', 'a', '▁', 'te', 'st']
['▁', 'This', '▁', 'i', 's', '▁a', '▁', 't', 'e', 'st']
['▁This', '▁', 'is', '▁a', '▁', 't', 'est']
>>> sp.decode([284, 47, 11, 4, 15, 400])
'This is a test'
>>> sp.decode([[284, 47, 11, 4, 15, 400], [151, 88, 21, 887]])
['This is a test', 'Hello world']
>>> sp.decode(['▁', 'This', '▁', 'is', '▁a', '▁', 't', 'e', 'st'])
'This is a test'
>>> sp.decode([['▁This', '▁is', '▁a', '▁', 't', 'est'], ['▁He', 'll', 'o', '▁world']])
['This is a test', 'Hello world']
>>> sp.get_piece_size()
1000
>>> sp.id_to_piece(2)
'</s>'
>>> sp.id_to_piece([2, 3, 4])
['</s>', '\r', '▁']
>>> sp.piece_to_id('<s>')
1
>>> sp.piece_to_id(['</s>', '\r', '▁'])
[2, 3, 4]
>>> len(sp)
1000
>>> sp['</s>']
2

Model Training

Training is performed by passing parameters of spm_train to SentencePieceTrainer.train() function.

>>> import sentencepiece as spm
>>> spm.SentencePieceTrainer.train(input='test/botchan.txt', model_prefix='m', vocab_size=1000, user_defined_symbols=['foo', 'bar'])
sentencepiece_trainer.cc(73) LOG(INFO) Starts training with : 
trainer_spec {
  input: test/botchan.txt
  .. snip
unigram_model_trainer.cc(500) LOG(INFO) EM sub_iter=1 size=1188 obj=10.2839 num_tokens=32182 num_tokens/piece=27.0892
unigram_model_trainer.cc(500) LOG(INFO) EM sub_iter=0 size=1100 obj=10.4269 num_tokens=33001 num_tokens/piece=30.0009
unigram_model_trainer.cc(500) LOG(INFO) EM sub_iter=1 size=1100 obj=10.4069 num_tokens=33002 num_tokens/piece=30.0018
trainer_interface.cc(595) LOG(INFO) Saving model: m.model
trainer_interface.cc(619) LOG(INFO) Saving vocabs: m.vocab
>>>

Training without local filesystem

Sentencepiece trainer can receive any iterable object to feed training sentences. You can also pass a file object (instance with write() method) to emit the output model to any devices. These features are useful to run sentencepiece on environment that have limited access to the local file system (e.g., Google colab.)

import urllib.request
import io
import sentencepiece as spm

# Loads model from URL as iterator and stores the model to BytesIO.
model = io.BytesIO()
with urllib.request.urlopen(
    'https://raw.githubusercontent.com/google/sentencepiece/master/data/botchan.txt'
) as response:
  spm.SentencePieceTrainer.train(
      sentence_iterator=response, model_writer=model, vocab_size=1000)

# Serialize the model as file.
# with open('out.model', 'wb') as f:
#   f.write(model.getvalue())

# Directly load the model from serialized model.
sp = spm.SentencePieceProcessor(model_proto=model.getvalue())
print(sp.encode('this is test'))

Segmentation (old interface)

% python
>>> import sentencepiece as spm
>>> sp = spm.SentencePieceProcessor()
>>> sp.Load("test/test_model.model")
True
>>> sp.EncodeAsPieces("This is a test")
['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'est']
>>> sp.EncodeAsIds("This is a test")
[284, 47, 11, 4, 15, 400]
>>> sp.DecodePieces(['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'est'])
'This is a test'
>>> sp.NBestEncodeAsPieces("This is a test", 5)
[['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'est'], ['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 'te', 'st'], ['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 'te', 's', 't'], ['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'e', 'st'], ['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'es', 't']]
>>> for x in range(10):
...     sp.SampleEncodeAsPieces("This is a test", -1, 0.1)
...
['\xe2\x96\x81', 'T', 'h', 'i', 's', '\xe2\x96\x81', 'is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'e', 's', 't']
['\xe2\x96\x81T', 'h', 'is', '\xe2\x96\x81is', '\xe2\x96\x81', 'a', '\xe2\x96\x81', 't', 'est']
['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81', 'a', '\xe2\x96\x81', 't', 'e', 'st']
['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'e', 'st']
['\xe2\x96\x81This', '\xe2\x96\x81is', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'e', 's', 't']
['\xe2\x96\x81T', 'h', 'is', '\xe2\x96\x81', 'i', 's', '\xe2\x96\x81a', '\xe2\x96\x81', 'te', 's', 't']
['\xe2\x96\x81This', '\xe2\x96\x81', 'is', '\xe2\x96\x81a', '\xe2\x96\x81', 'te', 's', 't']
['\xe2\x96\x81This', '\xe2\x96\x81', 'i', 's', '\xe2\x96\x81a', '\xe2\x96\x81', 't', 'e', 'st']
['\xe2\x96\x81This', '\xe2\x96\x81', 'is', '\xe2\x96\x81', 'a', '\xe2\x96\x81', 't', 'e', 'st']
['\xe2\x96\x81This', '\xe2\x96\x81', 'i', 's', '\xe2\x96\x81', 'a', '\xe2\x96\x81', 'te', 's', 't']
>>> sp.DecodeIds([284, 47, 11, 4, 15, 400])
'This is a test'
>>> sp.GetPieceSize()
1000
>>> sp.IdToPiece(2)
'</s>'
>>> sp.PieceToId('</s>')
2
>>> len(sp)
1000
>>> sp['</s>']
2

Model Training (old interface)

Training is performed by passing parameters of spm_train to SentencePieceTrainer.Train() function.

>>> import sentencepiece as spm
>>> spm.SentencePieceTrainer.Train('--input=test/botchan.txt --model_prefix=m --vocab_size=1000')
unigram_model_trainer.cc(494) LOG(INFO) Starts training with : 
input: "test/botchan.txt"
model_prefix: "m"
model_type: UNIGRAM
..snip..
unigram_model_trainer.cc(529) LOG(INFO) EM sub_iter=0 size=1239 obj=10.4055 num_tokens=36256 num_tokens/piece=29.2623
unigram_model_trainer.cc(529) LOG(INFO) EM sub_iter=1 size=1239 obj=10.3187 num_tokens=36256 num_tokens/piece=29.2623
unigram_model_trainer.cc(529) LOG(INFO) EM sub_iter=0 size=1100 obj=10.5285 num_tokens=37633 num_tokens/piece=34.2118
unigram_model_trainer.cc(529) LOG(INFO) EM sub_iter=1 size=1100 obj=10.4973 num_tokens=37630 num_tokens/piece=34.2091
trainer_interface.cc(284) LOG(INFO) Saving model: m.model
trainer_interface.cc(293) LOG(INFO) Saving vocabs: m.vocab
>>>

Python2/3 String/Unicode compatibility

Sentencepiece python wrapper accepts both Unicode string and legacy byte string. The output string type is determined by the input string type. The output type of IdToPiece/DecodeIds methods is str, but note that it is a legacy byte string in Python2 and Unicode string in Python3 respectively.

  • Python2:
>>> sp.EncodeAsPieces('吾輩は猫である')
['\xe2\x96\x81', '\xe5\x90\xbe', '\xe8\xbc\xa9', '\xe3\x81\xaf', '\xe7\x8c\xab', '\xe3\x81\xa7\xe3\x81\x82\xe3\x82\x8b']
>>> sp.EncodeAsPieces(u'吾輩は猫である')
[u'\u2581', u'\u543e', u'\u8f29', u'\u306f', u'\u732b', u'\u3067\u3042\u308b']
>>> sp.EncodeAsPieces(u'吾輩は猫である'.encode('utf-8'))
['\xe2\x96\x81', '\xe5\x90\xbe', '\xe8\xbc\xa9', '\xe3\x81\xaf', '\xe7\x8c\xab', '\xe3\x81\xa7\xe3\x81\x82\xe3\x82\x8b']
>>> sp.IdToPiece(10)
'\xe3\x81\xab'
>>> type(sp.IdToPiece(10))
<type 'str'>
  • Python3:
>>> sp.EncodeAsPieces('吾輩は猫である')
['▁', '吾', '輩', 'は', '猫', 'である']
>>> sp.EncodeAsPieces('吾輩は猫である'.encode('utf-8'))
[b'\xe2\x96\x81', b'\xe5\x90\xbe', b'\xe8\xbc\xa9', b'\xe3\x81\xaf', b'\xe7\x8c\xab', b'\xe3\x81\xa7\xe3\x81\x82\xe3\x82\x8b']
>>>
>>> sp.IdToPiece(10)
'に'
>>> type(sp.IdToPiece(10))
<class 'str'>

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

sentencepiece-0.1.95.tar.gz (508.7 kB view details)

Uploaded Source

Built Distributions

sentencepiece-0.1.95-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

sentencepiece-0.1.95-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.6+ x86-64

sentencepiece-0.1.95-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

sentencepiece-0.1.95-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.6+ x86-64

sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

sentencepiece-0.1.95-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7mWindows x86

sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 10.6+ x86-64

sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

sentencepiece-0.1.95-cp36-cp36m-win32.whl (1.1 MB view details)

Uploaded CPython 3.6mWindows x86

sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmacOS 10.6+ x86-64

sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5mmacOS 10.6+ x86-64

File details

Details for the file sentencepiece-0.1.95.tar.gz.

File metadata

  • Download URL: sentencepiece-0.1.95.tar.gz
  • Upload date:
  • Size: 508.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95.tar.gz
Algorithm Hash digest
SHA256 8dd6e3e110f4c3f85a46e4a2ae1b6f7cf020b907fab50eac22beccf1680e0ea5
MD5 68b7dd38a28cbc740b69a0ddcf49ad8f
BLAKE2b-256 95bcb39f9627c41027caf669cf4d1e47a7415cfa018a7dcb899aebd122af7c91

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3410cffb275c319c61977ae3a8729ab224d330bdf69d66cf5f6c55a4deb3d9a
MD5 57b47adc1e0119ff0408334d1b50b60b
BLAKE2b-256 c772aeafad44bfef617ae49fcf71c6c4c661b903861631438dc0f3544bea7565

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-win32.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4749b187c91e796fe52b82abef3c05a60d82065088844c0fe45d5c221ddc097a
MD5 5b704b812b6275fe94c7a9a02fb2e221
BLAKE2b-256 dcf248c6a09da33a0e27f316dd3d1a259c627a21a1793e78467c8cbeb8549eb1

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ac268fa1f5f2adcb083f40becd63b5bbbe2c13dec2cd46222688f8477827c5
MD5 fe250e8abf65ca0249dd5c09e754a4d1
BLAKE2b-256 9d049c2dd5c96b094662cd0ea27769d9816165bbfa4c1d2e5b01345214b51f95

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26676ecc4985902cf4af5d597df3d2c4f32f58ed3e23db20c47950f6065089d7
MD5 c0f723a58a5d2a0dead862a48d7ac102
BLAKE2b-256 c661253242be17286abf566bbbc2ae598895fdbfcfb6eca38ddc55bfe129b912

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa52e8a438f500e07c81c068fe128f9c4e677331eff0b17b28c55585aa7c112a
MD5 cf53cfd014fb15d6894f70a77c8fe799
BLAKE2b-256 92f858fe2705562c46572f71bd927eec4555e38b7835ef235d31afc5aa1ba0fb

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99ba407001cc45b76e56e03f63eb27e011fe614c3a38e2c0ed5818bb88e050f6
MD5 b999f1795fb45b497a2591f33f4f8639
BLAKE2b-256 76680a252479de4c038f8dd648d8db32ac40625a0c56333052e42d50241920a0

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10e8119175e35075d05dad49c2903903229c7b1331b872fff5ad6a85d369152c
MD5 4180cfa5b05eea4381dcc6a311a86c2d
BLAKE2b-256 7630e95f0245c305263b6c27877257db871e8c4a63a8357f6e7fbbed254aca0d

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 58a1013c2a676e16647c64505b9e8cd7e7e5fb9f2d92ec91f2d2a5f777632a69
MD5 62ed4397a9d7108e50018d14974064de
BLAKE2b-256 a4be76ead9aa3e8890e7eb53f161bc4675de216552317298f12a64c38ee39d98

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6365bb9b7a17573e1ed9a277eafad6b5a489100840149297b2f399294ca11817
MD5 cbbc00094259548ec42353f346b7fee1
BLAKE2b-256 bdb29341a011eb92896d8fd88597fff5f5adc1ce3e20c737deddd0b2ff6707e9

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-win32.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e3cf28e56f49edb9ac021e247399671b8099e516ecd8091ee8ad5d35716e16e3
MD5 4a2de1dfc597f89edf15c062e97c68f2
BLAKE2b-256 df8da7802a138195834d7643279379f589290b4d92ea744fefbb951624e84d08

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77dff55aa8f74e36f7fd7df861723574630327fdfff0ca18fdbb4fe031c9ecbe
MD5 eb199c8eeea8a673f574d6cf93366b51
BLAKE2b-256 3be68aef9ea5b47f3334fa763813b7372b4ac46a931546875d89b94396b727e2

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cac1dcacc2c6bea397188daa549f194ca2bc4d0a7005633ecd03b165e1ad16f
MD5 e4e1b8482c130ebbddb8fe598cae7dfb
BLAKE2b-256 b54d101fd4a5c47e8dd0797e251ae50aba166d10e392c6a1c8dd6bc19a35fceb

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e177f6e40b074e08d3c0c2a1a862fbc94897d9c3439c7752a03a4f61197a743
MD5 d444d935423ffbb46ecd7e9a4f63f71b
BLAKE2b-256 73aabdae7c266e9ebe4a6508714ef6a4c1601b83341164c99acd849da64aa550

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc7324da0209b632be107123f40505e2400e6aa49e39b49a35d081c36e6cee1b
MD5 a37eacb884046acdbaf8985386787d2e
BLAKE2b-256 4725059f822f8df4223f9ed183c8b7becd5d34ba678c50a4c1794ae4ab59bc8d

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ff761f322a1b34d691d8b1d87c735d8de725ce3458d879d9d0c319e285e7169
MD5 1f9dbd8638a4710d24fcd53b5bfe70b1
BLAKE2b-256 1245d414f840be9ca1910eedf7b25a08e4df6c6c64cd919b6c146fde508169cf

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 453f9cf531b5ea694472a5f0a4dc727bfb4f383c8a80a9b5261db6d3a59d4018
MD5 9d4c3c214c8cd1009e6e07fbae0a0275
BLAKE2b-256 f0db5f2c1f94f7804cd914c4b76044610e0986593ed04b88ac34ac79619b354b

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c2add7d87c30898661de5b9e492bd99c5b184c731dec3c7dd3d2c956e4003446
MD5 70441b1febd4e11b054ead7ac0f3ac94
BLAKE2b-256 2b6db34d43118887d514f19fea262c09ed1fc357f86a2c42d71fe46a84818e55

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-win32.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7f7929c7741ea276d44c1e7966a1347943fab2089a55bc32fc42ba3c71a6e2e1
MD5 8dc4191b7516065b03470628ce2c226b
BLAKE2b-256 990b6d4af895e74ec46f02a3eff20c57ae4b8b79b86e9f4fc8c4ab10e31451e5

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad2866aebdf702b0d6a992b2b3b46c2de3739ca8a92bce17f24cf51c29fa4f3e
MD5 fa044f9fd04a41a7868de521f1b4a0e6
BLAKE2b-256 f599e0808cb947ba10f575839c43e8fafc9cc44e4a7a2c8f79c60db48220a577

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa8ee7411f31a7e7e1b4ed48de958e63befdba3465d7c7d9bd5a87235f7e5bd1
MD5 39055b4465f34770222426bb5d1f4e31
BLAKE2b-256 e7ac54973a84df43ff147b4c40afd03df642a00db1cfdc6071084a59ca1878de

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 087373b148b82854a3c03a9ad57d58a8ff5366b2f6d718bca27f262c102439ce
MD5 70e2c37bc082f843e141dc30e7b356f1
BLAKE2b-256 55b5d184eb3c5fd0ba33b645bcf688e90545c351770726aa98eaf5ab4af20ea0

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 163d869ce8dd7a9ed11187756272e8c73cd1caae1f47a701e5d70ad80485a655
MD5 ad19f143d2401ba17b0877a6b5fcbc76
BLAKE2b-256 a30320a4d5dcc85be8bdf34efdd001d4c5c21bb50a4fa9b7a55862ce365ecd94

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48fd95e0bf082a432cff5d4b7e5fa6d5fdaf87fb2de210aa91f90086c89464a2
MD5 8c9b36252e3d0f2c85821dce9e8780b1
BLAKE2b-256 bd00ff420fd4a61e6a6a639df548c8136c376724338ad20b9fbf3993a5978a94

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 438ee23faf095a9ebcc97debad2b07c0647ff6a306ed4d430146c3f80c7f6354
MD5 0af9c5ae4ea8cb788bc45a279156e574
BLAKE2b-256 4062ac0a3bf69c1149e509bc32c3efaf0a3e309a51ea3dfa8f8f7a42895c99fa

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8e2f6096899a32246a0c65ea7f24a01ff32ea49563ef013b348acb7bca5831d5
MD5 9e3838f6b6da17f7b0538fd1ecc7b11e
BLAKE2b-256 94154823bb7cb9d49207b5c37dc7997f88beb36e258f817c6193e3649f3a846a

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-win32.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d89c04aeedab0d5c25de8fc6302d58ec6fb135e2670449376c7d0301d7963680
MD5 17cc66120734cce7228d0c33d42947d9
BLAKE2b-256 2cb5bd05f4340bfcf06d998b742990b0fb6688f7bb2640615254d5af150b11db

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d880e8f70822fe98b4f584814f5cccebf9e72aea7b44acc1a26731780fac03f7
MD5 ca86fe054312c9ac69c484603ba16fed
BLAKE2b-256 1467e42bd1181472c95c8cda79305df848264f2a7f62740995a46945d9797b67

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60715ef703af2410e5f5cac89d8123f1a0a8dbce1406a2ceaecf805eb0c0cfd9
MD5 65c29a158ce71178e55728b04fa2fc7c
BLAKE2b-256 d36cdf4d57e4a184e1dde8923cab3e42791c18366a85424a858a1786943b42cc

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5b6ab735d30eb1801998d4c413592149f9414d9aa300d90a28e8769792d2a5b
MD5 455cc69d185e7df2ba367e818107c8da
BLAKE2b-256 6c0c150b08fd749e0ae33306dfd8623df95b6838ee71ed272391a122c632ff6c

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53951098eddfc25a5fa0cd9be748c9346db3c2be0b6c74a8ac6663acbde2b639
MD5 529f0713a6ec0ba6792bd39a7d127f5e
BLAKE2b-256 6ea791b0e771ed867ef92b0b5940b76a8509540601fad350b8d8e56bbf2a3a72

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d789bcdce025b377a45830d3962d041b1acf7e416e5451bef081bd6a9c758dfd
MD5 76f3c7994a887cbd348971dd6fe41fa4
BLAKE2b-256 f724269f30adf3f0e427efb1867d9ccbd05f36f243ff1e0a591f07eadf2246af

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 94f866601203b78095d9f219995820ff4606d67281895a6c79d5c1ffe75575ac
MD5 ec448650f79265e2d5f40fdd8028620a
BLAKE2b-256 0bf41ab0b4203e840e34e81e0d18e9ec95fb09d3665601952c0830e46eb551d6

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c510e0d26760d51b31f2fb05e1638419a1590df8783300d79e898f2bb93975a8
MD5 ca41056c5172ee0ffe5191d95cc00da2
BLAKE2b-256 c6b871ae9c7b12be8a7d68ce42e5eeb1ddc11b425cd4ca838ba8922763794259

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8613286b537056e6d2029e306719e33d4e09c369a1741490e4e18f2a6a797996
MD5 a2a17d0b244bcc8fdfcf12f6de6567f1
BLAKE2b-256 0da9b67edee4d95c35c0d558e88ce8920607381361f2bfc6ee2a6756914785b4

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 243ce7c067ba15e5883ab772117b144a8fa1f5827c466a664c9f52d173f6e375
MD5 15feec86513e7285c4fc5ae31af3dad5
BLAKE2b-256 f2058e6651ae79fa04cec6719dd80c9a3fd00bc3094b07d24e30744074dd65db

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43acdb01466de8189b899de153b96eb50e0ea3b77608c1d4f4f8f0c6f343fe45
MD5 fe88f01f082878011725768ab2815fb6
BLAKE2b-256 92f1e3f3b5e31fc483e94992f5860b283267d61413ae4a16ebdbae968e37a855

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f05663139279718421084d618131a24cffc068860873531ebfe38a73085cbd2e
MD5 cb530de041c545a3790ebd6d9e24a119
BLAKE2b-256 3b1529eec51eeca4711a0c40f6e7573c02e1603554bb9c7c1e0e8737efbd59b1

See more details on using hashes here.

File details

Details for the file sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 21cfec2ec80eb6f603fb92b0416479272f3ec30cfd511b8525a964e2f1cf82a6
MD5 d5921456d9b96e1d798e8c97325440dc
BLAKE2b-256 07ee64aebfca8a2415227b190553632ec2ea3487a45118a255ec8438de7252d3

See more details on using hashes here.

Supported by

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