Skip to main content

SentencePiece python wrapper

Reason this release was yanked:

Official 0.2.1 release has py3.13 support

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/arm64) 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

For Windows users who want to build from source, you can build and install the Python wrapper using Visual Studio. First, you need to install the pwsh.exe (Powershell 7). Use winget install --id Microsoft.Powershell --source winget to install directly. Then open the Developer PowerShell for VS 2022, and execute the following commands.

git clone https://github.com/google/sentencepiece.git
cd sentencepiece
mkdir build
cd build
cmake .. -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=".\root" 
cmake --build . --config Release --target install
cd ../python
pip install wheel
python setup.py bdist_wheel
Get-ChildItem .\dist\sentencepiece*.whl | ForEach-Object { pip install $_.FullName }

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

dbowring_sentencepiece-0.2.1.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

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

dbowring_sentencepiece-0.2.1-cp313-cp313-win_arm64.whl (979.7 kB view details)

Uploaded CPython 3.13Windows ARM64

dbowring_sentencepiece-0.2.1-cp313-cp313-win_amd64.whl (998.3 kB view details)

Uploaded CPython 3.13Windows x86-64

dbowring_sentencepiece-0.2.1-cp313-cp313-win32.whl (940.8 kB view details)

Uploaded CPython 3.13Windows x86

dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_universal2.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

dbowring_sentencepiece-0.2.1-cp312-cp312-win_arm64.whl (979.8 kB view details)

Uploaded CPython 3.12Windows ARM64

dbowring_sentencepiece-0.2.1-cp312-cp312-win_amd64.whl (998.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dbowring_sentencepiece-0.2.1-cp312-cp312-win32.whl (940.8 kB view details)

Uploaded CPython 3.12Windows x86

dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_universal2.whl (2.5 MB view details)

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

dbowring_sentencepiece-0.2.1-cp311-cp311-win_arm64.whl (979.5 kB view details)

Uploaded CPython 3.11Windows ARM64

dbowring_sentencepiece-0.2.1-cp311-cp311-win_amd64.whl (997.8 kB view details)

Uploaded CPython 3.11Windows x86-64

dbowring_sentencepiece-0.2.1-cp311-cp311-win32.whl (940.6 kB view details)

Uploaded CPython 3.11Windows x86

dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_universal2.whl (2.5 MB view details)

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

dbowring_sentencepiece-0.2.1-cp310-cp310-win_arm64.whl (979.4 kB view details)

Uploaded CPython 3.10Windows ARM64

dbowring_sentencepiece-0.2.1-cp310-cp310-win_amd64.whl (997.8 kB view details)

Uploaded CPython 3.10Windows x86-64

dbowring_sentencepiece-0.2.1-cp310-cp310-win32.whl (940.6 kB view details)

Uploaded CPython 3.10Windows x86

dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_universal2.whl (2.5 MB view details)

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

dbowring_sentencepiece-0.2.1-cp39-cp39-win_arm64.whl (979.5 kB view details)

Uploaded CPython 3.9Windows ARM64

dbowring_sentencepiece-0.2.1-cp39-cp39-win_amd64.whl (997.9 kB view details)

Uploaded CPython 3.9Windows x86-64

dbowring_sentencepiece-0.2.1-cp39-cp39-win32.whl (940.6 kB view details)

Uploaded CPython 3.9Windows x86

dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_universal2.whl (2.5 MB view details)

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

dbowring_sentencepiece-0.2.1-cp38-cp38-win_amd64.whl (998.0 kB view details)

Uploaded CPython 3.8Windows x86-64

dbowring_sentencepiece-0.2.1-cp38-cp38-win32.whl (940.7 kB view details)

Uploaded CPython 3.8Windows x86

dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_universal2.whl (2.5 MB view details)

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

dbowring_sentencepiece-0.2.1-cp37-cp37m-win_amd64.whl (997.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dbowring_sentencepiece-0.2.1-cp37-cp37m-win32.whl (940.8 kB view details)

Uploaded CPython 3.7mWindows x86

dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dbowring_sentencepiece-0.2.1-cp36-cp36m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

dbowring_sentencepiece-0.2.1-cp36-cp36m-win32.whl (948.2 kB view details)

Uploaded CPython 3.6mWindows x86

dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

dbowring_sentencepiece-0.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file dbowring_sentencepiece-0.2.1.tar.gz.

File metadata

  • Download URL: dbowring_sentencepiece-0.2.1.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for dbowring_sentencepiece-0.2.1.tar.gz
Algorithm Hash digest
SHA256 8acd072fddcf2ff6e24e2f755f359de334274e9683c8b446ea9b830909d97307
MD5 76c723af65421e002b24087cb6f25506
BLAKE2b-256 5427c6dfd6072c6816b1c1c7cef0365564d2da0bfe9636207141b3a059fe3836

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7649285b38523956723f635e5a1b1a2805153a234fca7e0bf20da37d6e8a3c6c
MD5 530d9acf65f9c7f2e54e68660be22e5f
BLAKE2b-256 5065853b548908fd8841952cba8786b559fe2c78bde0dbe0fae836890ca042cb

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53ae9a9dede7555e0a5a87213b224ed0e51c7c7575475eeb54cc304d6ec4dedf
MD5 d3c2ba999b9f84bc2a6cd78564bc4752
BLAKE2b-256 fb108b57a327f5617d2f1fafa4f160c5bd1f2372f781c492c6648a78540aed31

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c38bfdbe7f650785a238e26b818b747d9fb5b19190d2146518f53f1b02b97134
MD5 f6e4e964ff9d02aba49957ed73ce4438
BLAKE2b-256 e413ccb33b0466770b5367afeb1b6b9d2e50b19cab2b8bb904b4679f9be9ed0e

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 838ff02495d6ddff9bc7740c21d2e8a5653fb0892a1fa42d204dbbe94b954646
MD5 4e9202b6cf8caa6c14fe96bed6e5e7da
BLAKE2b-256 63f730feac92dfbd99c34842547998d6e083961bc1d515d54d71ca5b6e123107

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18027d0ec1e4c54eeccbb47217671eb8b041a647365645d44ffa3a9c713ade05
MD5 c8cefbf416301efff538dd4c5e22b535
BLAKE2b-256 336e5b60b18ae7425224aac083b5b1acd26912a72af754656aa841f116e9a865

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd3c9c7a90804ddc2c8010bd7193f98631f2e03f9648405cfff422c48d1fa591
MD5 168fe5e2da421338cff7cf3488159572
BLAKE2b-256 a902af4b309b55ba4f9e52af5317d507fabff5827b219d319189b2b9f2abedd3

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86607115488447db4b4e7de5d1e31d9f7f5f880be25b25e8c46741ebc73e8184
MD5 f0f8b21ff826d37dcb045f0f8fa4f2dd
BLAKE2b-256 3d7ba891e9272444ae540b9ea52b90ed3d04cef3750647dfa3f4455dc9f305c3

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1865b8b0c3feb2abb15897ec2889f17b86e4a446da2128e2fe261f0b95e7bc98
MD5 7a7d51673ccb19fbd37263c8de1f822e
BLAKE2b-256 7f7d944d742f6b582e2d03a6113bd71fc93ac1d8db9ecaba8acff1b747cec77e

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 db89ed9924ea23b5273989fd93a8e6c4b0562871014c64b7a3632f80e88870e4
MD5 2b4142a9adbde5a74b89b0d62d971027
BLAKE2b-256 4cb843aa9b65bbc008494bc9863690aa3b2024a2317605cfc539abaa06d10425

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 df3c10b3684ea7ccdac365ca9182da7329cfcf7f8fde617b3300a69dd0c2b0e3
MD5 0a12389560260ccaf584380dba3d6c41
BLAKE2b-256 a7a0404e4858d305164008ecd366e2c4ad458cf03fb533b311ea0d299f56fedc

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b99fa536fac267bc4e9dd69a3109ce564af7f66fd641f531c9adf9c65a5d1096
MD5 1fb55cf35a507f5006b86ad1bd1ffcc8
BLAKE2b-256 f5a2199ca9d19c79181fcea69ca8e365dc5715505c859067956052818fceacd2

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b8301b26e468ed9312422d237da92bb3a306fe97fa062e3a510ce4d7be6c6386
MD5 c0dcf24943666e629446ea48b7819a8f
BLAKE2b-256 bec876e82d0821a832eee171a05f00544b54e21177939db1f45e4ab77f178751

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec68c6f004b0335d6124c90f057b7b7ddc0b930776de1ba4bbc040d639f8b63d
MD5 c59b85d11f29fc89975dc5b0469db3b4
BLAKE2b-256 f7e3abebbcf454f7852be6b16f165d245bddcaff97392a21088e834064b99d3d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd27c7e13f00a28b3b8702c77444da717303953b7f097f90d6394abb625d7dba
MD5 a5e53d27c9842cf9768fb19234e8525b
BLAKE2b-256 a5830b481e4bb09053f478e737012f7656b5d95eaac9f23615ae768fb4a5d4bc

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3740a6ae4b934aca3aa9b4a5e2c146929725ad0e40a1cb2bbe6aaf1aed03db5
MD5 5dfeac87b1044dc6cf01e35610df6969
BLAKE2b-256 b5fa3be984489442b114bb1049a1458197c2c9b7adcc465d970550a0ebecacfc

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3f1cb65659eaabc9068794f18a5f26df454bd963ecbcb9d627196811992caf7
MD5 7906c42b3f9b46cd360ea3d98b6197cb
BLAKE2b-256 eded04c4b0c3444e5eebdb0cd71b970b680fe02cdad65ace0ac21134f3095abb

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f3be78eae7711f83783fc18a031cefed7f2ee84db6c1a7faaac5f0ebe455421
MD5 01116802d3d4cff03fdc8d19de8d043e
BLAKE2b-256 c13baf099f0ecb13e46db2e3e02151bfb104eebedbd0a2bd1b47d6e2e593c5f0

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d294138a9ea596d0cf3024d6af7f047f5b064151f2faf8d255fc5c7ba7151bf
MD5 ea0de161de3c52557aae9e4f5d971050
BLAKE2b-256 eba4103aef12a79c7a76fe144162a88c935289269e4f283cffec3c0b4df4128e

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bb848cc5f5fbca240646b245203bbd245513c00984ff2086cb76f41ae12e9f99
MD5 8a268fe957993d9d702e689ba2cebf6a
BLAKE2b-256 312aaeb4ba1eb9e2057365a5bca482b865357e7b18a5128b389c8c86cebd17a9

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cba9f99294311d7efe14d0965e3bb580fdecdea1255e5e7850f4818b1cf46dc3
MD5 45494ce02936b43897f14acb20d9284a
BLAKE2b-256 0b83f175f41f7900f03505470fb7a8e5aa2e04df970f6d3095062369dab47215

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7f5e90adc1d21e1811a3b85a090d2c19f18dcc8f686378e092a29054eaffb323
MD5 77469a08b622c41f186574643afb2ef1
BLAKE2b-256 0610b3fb53dfdf37fbdb9f3b1c76862d730dd6d05a6a9baa1dcaba49efa86505

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 732829088c62c017e76bc75f654b9ec12697814252e7ab235c3327409fef4e32
MD5 f5604b44050bc1f1fe83334f73f2c905
BLAKE2b-256 134f1643d731abe7cbae38fbb4f92d15e8609a3bf763a612cab3113ab4e80f85

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f605839758c554fec05717d3108352934df298269e8b04e645d5f708fe62f07b
MD5 1aff9ed8a4911507bcfdfbebedeff73a
BLAKE2b-256 a97802a6d36858e7d294e1dd24ca1d56b489d13825158d862f8dc7254b42a53f

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d1a8b84fd7f7bd166cd0ec367b71a62ec527f67906621971c23b39aa1d7f6ce
MD5 aeb865e46d331d0439915d7a594cd6df
BLAKE2b-256 a57bf3011a8a50e1de16fe1c53ac33b571505b09964da4dfeea910ce2b4114e0

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 326e51aec701639ad6e439409189f4ecff4a962446a0ed3a4eb57359c5924682
MD5 bb5f69dac0b40f869271abab1410cb0b
BLAKE2b-256 981c51c51ece9bd6ca7fa55d6b6ea63963cd695a3804cbfb863dd312ae27da7d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00aaf86c3b66f39bf70a5ad60362bc21b4271a6761e7703dadc709ba123c2323
MD5 e3ce28b65e13036cfca4ae70f1fd09de
BLAKE2b-256 8ab3eac412fdae79c3bcd0cd974c6271657eef978bab1ee7a0be4522be85e9fa

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4bbd7e656ac424e3e86287cf641424e1f5a2580b08767cb35d1c80abd3ed747e
MD5 947f559e5c4a0b53aedf53de4b5c211f
BLAKE2b-256 35cd52014a221809dc38bf449787f31a65695b0fff9991e567988c5670ce93f4

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2d81c90d836fa8f7f5d734b51e61995b6639399f41e0c2c1ca7f26a76d36c680
MD5 25e783f613769ffb512b555dda2758da
BLAKE2b-256 9ee802b3a94432c49db17a2b4fd314c229d2befcc0bb64f00f4dcdd7b7bb33a4

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d26c97551c8758d56bb7c5c4414bde50d0aec4af2d3d91b195de684fd80dbfc9
MD5 382cbb292900c1f9cd8275aef588857b
BLAKE2b-256 59e56b73c5b03369faa2025ffe80f34749b389d7b26871a9daf7d3dc6072eb7e

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ec5c50ad6c3dd4808a0531ea6aa99453156d9cb28b7b2593156416c74592902
MD5 223d32e2f722775f656091effcc89148
BLAKE2b-256 7af6535a2e81fd41f651e93a07a9d8fa5f84797679b2c18fb1931f55ace092ab

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eb7ca5d36dc6576927040eb5c7c456fd76a111eca1010d9691b090e07f70811
MD5 02824f58400d3f3e67a0b2462e2ae334
BLAKE2b-256 88336ceaba0ad85fb2c5f35cc0c90a354e8806b963d47cb4d18a53f910e23f6d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ac2f88a4ecd033aceba048a1a5a12f7adc131793dbda276418f332d83a60878
MD5 0cf837aa97f3542dd60845dafd751f0e
BLAKE2b-256 dbef2eab3e7857a7d3ac7ed0280bcc0de8bab626794d00aac2f76bb3d4cea173

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f92a897dd300b35f6d2fa706b616c086c56984051a991808623938e7c7881ef
MD5 ab451388b54f62ccb782240defde4d34
BLAKE2b-256 46f664f50d35f5a2763b1548955e479dccf44caacf1a5f7f83619172d9407257

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8acba5c812d4256ba42bcfeef9dde9dc742b9d0c251d6f44a1a640499963ac56
MD5 6a44194d5ea33ab7b5f72d0013417af0
BLAKE2b-256 289f3171e2fc7acc84e1c1459aa483d5fc1bbfbced64e2ba2cc54903c7a3906d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c661826f147147cf0298832ee0bc4a9b28a6b988cdd91e2c543e241380f20b79
MD5 b5e78a744240094680ce54423182573f
BLAKE2b-256 d6138d9ff30b051b88a155be225a089efa405e5d4c651984e660321148432b40

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7172fb580d510ae7486c2b3490a9892857f663a9d32772eb98a8a89c49fb45bf
MD5 456c92e9e3965a5ce9f68e5ed41e368a
BLAKE2b-256 e9cb222f6a3cbb2e88df6f14fb87ffd4ded2e3214e4a8740c6e189367cde5b27

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 07defedc9166ade5419602a8fba0cfc4ede234191bb7f7de220197b7e345015e
MD5 5f345e58c8c222b25e9ac0c0786b2538
BLAKE2b-256 72ae184ef183c603f4303920e3b4e618f72558df8bff9406c0a64e6909b39201

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10335b3ed3cfcf236f223343ff395a82cf804e5f3f3f7ba4b7389b87706ea8c6
MD5 298e885806b01290e1380697653c3df7
BLAKE2b-256 c626ef3544f2b8fcc51f24bfa7521d101da0164c2a35637648e1be56b2e97418

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7fbe9804f936b1be4e3310661d7b4fd8b97ad78d7de27aeb4b603dcb7ef3eea
MD5 a64e89dd54bbce12f90df4372cae700b
BLAKE2b-256 fdaef074f3468d6c9fc380360c10cafb926c293e53bfa73d5a60ded1f25bfb49

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a2f38546fd6cd430ef33d50c9aeefb3c867b9debf3bb93a20869ffe371b0ac3
MD5 77800b2e519c8c8007107aabf958ec76
BLAKE2b-256 9b3c227fac036cd0f73be0b04adbfb5e293abc042186596e3377712d76bb7b2e

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35e281805b97f942dad0b1d618df1b47a6524061ce3e4dc800b69eb690c74c87
MD5 4d82302bb60cf2d1512cbcbcda4295fb
BLAKE2b-256 f58abf5e131db90a10b14d77a761dcb7892a865b2c6615c443171f5f5b75709d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4f76b728819999c9ee5fdf26a7d4b739ef550bb2ffc5e26995572143ecc7130
MD5 d079c4c0b21624600849f323047f361e
BLAKE2b-256 2ec5ff664eb053dd65b6b078326cbe3f6bb04d00c1e1d7a19b75354f61a083d9

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cccf749d3dd7f97c2f1dae006ace5b2f103dbe65ee3e72d63a2005daba0301af
MD5 47059ce7f446a6b61804c0762dde76f0
BLAKE2b-256 77cfce74dc1580101ff9361cc1e21d1b0d12c2f03c7284c357c42ee4cabf6c74

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80089a82c7f77d5977038fe3e1db47cb02d8e0cc92f14af6d3cc50752afff911
MD5 96ec85632c1117b7c114528b488767c9
BLAKE2b-256 97249b3e2fe5cf4a1c30c4e26a1b03cdc3badee145287fd2fcf66237a26c032a

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 29c7ce26d05690cd09b76c9a3df8fab8a3a7b8b9f409fb8b384ee2687445a637
MD5 6cdf4ea9ce2f6c6a0ee0341732b68d33
BLAKE2b-256 e28c291f851b808f6320945e6331a98eccc863505ce21f6ac92ea04a1ea08bbf

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e99dff28f9c5edfb7d8a981a773f2588b2670b597737f9b3d2e586a0d957e540
MD5 6aa2347471e3df4b76f034f64a235026
BLAKE2b-256 edcfb7d5749bb58a537986dfd3bc6bc0de720add29eab6b2ced3aff53e42fbda

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 182efa3a312b0e5ee570edd5adbfd83168d9fd097ceb72d8f1e34cdd86954f97
MD5 73e857730b31c80dfdc5942b5e4beb45
BLAKE2b-256 ccd97a82dfa56441af8a2036a983d8c3dc2bad7fb519cfeb9b886d7e6b773857

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f7bafc4ddb29f4fd3008f06b45e1339fe533afbc4dcb613eb4b9250a0f504ca
MD5 07898a16678c74d0dd4488aec75cd533
BLAKE2b-256 d0d68c33ed216b65243aec8416ebc272a999296f1943d5d268671c72b1263f64

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3688994e216971129392e7a9314d404df9860f1d58ef9a127101ab3b90b8c77f
MD5 9198d4c41c4dc7c93425371eb9e4fb70
BLAKE2b-256 9ede81657f33078c618789786feb30f66f2a83def07155023ab0699c85ed2a8b

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1a80649b5779e49ba3a1efafd78b4115a5a9ad671ab62e03ee5a0c5e66c02d
MD5 a07a101c84614abfa65319ace0628ff7
BLAKE2b-256 addda75cc8b9023d85d572d2989911f764d897dee9d1d2aa43a58b67f9dca356

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6950dc99ecb8cc27c370ca49d73fb693332a396d420c4d8b9759be2478517149
MD5 fdc78680c3e95663381e257b95ec96b7
BLAKE2b-256 3aea0f2a769c2de096405d254295964af117eb48a3df7cacb7e210e1d583dac4

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6ae466086c518d89b6a66f3173c7b9599cba85872b1b54d78570d9923429147
MD5 4c353e8bb87916ef7c4944ff035a21cb
BLAKE2b-256 71c6b8e6fe9340ac4a789aebabc442824ddd34fa3be778e527c15718a2e15fc6

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5cb42cc7123c70a8e2c5990650e4b8175f2fb16198c3b1f288ac17dd473b2026
MD5 c90a0fb2aa443b9f2e2ed2870f7ce696
BLAKE2b-256 4f7e7ae84c4224d6cd317186122b79760c68bbf59c0b148f8c3bca191341149c

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a35d2111366434b0f2e05a8d47344aaa560e105a66d176620e51aedd06da336d
MD5 c0f9c0a2d2a6034a264a2d5ef2ae9b64
BLAKE2b-256 928422d90913a098c4e9d81872ededf910bb1708588a6fe1d77850a8b68566b0

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2a9c678b35d592bda798a06b4fcb2f6dc840750d074610822e355ce10a5f304f
MD5 1ce34c5b0aa1345577ae28b054657dd6
BLAKE2b-256 6cf0372ae7ee8637fda2a3790fa0efb47d7c9333afb83626f05eef8fd5a82377

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dccfd53b9d6e6c46f5e57b2871d130e6fedb00f2b9aa93a3b98e859daff99da
MD5 7d8877135979e2d2ddb3b2dc5cc540aa
BLAKE2b-256 de7bbf4ac1b08ff1bba762dc5c8d15f24e572363dda6808b5ec02ab54e0c45d9

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94bd275678342fe830349045525810d53a7f54daefaae753cc0bf434e282c651
MD5 b26f6a5196b526ca71d039ba6a849485
BLAKE2b-256 b6c3a7032ceb60f43a9766f3367df9968583f136768cd41dfe14a51e32aeaa90

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80857a3295e57f10aca81a380206558df01a4949c5239c0a40a3437e802ab218
MD5 5c6af76d053ebe49aa471da8443f1438
BLAKE2b-256 f632189b17a006e5c88cfce381260957e8d4bb0edde4eb95c3b8d1e1bd74b8d9

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6be9a444e37bf6b17fa3c005bcec916f7109be93950c316b5de0be75ea5281b
MD5 eba01ca01af2a75accf2c8b15be6376d
BLAKE2b-256 7ae416f94559bebfd1918c70cc42c8a33c61f5bdda47f963177f699b79b8c3cb

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 22f84ad4e67023b62cd709687f457c129c580a8d971a7e944a37ddfa075cea29
MD5 374fe40f3151ae82416544e91bc5ba70
BLAKE2b-256 ac10486463e89247c097fe7cbb23514cbd7449be6b4eba5f9dadfe072002abbb

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5d0a27e20f31edec5e9aa78eed5e39fac502b820ed9386dcfebdf778c0e485d3
MD5 3e9defc91c8b5667873522cf592415be
BLAKE2b-256 b0459d07f82feb0755815f62abbaebda86e24742100e0dff5239bf5e70144e09

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a26a51cb2e7c84b79b6039ccc089fb30aed5c8d4d2d11b5f796170b8232b73d5
MD5 acc07d2e8f9f5418a71656f736c89c67
BLAKE2b-256 531b27ee8fb99a4672ec690b12104317a811e5d01739f73cb78bd52270d9bc5d

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3664387c5b0f83611f1596ce6abe8ca5e2f28c514cb7df6c55038be741d32b48
MD5 307dc953d08d2d7c87237d43e6b07fe1
BLAKE2b-256 97bdcb849cc6367d0131fb6819757be5fbfc2694fc1b2dabb5e8b12c4eda82b5

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57febe2e3fe734626179b575c47e82184bca2537cc56a9e1368d7c95fed605b4
MD5 e2baaf5e2e7de3186043a9eb2f4f50e6
BLAKE2b-256 851087d3267dadcd90be75e9c18bbcf6771b3676d21f7297e78be3effaf753db

See more details on using hashes here.

File details

Details for the file dbowring_sentencepiece-0.2.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 209f49125fb70433b782a0989a98c6a3998c54c81dd7a04f9e3b8db0f813233d
MD5 072daed7ff13497f0a08eda34f921fe0
BLAKE2b-256 18c17f873aa163f6e1ae142c58852159f4ec4a4127fd00703b2ab850acbac063

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