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.94.tar.gz (507.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sentencepiece-0.1.94-cp39-cp39-manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.94-cp39-cp39-manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.94-cp39-cp39-manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9

sentencepiece-0.1.94-cp39-cp39-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.6+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

sentencepiece-0.1.94-cp38-cp38-manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.94-cp38-cp38-manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.94-cp38-cp38-manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8

sentencepiece-0.1.94-cp38-cp38-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.6+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

sentencepiece-0.1.94-cp37-cp37m-manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.94-cp37-cp37m-manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.94-cp37-cp37m-manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.7m

sentencepiece-0.1.94-cp37-cp37m-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.6+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

sentencepiece-0.1.94-cp36-cp36m-manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.94-cp36-cp36m-manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.94-cp36-cp36m-manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.6m

sentencepiece-0.1.94-cp36-cp36m-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

sentencepiece-0.1.94-cp36-cp36m-macosx_10_6_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6mmacOS 10.6+ x86-64

sentencepiece-0.1.94-cp35-cp35m-manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.94-cp35-cp35m-manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.94-cp35-cp35m-manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.5m

sentencepiece-0.1.94-cp35-cp35m-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

sentencepiece-0.1.94-cp35-cp35m-macosx_10_6_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.5mmacOS 10.6+ x86-64

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94.tar.gz
  • Upload date:
  • Size: 507.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94.tar.gz
Algorithm Hash digest
SHA256 849d74885f6f7af03a5d354b919bf23c757f94257d7a068bc464efd70d651e3a
MD5 097e97daa0a7cccbc98e0a7c32efc86d
BLAKE2b-256 72e057edbab017a204e9f39448c1717292437a45b5f7cf3a9dbf4a9c026b03c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp39-cp39-manylinux2014_x86_64.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5074d8239dcc6130dce8ffd734ab797f86679fc75a4a1d96adc243293178c05
MD5 6451a4f75b7bac9a6ac6db9dcd2d5b68
BLAKE2b-256 b41c11ad30b800510d7f9fd553b64ac93d5a76928c0b56c6b30a78c06f7e4429

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp39-cp39-manylinux2014_s390x.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fee3e6849b9e0cef774fb003ba2950b282b1910cdd761794bbf8dc0aa9d5f7d3
MD5 f19288dc0d4c251597cefa66b8c30d4c
BLAKE2b-256 5653dd25e0a5f123ceb30eec1cc2cae947124bc43707620f35fdccdfd01b5350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp39-cp39-manylinux2014_ppc64le.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42d35adb51eb530d57c56c2cd445dbf9bd9db36bf82741aa5b42216f7f34c12d
MD5 8e77dd5325857c628218ba9b27f09247
BLAKE2b-256 7840e67c84785084d9e44237d4661552bb636844db75912cab75cbb79e31435d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp39-cp39-manylinux2014_i686.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c571b26017d8dd1c47dc2eeae09caa15cfe3d2f31fb01f004d463403a1f1349b
MD5 ce0e6b6256e66f529d125c79459c3f96
BLAKE2b-256 9fb4b347d978e8ca1d395930f18f85d7a04dafc5192b1b8fd9b881053137eaaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a89d90b45ba5025fcd19cad685c7572624a036d883091af967a75f3793c2aee4
MD5 803dd19d53a06d113095601cddad2ecf
BLAKE2b-256 b6277bc053cb0d9d5d529dba2face04385cbcb8c53fc3e46109358d258e16957

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp39-cp39-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 88ef71e36b09ddd53498064efaec5470a09698df2427362cc4e86198d88aa01e
MD5 cd0439a46f9da2ef2bc867df59a52ff7
BLAKE2b-256 69e159835d7655d1d66bbf1f3738bd9ab101ade842a2491a7345bb9a165a5237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4c11b2fc89c71510a900e2dbd4d93fb18a867ce7160f298bb6bb8a581d646d63
MD5 d9ffe939f567d8a737db55959a238046
BLAKE2b-256 5a6be2a062b521330d6eb064e8cec4454742d3d57aaef366142644fc41789795

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9c87f759dddefff52c12d4a3500a00faf22ea476a004c33c78794699069d8fc9
MD5 fe7f959f9a156d2095d9e7ada86db33d
BLAKE2b-256 bddcb699073a304ef149aaa83774509b88a8fb5b504061e1153518cf86e6c466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp38-cp38-manylinux2014_x86_64.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb31a1827da0de50dc8ca33d4e657121594092c7231a4fb2d6a86149dfd98bc5
MD5 bc94fadc8263e5eb148ec44ac1848f2a
BLAKE2b-256 cca956be047bc8f7056ca4b2e51b53dc88b00771619744f7f526b02aa3d2b0be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp38-cp38-manylinux2014_s390x.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed49f1187a25db531e2ad95718a5640a3f7e0467bc82e4267cc6f7b6caa3054a
MD5 c3e2eea4e4bfb8d321276dee91451efc
BLAKE2b-256 67684dd76851ed8c069410f494a792da2c3a172aa4ce8f4fdac3d991f789b456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp38-cp38-manylinux2014_ppc64le.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf524fa6243cfd05a04f65a6b17516ddd58438adf3c35df02ca3ebb832270a47
MD5 296e99936a08b5c2e04048a32627fe24
BLAKE2b-256 e7a6f88092a27190b5f48cb686ac583367995d689240ee9afc05267fbe0207c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp38-cp38-manylinux2014_i686.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e6b711563163fc8cf2c873d08b4495244859e3f6d6c18859b524395d8550482
MD5 8183d67eb1c1ddadc081d793c4cc42cd
BLAKE2b-256 756b50eee517409a590d1276844eb7a76cf26d945e92555fea03fcc681faa91f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05e6ef6a669d2e2d3232d95acfb2a9d255272484b898ea0650659d95448bf93f
MD5 89c36033977d32e03fbba5420fb4d231
BLAKE2b-256 aa3068c1d80221a931794e674cac1c14b1bc837ee9dd627af7c9cdb7d49e3d0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp38-cp38-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 3f6c0b5c501053a2f9d99daccbf187f367ded5ae35e9e031feae56188b352433
MD5 a8bfc54e9a1b0b581b58ab04c3ff9e2f
BLAKE2b-256 6e8ddefff768e1c77db92e07de10471d0b9794be6c1ef1583ad7320bb5bf1e52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fd12969cf8420870bee743398e2e60f722d1ffdf9d201dc1d6b09096c971bfd9
MD5 72e1bb97cdc8131b3d2b470db4fcdabd
BLAKE2b-256 88c4de7da5c8702a1e8a7af7b9e77b5456120b025894d5e3a9be5e0404d065a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9d446ad41744a898f34800ee492553b4a24255a0f922cb32fe33a3c0a865d153
MD5 d8ca4c02c94a55d9ed6d5c0d1ab746e6
BLAKE2b-256 0868b6145881a5f8d837ccdbaa18f7826d36fc8f53a1397b77deee0785e47747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp37-cp37m-manylinux2014_x86_64.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 295ef1ccf570c33728040a461cf837611495e8a5bd954012a5784fb3529ff460
MD5 5265551c1a4b3a159125254ea3434296
BLAKE2b-256 6ef07614029138ec9422f1a3ed3cd82c3bfc0821157e8032ca1828cee6b198bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp37-cp37m-manylinux2014_s390x.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9d440d9ecf8c8787b89bc8596f7a47c548a9968f802d654faaf5652598ffbb0
MD5 ab31473ecf5b9627bb537085de896dc5
BLAKE2b-256 44366160131ff2e027bd3754fc0491ffce038dceaa49c317393d93be7c63334f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp37-cp37m-manylinux2014_ppc64le.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c2969c4f62039d82f761c9548011bf39673a1eb8dc8f747943b88851523c943
MD5 732eece9a4c8c75e1ce4946686414a45
BLAKE2b-256 c97219c42ec58becdbfd855fadbcef4ec6b9119bb5e0bfeb0dd4951f272c6abf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp37-cp37m-manylinux2014_i686.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4aef0be184f3c5b72a1c3f7e01fbf245eb3b3c70365f823e24542008afe387f
MD5 430b216b9acd8a90e6f1d123adae0be1
BLAKE2b-256 22cf9bd30765cb462a37ac566fdeca23a22aa98ef9361f1dc4ac7dfe4bbb44a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d2245d400424ab261e3253308001606668126a08efdc19ee2c348b0e228e1e1
MD5 171a81333b787f1b5afc19d50138e7ac
BLAKE2b-256 c936019bb1a1aa1c6a7a475ac2580425a8d21b0815b2f220b1172f6ac3ab55a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp37-cp37m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 9c8476febe8eb0a165cf04192ebd2b15124d83cfc44269e10d2a83ace677f109
MD5 faaaef8248c626cfec23217948e5c11f
BLAKE2b-256 65c0dd3945db3ff6e8b3823aba4c09a86dbf174ca8fec09104466f076230e9fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 11bd70be4baf4e67b1714e43bcd1e7fed0ce04616a20388367299846fdaf712d
MD5 5964e42a766efd1541e480dd5b899bf2
BLAKE2b-256 b5dfbbe4b99c3d14d0b8844b279e86994641ba11f25f61477c87e549740a6eb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1d7c9f52a2e32a7a2eb9685ddf74a86b5df94fcaccf37be661ac9bb5c9db4893
MD5 865b9be99c7c182d11cdeea0cd1c2c18
BLAKE2b-256 76f0fc089b8ef6fb2dc75f338c48da81b4852ece42b0532550af505f88305933

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp36-cp36m-manylinux2014_x86_64.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db744b73b5a5fd7adfa5cfc4eb4b7d0f408c2059783fd52c934b49743a0d2326
MD5 dfaaeac322b4d3b7525ff48872d42f56
BLAKE2b-256 e52d6d4ca4bef9a67070fa1cac508606328329152b1df10bdf31fb6e4e727894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp36-cp36m-manylinux2014_s390x.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 232a882ebf074966e24943119ab83554642bd339bd5d6bd2641092133983bc6a
MD5 d201c3f54d9ee9b74240d252f0aab8b4
BLAKE2b-256 7c6fa3e4be672e53e887d9e3eff97ff0c81bd87e02b4e4f961a6b9d0dfb46f40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp36-cp36m-manylinux2014_ppc64le.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 995e645a94107e46317987d348216a0fb1ae3a8befec9c99cc506b8994aa133d
MD5 87f9bfdcab6da23d4aa28fb388435623
BLAKE2b-256 4f81e8c4d1a1b583db1d0e41ac9d692e6ab219f37980f313cbe9517710f71e7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp36-cp36m-manylinux2014_i686.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a75f418bd92c6c92e2ee0c95e89b45b76bc54e45ed7cf2b3b74d313b263d1baa
MD5 a625a91f39b9076f64649f5d45e3bf9c
BLAKE2b-256 533bc23899e34715f9f057c441942b789867624d27bc1330aa602d2c470d55a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d7d0844a57156b630fb98e21203c2755b342824b8c5a445e4ac78612c291218
MD5 e2e3f826237dfe2d173fb48bb1af884e
BLAKE2b-256 cbe79e309af04cdf5df6ae67e2454d1fb360c04fa095a46568615eb14de3560f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp36-cp36m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp36-cp36m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 7b4867845e6935c43e37042a451d2ce84d9d97365300151a8c1c1cc724acad32
MD5 ea963453c2a35ff8b5b3886c0a8c8bc0
BLAKE2b-256 c2629457b9ffa04774bb8996f791ec2dd3519fe140118bf230bbc1a7756122a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp35-cp35m-manylinux2014_x86_64.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd6434909e1c8494b3254bf3150420e45489214d9bc7ab6ad4d1804d75d6d58f
MD5 3b09e6dc98de82c384c9d2ca67fb907e
BLAKE2b-256 dde3141853af8bffb304fcd5261b153c1920af90172f6cbb7aacd3224c560eb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp35-cp35m-manylinux2014_s390x.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b01057743c2488c8d6e7b45b0732ee23976ac3d58d11cd90390cbc3221c07402
MD5 9528973a98e7d99ba3373811f110fbb8
BLAKE2b-256 d0a21454897383cc2b9141f375bae22ab85b4cc7effca247544d4dc98a1f14eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp35-cp35m-manylinux2014_ppc64le.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbde526df19d6bcfa2b8503b2a4bf6996dd3172f631fd2b7efd7b6435d96407c
MD5 d69fe771efdce40ea3b8f82599d8a16d
BLAKE2b-256 3eeea809bc7a4074452832f396b911168f4c4cf46ecfe3aa4f3ebfd879dca6aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp35-cp35m-manylinux2014_i686.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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58db565195ee31efbaca9d00937f9f73aa131cc820c2ad46a39ac62f8671866f
MD5 c9426c0d0858adb5b733a3354f21100b
BLAKE2b-256 b07354a42972a16bd996e3224a2d0c7a84f1dd4d874e59ef075ff6b49c30d249

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5e3eedad0ef5b3a4ae1d201fc0edc7f4b4d567c016913d4b996ebf0ab66748b
MD5 8a0761afbd9d09db2ed2091bfbab717a
BLAKE2b-256 8e7e5272370222a410cbe53e2fddd00e93bcadbd19f7eb29f35bfdb05d224d8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.1.94-cp35-cp35m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 1.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.48.1 CPython/3.8.5

File hashes

Hashes for sentencepiece-0.1.94-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 7b6c794d30272a5e635e958fdb4976dd991bf35eed90441104a042b2e51723c7
MD5 7e1e7374c711c81a67230851b8600fcd
BLAKE2b-256 00bc98cab4e83d29f6fa2370542457366a29229440a1974a0daed5328177a44c

See more details on using hashes here.

Supported by

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