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, try the following commands to build and install wheel package.

% git clone https://github.com/google/sentencepiece.git 
% cd sentencepiece
% mkdir build
% cd build
% cmake .. -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=./root
% make install
% cd ../python
% python setup.py bdist_wheel
% pip install dist/sentencepiece*.whl

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.

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_as_ids(['This is a test', 'Hello world'])
[[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']]

>>> sp.encode_as_pieces(['This is a test', 'Hello world'])
[['▁This', '▁is', '▁a', '▁', 't', 'est'], ['▁He', 'll', 'o', '▁world']]

>>> proto = sp.encode('This is a test', out_type='immutable_proto')
>>> for n in proto.pieces:
...     print('piece="{}" surface="{}" id={} begin={} end={}'.format(n.piece, n.surface, n.id, n.begin, n.end))
... 
piece="▁This" surface="This" id=284 begin=0 end=4
piece="▁is" surface=" is" id=47 begin=4 end=7
piece="▁a" surface=" a" id=11 begin=7 end=9
piece="▁" surface=" " id=4 begin=9 end=10
piece="t" surface="t" id=15 begin=10 end=11
piece="est" surface="est" id=400 begin=11 end=14

>>> [[x.id for x in proto.pieces], [x.piece for x in proto.pieces], [x.begin for x in proto.pieces], [x.end for x in proto.pieces]]
[[284, 47, 11, 4, 15, 400], ['▁This', '▁is', '▁a', '▁', 't', 'est'], [0, 4, 7, 9, 10, 11], [4, 7, 9, 10, 11, 14]]

>>> proto2 = sp.encode_as_immutable_proto('This is a test')
>>> proto2 == proto
True

>>> 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.nbest_encode('This is a test', nbest_size=5, out_type=str)
[['▁This', '▁is', '▁a', '▁', 't', 'est'], 
['▁This', '▁is', '▁a', '▁', 'te', 'st'], 
['▁This', '▁is', '▁a', '▁', 'te', 's', 't'],
['▁This', '▁is', '▁a', '▁', 't', 'e', 'st'],
['▁This', '▁is', '▁a', '▁', 't', 'es', 't']]

>>> sp.sample_encode_and_score('This is a test', num_samples=5, alpha=0.1, out_type=str, wor=True)
[(['▁This', '▁', 'i', 's', '▁a', '▁', 'te', 's', 't'], -3.043105125427246),
(['▁This', '▁', 'i', 's', '▁a', '▁', 'te', 'st'], -2.8475849628448486),
(['▁', 'This', '▁is', '▁', 'a', '▁', 'te', 'st'], -3.043248176574707),
(['▁', 'This', '▁is', '▁a', '▁', 't', 'e', 'st'], -2.87727689743042),
(['▁', 'This', '▁', 'i', 's', '▁', 'a', '▁', 't', 'est'], -3.6284031867980957)]

>>> 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']

>>> proto = sp.decode([284, 47, 11, 4, 15, 400], out_type='immutable_proto') 
>>> proto.text
'This is a test'

>>> 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'))

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.2.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

sentencepiece-0.2.0-cp312-cp312-win_amd64.whl (992.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

sentencepiece-0.2.0-cp312-cp312-win32.whl (936.9 kB view details)

Uploaded CPython 3.12 Windows x86

sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

sentencepiece-0.2.0-cp311-cp311-win_amd64.whl (991.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

sentencepiece-0.2.0-cp311-cp311-win32.whl (936.7 kB view details)

Uploaded CPython 3.11 Windows x86

sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

sentencepiece-0.2.0-cp310-cp310-win_amd64.whl (991.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

sentencepiece-0.2.0-cp310-cp310-win32.whl (936.7 kB view details)

Uploaded CPython 3.10 Windows x86

sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

sentencepiece-0.2.0-cp39-cp39-win_amd64.whl (991.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

sentencepiece-0.2.0-cp39-cp39-win32.whl (936.8 kB view details)

Uploaded CPython 3.9 Windows x86

sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

sentencepiece-0.2.0-cp38-cp38-win_amd64.whl (991.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

sentencepiece-0.2.0-cp38-cp38-win32.whl (936.8 kB view details)

Uploaded CPython 3.8 Windows x86

sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

sentencepiece-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

sentencepiece-0.2.0-cp38-cp38-macosx_10_9_universal2.whl (2.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

sentencepiece-0.2.0-cp37-cp37m-win_amd64.whl (991.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

sentencepiece-0.2.0-cp37-cp37m-win32.whl (936.9 kB view details)

Uploaded CPython 3.7m Windows x86

sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

sentencepiece-0.2.0-cp36-cp36m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

sentencepiece-0.2.0-cp36-cp36m-win32.whl (944.0 kB view details)

Uploaded CPython 3.6m Windows x86

sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

sentencepiece-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: sentencepiece-0.2.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for sentencepiece-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a52c19171daaf2e697dc6cbe67684e0fa341b1248966f6aebb541de654d15843
MD5 7fd05c21286562fb4ce24f73f751ffee
BLAKE2b-256 c9d2b9c7ca067c26d8ff085d252c89b5f69609ca93fb85a00ede95f4857865d4

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a673a72aab81fef5ebe755c6e0cc60087d1f3a4700835d40537183c1703a45f
MD5 edaed02e0f6602e25e88c6f09eb23d7f
BLAKE2b-256 c697d159c32642306ee2b70732077632895438867b3b6df282354bd550cf2a67

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb89f811e5efd18bab141afc3fea3de141c3f69f3fe9e898f710ae7fe3aab251
MD5 5bffdbc585870078d221678ed790a029
BLAKE2b-256 8a47ca237b562f420044ab56ddb4c278672f7e8c866e183730a20e413b38a989

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f295105c6bdbb05bd5e1b0cafbd78ff95036f5d3641e7949455a3f4e5e7c3109
MD5 14002248a68d751cb672805c85ea649c
BLAKE2b-256 4fd218246f43ca730bb81918f87b7e886531eda32d835811ad9f4657c54eee35

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 632f3594d3e7ac8b367bca204cb3fd05a01d5b21455acd097ea4c0e30e2f63d7
MD5 dd6d4f823ad9e9fbf9860689c762262d
BLAKE2b-256 1224fd7ef967c9dad2f6e6e5386d0cadaf65cda8b7be6e3861a9ab3121035139

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a3149e3066c2a75e0d68a43eb632d7ae728c7925b517f4c05c40f6f7280ce08
MD5 b6f76e25129e25eaab6d83ded6c4f48c
BLAKE2b-256 cc38e4698ee2293fe4835dc033c49796a39b3eebd8752098f6bd0aa53a14af1f

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3212121805afc58d8b00ab4e7dd1f8f76c203ddb9dc94aa4079618a31cf5da0f
MD5 61d9d2db8043a8fe78c25cd4e6db937e
BLAKE2b-256 490a2fe387f825ac5aad5a0bfe221904882106cac58e1b693ba7818785a882b6

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0cb51f53b6aae3c36bafe41e86167c71af8370a039f542c43b0cce5ef24a68c
MD5 7fbf0b6c9e023cf23370ff8663821e6a
BLAKE2b-256 2e08a4c135ad6fc2ce26798d14ab72790d66e813efc9589fd30a5316a88ca8d5

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ea5f536e32ea8ec96086ee00d7a4a131ce583a1b18d130711707c10e69601cb2
MD5 04ebec358cb7ded14fef33cc32878061
BLAKE2b-256 275a141b227ed54293360a9ffbb7bf8252b4e5efc0400cdeac5809340e5d2b21

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0993dbc665f4113017892f1b87c3904a44d0640eda510abcacdfb07f74286d36
MD5 aec981e382f81bc6a095ba956a745a91
BLAKE2b-256 a2f6587c62fd21fc988555b85351f50bbde43a51524caafd63bc69240ded14fd

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c581258cf346b327c62c4f1cebd32691826306f6a41d8c4bec43b010dee08e75
MD5 2a190e916321ee0faaaadd2857f0dffc
BLAKE2b-256 4eb167afc0bde24f6dcb3acdea0dd8dcdf4b8b0db240f6bacd39378bd32d09f8

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e58b47f933aca74c6a60a79dcb21d5b9e47416256c795c2d58d55cec27f9551d
MD5 91f8b38b2a540010f03545223ce6db1d
BLAKE2b-256 fb122f5c8d4764b00033cf1c935b702d3bb878d10be9f0b87f0253495832d85f

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b293734059ef656dcd65be62ff771507bea8fed0a711b6733976e1ed3add4553
MD5 bdc458cdaddc6c29371a6422391ef9ad
BLAKE2b-256 45fb14633c6ecf262c468759ffcdb55c3a7ee38fe4eda6a70d75ee7c7d63c58b

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27f90c55a65013cbb8f4d7aab0599bf925cde4adc67ae43a0d323677b5a1c6cb
MD5 7d3c74b172dedaf6583b147b8e79f36e
BLAKE2b-256 e3ac2f2ab1d60bb2d795d054eebe5e3f24b164bc21b5a9b75fba7968b3b91b5a

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fd6071249c74f779c5b27183295b9202f8dedb68034e716784364443879eaa6
MD5 84a4fe8226bff8cec9fbe06d6876f390
BLAKE2b-256 de42ae30952c4a0bd773e90c9bf2579f5533037c886dfc8ec68133d5694f4dd2

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c867012c0e8bcd5bdad0f791609101cb5c66acb303ab3270218d6debc68a65e
MD5 fc65b32361c2bf6c60446cb373f1cd3b
BLAKE2b-256 0f35e63ba28062af0a3d688a9f128e407a1a2608544b2f480cb49bf7f4b1cbb9

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 17982700c4f6dbb55fa3594f3d7e5dd1c8659a274af3738e33c987d2a27c9d5c
MD5 66cd1423d901711b7a3d213612148bd7
BLAKE2b-256 32438f8885168a47a02eba1455bd3f4f169f50ad5b8cebd2402d0f5e20854d04

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d490142b0521ef22bc1085f061d922a2a6666175bb6b42e588ff95c0db6819b2
MD5 bdd00b4e6eba8590f213d918f0ddc3d4
BLAKE2b-256 85f44ef1a6e0e9dbd8a60780a91df8b7452ada14cfaa0e17b3b8dfa42cecae18

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1151d6a6dd4b43e552394aed0edfe9292820272f0194bd56c7c1660a0c06c3d
MD5 4e3dc6cffa8695cbf520bfb8541223a2
BLAKE2b-256 cae455f97cef14293171fef5f96e96999919ab5b4d1ce95b53547ad653d7e3bf

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1380ce6540a368de2ef6d7e6ba14ba8f3258df650d39ba7d833b79ee68a52040
MD5 e70acb9b261c0ab1007820ce68b41b0c
BLAKE2b-256 a62733019685023221ca8ed98e8ceb7ae5e166032686fa3662c68f1f1edf334e

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c378492056202d1c48a4979650981635fd97875a00eabb1f00c6a236b013b5e
MD5 a223604ada6ca9aa0ce62f29f93a5c93
BLAKE2b-256 aa5a3c48738a0835d76dd06c62b6ac48d39c923cde78dd0f587353bdcbb99851

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fde4b08cfe237be4484c6c7c2e2c75fb862cfeab6bd5449ce4caeafd97b767a
MD5 40d02ec64ae503a5f1f64f459f63f14a
BLAKE2b-256 fd46316c1ba6c52b97de76aff7b9da678f7afbb52136afb2987c474d95630e65

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7b67e724bead13f18db6e1d10b6bbdc454af574d70efbb36f27d90387be1ca3
MD5 cab0092653a409c9e8baf260a9cf7964
BLAKE2b-256 1ce4c2541027a43ec6962ba9b601805d17ba3f86b38bdeae0e8ac65a2981e248

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bed9cf85b296fa2b76fc2547b9cbb691a523864cebaee86304c43a7b4cb1b452
MD5 b551217869b099b5c6797c17981b7180
BLAKE2b-256 779f7efbaa6d4c0c718a9affbecc536b03ca62f99f421bdffb531c16030e2d2b

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 188779e1298a1c8b8253c7d3ad729cb0a9891e5cef5e5d07ce4592c54869e227
MD5 23b782bffb4eb3bb68e794b8177b02fe
BLAKE2b-256 f67198648c3b64b23edb5403f74bcc906ad21766872a6e1ada26ea3f1eb941ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8cf876516548b5a1d6ac4745d8b554f5c07891d55da557925e5c13ff0b4e6ad
MD5 a5463da4e597b510589465c163618beb
BLAKE2b-256 4b36497e6407700efd6b97f81bc160913a70d33b9b09227429f68fc86f387bbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 936.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 38aed822fb76435fa1f12185f10465a94ab9e51d5e8a9159e9a540ce926f0ffd
MD5 1ad01fbe4aabdf9816ef6033082a3e75
BLAKE2b-256 be47e16f368fe6327e873e8029aa539115025e9f61a4e8ca8f0f8eaf8e6a4c1c

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0461324897735512a32d222e3d886e24ad6a499761952b6bda2a9ee6e4313ea5
MD5 16711ea458c4f4513ce410dda4f4f15d
BLAKE2b-256 5f01c95e42eb86282b2c79305d3e0b0ca5a743f85a61262bb7130999c70b9374

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22e37bac44dd6603388cb598c64ff7a76e41ca774646f21c23aadfbf5a2228ab
MD5 cd244aeb3b7fbf5204964a164763e99f
BLAKE2b-256 45de461d15856c29ba1ce778cf76e0462572661f647abc8a5373690c52e98a00

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b06b70af54daa4b4904cbb90b4eb6d35c9f3252fdc86c9c32d5afd4d30118d8
MD5 c5e8da80f5d84ba98f3304d17705ba5e
BLAKE2b-256 a369e96ef68261fa5b82379fdedb325ceaf1d353c6e839ec346d8244e0da5f2f

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f1ec95aa1e5dab11f37ac7eff190493fd87770f7a8b81ebc9dd768d1a3c8704
MD5 88533181d54657d646236ba298fd217d
BLAKE2b-256 7991b54a528e0789cd7986341ed3909bec56365c3b672daef8b10aa4098238f0

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 298f21cc1366eb60311aedba3169d30f885c363ddbf44214b0a587d2908141ad
MD5 10848f87cc985a5dc63059a33ad9b71c
BLAKE2b-256 6ea6df28bc0b6a2a86416232c0a5f0d69a9cb7244bb95cb5dcdfcbf01cced8a6

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1e0f9c4d0a6b0af59b613175f019916e28ade076e21242fd5be24340d8a2f64a
MD5 b65f3d334832fe3405dbe01444b2308e
BLAKE2b-256 e918eb620d94d63f62ca69cecccf4459529864ac3fbb35ec123190bd58dadb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cdb701eec783d3ec86b7cd4c763adad8eaf6b46db37ee1c36e5e6c44b3fe1b5f
MD5 4bdc38e37c07ee102743ecd4e830ac72
BLAKE2b-256 48c24efef1028e3834a43256a41c2e59f7fd4ee229a08fe2a30560f7160ef2ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sentencepiece-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 936.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b99a308a2e5e569031ab164b74e6fab0b6f37dfb493c32f7816225f4d411a6dd
MD5 8fd3cceb9380899a4faa108beb6603b8
BLAKE2b-256 5292c44916ebc9cd1b6bcfea68a1f601e75266a80cf71bb0710bf571049a59ad

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d1d2cc4882e8d6a1adf9d5927d7716f80617fc693385661caff21888972269
MD5 48c64d79e4dcf39245a77a1785eab8eb
BLAKE2b-256 d4eb57f1f43f60aa3a21296171d353b6597c312b45d9a5addb1fb5313ec3611a

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98501e075f35dd1a1d5a20f65be26839fcb1938752ec61539af008a5aa6f510b
MD5 d0af20135b394d6d0f723ab76306536a
BLAKE2b-256 f1ea3d673cd71d27c8569dff720b8af5dd73f65c2a51e91bb8fa4f9c83edf4af

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f67eae0dbe6f2d7d6ba50a354623d787c99965f068b81e145d53240198021b0
MD5 6e01da0c47698cf469429441a933b2a9
BLAKE2b-256 a95b094146c7f56f59e2a6be21916d9731f66dbcd98f61d6a641a52775e280a3

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f65f69636b7e9c015b79dff9c9985a9bc7d19ded6f79ef9f1ec920fdd73ecf
MD5 b962f0cd53f71c31484cfd35fa08b19d
BLAKE2b-256 7454078d4034f5e4a5d348ee678cb4f870778c00e149d40101934f8b77dee966

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 926ef920ae2e8182db31d3f5d081ada57804e3e1d3a8c4ef8b117f9d9fb5a945
MD5 c33c4797eeff89f96c1b8ab4e56d8db2
BLAKE2b-256 38557ceff1bb58ce6e22fd4d2e6706f1a2ea88c6693d80c9c18d5250eacb553b

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20813a68d4c221b1849c62c30e1281ea81687894d894b8d4a0f4677d9311e0f5
MD5 7b268b14b8d06d2d789775891ef22754
BLAKE2b-256 b34cf4fab115f6c9db80b5b681dda113391c5dd48d55eb44992162abafa11631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff88712338b01031910e8e61e7239aff3ce8869ee31a47df63cb38aadd591bea
MD5 4714086b2a2b6db534a16a5e8c69f565
BLAKE2b-256 c0811558eb744bcb3a078887d4b312fb61792afe7f653595dac5093123b1c7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6cf333625234f247ab357b0bd9836638405ea9082e1543d5b8408f014979dcbf
MD5 a3b6da585a076d53bb435ba0319972ee
BLAKE2b-256 6ff19b2dfe786f4c1a4c2e978fecd08ba9c1d5c665ebca0f789c63b88becddc7

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7140d9e5a74a0908493bb4a13f1f16a401297bd755ada4c707e842fbf6f0f5bf
MD5 55a089b20dc2b2e53b184e0e3a54c5ba
BLAKE2b-256 9e6cfb0d3fb0ed59c978f50de93fdbfc0879934e9c5701224a66cc7d884a122c

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1e5ca43013e8935f25457a4fca47e315780172c3e821b4b13a890668911c792
MD5 2812398c5bff92fe15914aeecd45ae20
BLAKE2b-256 f3e232df83cdd1e94ca168f99ee8c5681edfcf5d29a302c270b0d48d350be6fc

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4d158189eb2ecffea3a51edf6d25e110b3678ec47f1a40f2d541eafbd8f6250
MD5 26c0e0a8fe64b13afab181308349506b
BLAKE2b-256 76f4040ba03c0a59d3cb4ee279c9c15a5840f19c5424f2f652ecf9fabcdd63f1

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 787e480ca4c1d08c9985a7eb1eae4345c107729c99e9b5a9a00f2575fc7d4b4b
MD5 1325b3a18a5d952aa857654985c054ad
BLAKE2b-256 a879e25870b67cc1a738f94c7219b5b7ae3b11cf586636293611af3999cde010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0a91aaa3c769b52440df56fafda683b3aa48e3f2169cf7ee5b8c8454a7f3ae9b
MD5 5dba631e2405c6c11f316ac4c3354c1f
BLAKE2b-256 22d1e1a2f7e495e476ccdebf62691e9989f4e15411f41718da7da13c94162ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 536b934e244829e3fe6c4f198652cd82da48adb9aa145c9f00889542726dee3d
MD5 f9554d3cf4456d100c75efe1e9eb70dd
BLAKE2b-256 c54e492b8fcc01a27fd11ff2da5aede692bf1c05dcfa399302388c75e4b38e3b

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcbbef6cc277f8f18f36959e305f10b1c620442d75addc79c21d7073ae581b50
MD5 608b5d3b0373748b6d508ee65b4b6de7
BLAKE2b-256 c84d4503588007eeb53a5a68801d1a4f357c377d9d9eba4547f501078444c29f

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 859ba1acde782609a0910a26a60e16c191a82bf39b5621107552c0cd79fad00f
MD5 9eec91f9523342e21556b3f6cfdfad81
BLAKE2b-256 11132797f43c9df2341649c436dd637f8f74abd39b8d3f478550b1dbb741d417

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cd6175f7eaec7142d2bf6f6597ce7db4c9ac89acf93fcdb17410c3a8b781eeb
MD5 23164eade60a1794a0e35661de63feb5
BLAKE2b-256 24d39d64a3deb7faea3b530683baf07a02b1f4663908b8fb057b815d2cc8b27e

See more details on using hashes here.

File details

Details for the file sentencepiece-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sentencepiece-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4547683f330289ec4f093027bfeb87f9ef023b2eb6f879fdc4a8187c7e0ffb90
MD5 4bcea06a58c45d429f4f682d8f52e5ed
BLAKE2b-256 4eb95cac9f1313a01c71d9a47c899aa11a066fac42a29295b8ec44603668e490

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