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.

WARNING

This is not an official build. This is an unofficial fork to add python3.13 builds pending google/sentencepiece#1084. The official source can be found on github at google/sentencepiece, and the official build can be found on PyPI at 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.post0.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.post0-cp313-cp313-win_arm64.whl (979.9 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp312-cp312-win_arm64.whl (979.9 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp311-cp311-win_arm64.whl (979.7 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp310-cp310-win_arm64.whl (979.6 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp39-cp39-win_arm64.whl (979.7 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp38-cp38-win_amd64.whl (998.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-cp37-cp37m-win_amd64.whl (997.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-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.post0-cp36-cp36m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

dbowring_sentencepiece-0.2.1.post0-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.post0-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.post0-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.post0-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.post0.tar.gz.

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0.tar.gz
Algorithm Hash digest
SHA256 a47f9c798f313faa206472641f21a1deafa2dae9ae07548ad836527286db80b0
MD5 6a4c690cab83b3fe571a26f1e159bf9f
BLAKE2b-256 b088d02985647831817c5a28fd9422778dbd045660a61fa37ded05574caa9961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 70e428334147db8f8ae00372db4ab6a1c7087e672b8128d8cc452c9841cfe030
MD5 54ea2aa8aaaa9a77905fe656e7e3d8af
BLAKE2b-256 aa388fee428615d40b0b9820b27b04746723c93419a1a3ac1337d9df6294ada5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1093d3ce8d51004c1cf276149cae76568829ba4f6af3d83273fd65c3da29e0b1
MD5 049563bcce78bac6fa1030fe9d71f3f2
BLAKE2b-256 a2302dda4a4683a4ee1c50a58aead2947371ce5588e56c6920f11b62eb1b0894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d391f04114dd87d6b034af131fe16dbc1f59a07144afce085e49b9b142e3f0ae
MD5 e5e63415343294d165db49637283aece
BLAKE2b-256 3e5dc6cecc05c86a588fef3015e042affc8766ceec4a0a5800af754269e41588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5f482c1db4f82ca40a1d1b90c7c2ba1049794e7b5d90dde7c3ac906a33f7cb0
MD5 9fc94dc306ea90487438363240cd4d67
BLAKE2b-256 2d0144b92b714f52a9db8aba390790eec30be017702597129c5a2ec626b7a6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce5fe7c93f25fd987a98353b16fd29a2cd8f763a869bac2116dc7c338b52e048
MD5 81ff27639f6f53173b2335d8304abb39
BLAKE2b-256 c74ac2310b2733e12eb9d34b5c3f3182e2ba2f9efe58ce0794f582badfbaf1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5320412f7d1628905a74d90e5c0101271bdef4c837557e92b18d5f1ed7210a66
MD5 61be0527b32ad65e9ced2c89b7a01d3e
BLAKE2b-256 7e9c60ad83770a53ccfc2d8efadf2a905fb152f7586a5bcf4717abb74aaf0eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b1a9a0476c68a7850d0438327f22df843e1e7d7a260c15ce2b46f1e2fe7449a
MD5 9b30d1fd4b6ebcd2b1ccccf7b61ce05f
BLAKE2b-256 71fcb1064c6d0c7f7dde01a0e5433ad8a3ebe0ca007b52a3a1c3b51ac8f01f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87db5901e25a0bfb8d82b30bb0b5db1ce84e2a1e965ef859acf9c66dd9b37710
MD5 b45e360bcf3c41767661cd9e5b15099e
BLAKE2b-256 c4adc78cba24a4b7733faec859f3c2ef018df41e378fe3f2a94bc32d90c81c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0a93c74ad8682802aa4c39911b975d457eabd95b876268f75e4b1bd8e46b23fd
MD5 9a9d668b518851d40e19901cb69d05c3
BLAKE2b-256 d1458993a3ded433a6e4b22637ec89dda1b9a59aa332db27ea44f633269b65e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ad9df96c1dad11b5cdafab5ff0d630759616dbc200a7bce229fa6bfbdabf69b8
MD5 947156e1ca549494f03e0f3ba607a951
BLAKE2b-256 7b5b22aa9973d41cd79e53d763cf6cb8eb19ed9ca52bdb52842e5e43b0931cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c75e3af7c7775d7072365a829143a2e24d89038e49833e25194a86f33d4bdca
MD5 2b9f8a7746f1dd028d4d2b297e739e27
BLAKE2b-256 38bf66e7006739c3017694186c3cec3cc39731d252c52d6b1b84da4eb346ae2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4a1aa9ac85b42829fba72a541f07b776a6c31c07e194bd8980c335cf55b1d4ab
MD5 dec55be510686b4bf18b48f9a5e7ad5c
BLAKE2b-256 0d72fb43e1ec8aed2b3161ce5beb23606673b167e17e2100e1458c6ef0dce71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1893494b90fe8b9b73e972ed20028add357a7a8f42f5a106c632f92e5ed41552
MD5 351fa52f2ec3f160c94f091b98605726
BLAKE2b-256 bae44796b723652a328ae5a3f6bd54e972b6daecfd56d05469d3b3fa91ad6ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3442e86eb737c2db7487c965ce093026eb61bfbdece0f9538a0797da52b1bf80
MD5 17d38929ad26659db3312498acd87c38
BLAKE2b-256 33382fab7ba47921ccc6b1e46afad5403fadeefcf9fd10332f472b56dc29e5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dbe561d8d715e3b5e5486072c6c7e85775704fd34cf9652ff2bd914f178c87a
MD5 eef22693f54d9c2e392a9ffaf5db7ea3
BLAKE2b-256 424423cfb52723f80050dc10ba9c882e00251e044937d3b19f76c654937fce62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778df306e49aca67bfae42f0920d0b21a56a8b6fe5ae000835779935321bf8b6
MD5 246ad57a158db11873043a70b0e19781
BLAKE2b-256 2fd7fad8b9b7bd59c7aaac3f0c6442fde0a043c6712ea69275beb0890da32237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aca63fdaf4e2d8fc6df7ac6465812c72e43c651ddcab777d8ee023984287213c
MD5 bffca948bf01faab5c05ec5ec55f592b
BLAKE2b-256 fcb55f321e54bae7c633b3aa470307a0e2152728560fde854066145a851f614d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38a08f210e6d223533d8fbb01e418bdbf4d49d6fb5411234e163e33dd6210312
MD5 6ce000f8fb32f5a99a61c9838f3fcef5
BLAKE2b-256 cd2421f7f918d15fdb2c1e929124e8ea007ecd5a7568a40bbdf855b037abbfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 83214e544c1ccd45b403b2c9f707c561ea9a438b51b870e509936d910c8d4bf1
MD5 9bf78c42be97fd3d0b69a77defb648cc
BLAKE2b-256 fa55d47c2a0887fdb1d6673e73f0f525c58667651a51cb5fce57e82b1ce69ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74e12550b8a52f5ca81eee6584c58165fd0de6658f340e5ee84d5342253143bf
MD5 c91dbb128ffb618822d06cc3735a1f6d
BLAKE2b-256 d0f731ea90ccbcb20ab2fb41763b6680450466d02e16005de03fac1b518370fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f3d94dd7c8f233b7dd1082358e58ae44fc5cba6a88516a357f6192e3f352f6af
MD5 547546e173abefc0fccfb2431c9f9b44
BLAKE2b-256 25ff3aef186fdf8476f7810a28052ae8e4626cd8725b7a3c2a972339627aadd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82583694414f1387466ce4701f2eb13bfd5554f03081edc2f7a728106e98aa24
MD5 024756a46fba5dff3a5e2a8830b69d0a
BLAKE2b-256 d0be5cb2dd2a3d8086e16a7aab16a483c9c24ff2f42f2d8e4967c65be37855ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57dd587198fe47637f54d1a5f15930844ea2fd4e0f38dbed859b320f13f73912
MD5 cea14a0be03d21e288d4733fc56be9cb
BLAKE2b-256 c7274ccb6c2249863ef12e743c1d2acd028333775daca869ca8442b525821ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f82530411d611e8c2203e633924e006e4fa0dcafafc69b49082bd526ff4a539
MD5 84813a2f549427ba682bf284722d1228
BLAKE2b-256 00db051922497586246b287b485eb6dc36b19ac9c10b74b39d5d31af078c87f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7f6ce6a768b257ab520ac1e073fd7a44cd1830b9f66bac5e80dd32b80c53c40
MD5 fed3beac929cc20c85927ed94027d31e
BLAKE2b-256 94eb21c7774f2da2a35965d72ef1cbb3c1c2de5ca47d5c86881d8a41f35f963c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d39d0fc3b120b3d9b0271de1f617c3031600f44840742a038973d1e0dcad9bc1
MD5 08d720de0e93054578991eb34b96936f
BLAKE2b-256 0c2edd8f10b6e401826595e84f9a2ec2e1a339280cd55fd78baa371ca4e4a943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6b9f8c0d55afb41a9164af0b340fc1b26daf348cae2f5a125428073bb03673dc
MD5 1801fb95cfaf67845699f0fc641ac575
BLAKE2b-256 9b971f48babb2067874b25f4df31af8874be938bdc01916c4ead41752cb1270a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e8034e59e7a34ad2d4de7fc3c270ebd3cbaff4ca3f1f85b25699928fd984a05b
MD5 c9b54fda5c3bae4ac5be671a71a3c9cc
BLAKE2b-256 2e203a2143da9cb235701005f21b04e83487b66d8bb6f886e2153e3d6fa2b7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 25dbd1bd6c4a2ef4a383b51b766ebcc20fb87cbcd671c15b270fe0de78cba2ce
MD5 6e7d6880ed5a81c6c9e29779917f05e9
BLAKE2b-256 2cb170f5125f28fd435b6cc7fe05774060bf36f553ee7aa8b1c6af9ef720c355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00683fadc6281beb45b9b1c8b3a6e8a51e44220a61862c6ea9366f61ac8182b6
MD5 07b25262692cad386b205d26bd2e7e83
BLAKE2b-256 bf6decdac176602fb963ff8f5d890a8379b200b23ba501e1578d258e9e0067f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 246d22088042bb491b17475542b926825fc73a738c1b6a0b924584a4019f92f2
MD5 1fa2cae6e3c7c688a991ed6e29543031
BLAKE2b-256 805d95fa3d368124645edd2b10497bd936e8e0c217bb90df7589010df452a5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c26790e7cfd625d1ab9cadc4e9ebd396b42e969c36fbd920fca2c339f7e44e5b
MD5 8a2591c29db72a3e72a23deafed9c9af
BLAKE2b-256 0096fa41a5f9bc369cd4ea06ecc1f83b0c8d0138e3f478ba747f9c44a73b533b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2424dd906d815e8a4889835ed08aa51b48bab203a4f507ff53382684847b857
MD5 9c30302a0a4f6492f82518cf53a0e17a
BLAKE2b-256 09f65c1934c15703282e43ce9c3a50ce05f216e19b0ab6e7fe83230e3491ffbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67ae3769b65c27a1d6a9364efb43fb2d65958760a4ee60b4b1f8edb07b5ada1
MD5 1b651df1ac72936972d26f62c64940d8
BLAKE2b-256 cd497b105c8853aef8a6fb52491a01b76cdd5b9cc4691caeb62c85ca15e1b6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5036ada10db3c996bdf9cc1628ded8f58d14174a5c45162c375f4ce317760831
MD5 b4b2be158f4f1668cbeb6473c4e7360e
BLAKE2b-256 5775973f66cc078f5e82a6b65592c0ff4343ae242289061b683a4d04622f72ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 392dc4bcf32d48d2bb325f0430a1ab917eb1d6c8b27b82d864f7f64dfb880925
MD5 135318b08a1ea94b5eb98adda6ec5715
BLAKE2b-256 63878a25c4b0a51c481c599123e9cb0938e3175fcbd67b3a637d7e2ea0c8c104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 faa04b3fc7af2657410b6b89cb18b1b40ac7a9586e14ff4652617475133ad64e
MD5 111996c35b72e7beae1b057b8f358d49
BLAKE2b-256 d500d7d5b40fb75e4edcd22faa450b6a744162be3cd044668e43780ad3e1015f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0b46536d5ed063f22663f44243a075e62ca4e3199864f766ca7ff05b8842bdeb
MD5 2c3a58c3dd9955c799053c6817bff8b6
BLAKE2b-256 1413410787e502f3b34aecb631be1ada06a6ad5df061bfb61ccbd34908d9c76f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9807df3e15d9cb4759fa0c46117fa8b129e1b9442bb13236b3c3a74d12b8adbd
MD5 28739fdac1921f4453a94e60478477a2
BLAKE2b-256 ee79b489199cf31ce06d5b06a2bef6cd80cfe5fb9d2edd4c8e327fa45fc3e45e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad69aed95cbca55db7793cb79cce826db8367c3267b9fbb55da932c126581ecb
MD5 fe42309dcbfa7042051d9209776d0ee6
BLAKE2b-256 e9e09355b77bda64fc783317783b1e02a0ecf0ae251e1e1dd7f9b5995136c443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be2bc28353f3295e17cbc1cedbb623b46dbb57c082ef8e4da92577834f00cf01
MD5 4d537aa9392b990f0ddb64ba2bd0a4ea
BLAKE2b-256 931b3a1de6454dccc3780bfdc3f475afc8bff67c539a0434b680903a7b57157a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 575619e63361ef097341963c5b81cd090c0adc83f0d8254e5e9b67edbf872859
MD5 be629384324588a825ef86e391aa1080
BLAKE2b-256 7b540c27f17367bfad4fbaff854513f58383ba78b3fcdd7252f736288ad6af86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 499a74d7c4b64ddae82f8ca589b9e907d025f2e9e22cde4b5e66a068bba8e42f
MD5 a06751fa1af87207683bbd930a371ce9
BLAKE2b-256 d2e05dd4e45e27acd91733ce342ecec4cf99df9f8e47af7d3222d03916524267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b67454344d1cd297035afb52922438d99e43d6dc9ecd020752e9e4e9bd65f728
MD5 1bba9a9f31cfec62824272489b7d24b3
BLAKE2b-256 a83a4779b25f1969947959edc0c8824a932eba6cec9bce6b990cb6bc6c27d6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 baab7acee0a06f719ee080b15ae6450b6858b9f72e08b8dc35afde6eb8afe90f
MD5 abfc30f4601158e0826d3c08f3ae8a90
BLAKE2b-256 7e34fb12c769fe17bb3fd47970193aa1009169517633e1bcf1405ec131c2c7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0f329ca75ad8ac71b9b2ae3b6fb9942a0aed0843325110804930812ce5d4fe9c
MD5 866f89eab423a1804ffadd85e1176d1a
BLAKE2b-256 529190f639447d9b6f1a2ad3c6e9e018d86a5089e7fddc66243949019f2a028a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 af86cb14d17f00a3ff33b2417d7e8e7aff5d066cd4f7f9f5519c5cedeb96d2b4
MD5 cc9c5fc00b1bc1eac338df318977f0f8
BLAKE2b-256 e3a14afc4f7f2e715908e149b9cad68b53cbf8d604beb1eb1d275d8e22c46bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fc69b7149dd4a645ff5609fd777d1c8adaed525762225e39da2b4472e379fa5
MD5 823c0afadf9f1d8913a49b76967a39ed
BLAKE2b-256 0ecd6bda8aeed45beb0f06fd8022c6d3bf677df881177712ee2cb71106b576e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6d003763d47b0551179ef379f36927c2673e457c3466c93cb343a3da39d61c2
MD5 c18bc8e43ea94c2f1d0753c20737a297
BLAKE2b-256 1268b3faade3d422f4bd5bf8c9b9fc3b0c765f3a9b893edc02c0cf698e5ba932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 befef8c0f52bd22f0c4681fcd9319f58bdfe1b60f8c223fccad2505bc1c3323e
MD5 3c60ebcec43c16fa102d4b1191f9923f
BLAKE2b-256 e27ec9e921d2b9d4f455ec5dcc42b19676cb9fe49020d9f5e6f5ecbb24d9140b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73fb885b31ac6080ccd0d6735d2ba631da85d88323ca59a38be51ffad81b07b0
MD5 6bceec3ad29cba818ca9eeeb789894c0
BLAKE2b-256 1698ad14c7d9b65d5dfb9b46dd4300c65941c5b3c1a715235e42254498d31002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce22ad211b53e2bed70f50fcba716e6fcd724a776b67724872e291c11b0277d2
MD5 88ae0858be83ad692e18c340d3b1434a
BLAKE2b-256 a73fc02c06359ea0f919f2a0a957a9f51268c80922459ced75a8073631f015db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 59d25b615adc912b3dc72f6784b49ea1599cf448b0adfdfac1d9a03c59edad03
MD5 efdcda67ba7c28f7d7c8e4bda81162b3
BLAKE2b-256 8b1bef8abd357ccf9021b8e1881dd2cace686a4a10341bb464d0323c24200015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6bb69275d38fff09c38f6ab65638fb08ee383360fbcd63f67e3933f962c14098
MD5 51823d16f765ef99517dd758e6fe6d32
BLAKE2b-256 9c07240d8cdc97e9ba8957fa41aa56af00303b55dc27323691cf3f99e098d820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ab17f8016c2a042f8c2a77c771ff6859d3ac0a6e4694804477df89e22b3cea98
MD5 669b2c2e9d2b51e69dcaac3fc33f4eff
BLAKE2b-256 8529d07037fba98a76669ac27cc5d52ebbcd3b3a131da6b7a1941f8964d50f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b556b7891db8ecbb96b99a19379d1dc56e9c449fd0d71e83a256d49ebb8bcac3
MD5 c34f9123316210784d675cc71c796aeb
BLAKE2b-256 9f8481736d6f0e17ad23c37245f370334fba9cd4fc29b423e1864c39c3fc2e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 590d7a1725566efb01278b74a705ae93e318766d913481e3ee105072a78ab1b3
MD5 4990408719ac240e21e29fa3505c3dad
BLAKE2b-256 26a5517457d4b1aae7ba90f52baf240875de668048355f90b1a79d5051ee5852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbbc209561705fa7ca53d1eb084eb06312fbc7038941cb804b1b02ec32ae9dc6
MD5 7dcd26e5aa31851c47f3daedc36e8ffa
BLAKE2b-256 efa0378af4198b271daf92a0ce26e56a2951695ec109865ba8c7fb3e8a981ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7276637c9e1cee8ce5a5c28c3ea9de906e94c6b1cdd663cb998671f7615f97f3
MD5 aeda4d5a45f9d8f53556dc0330bffd9f
BLAKE2b-256 e5a77f145109b1b2e1d453c98671504c7ffb873a74c9359771a589ea8494a504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bfbd48a2cae42b423879e58703439578494e1930e73544073ea0d29b9534d598
MD5 0fb577e0c63a88febcdfab5644a43873
BLAKE2b-256 8fa7278d93cf1e144a39249c3cd6483a83c1799cf4e5b10e4652a3dcc3a62a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0218cd53b65ab4161f220f7df3d79b3990411e0428f3750290464e99e1104064
MD5 7c20127088b8efe4b1ccfab3e533c7a8
BLAKE2b-256 5d02994ac3ba4b29cc654ee96a115676917e1d0ae10f501add3eaf592ec948c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faaa74fed072fb35aa9ef73b2a0d11f5be0cb47b55f786ba4150845d8b3274b5
MD5 c7fd01090a4c4bfbfee9eebd6c1df7b0
BLAKE2b-256 0c8d92e2c92f6713c15da6c4c81454263f88e6b0f189a930e4e1a026b1983afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01b1e42f1ff76ef643ca2b774698c41a242c2d995bd60e5233c36d00a7fd22f1
MD5 34ce26fa4c97b0f2d3849004e8cee140
BLAKE2b-256 acfb525104e84db4344df1e3696d80578555c18e14ec02845cb0e4fb9fe352f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42e524877928046584153b882ccd57ad78717f763f159e5b0a63dbc7ca1476e7
MD5 ba01fc157673af8de5676345b5628ec8
BLAKE2b-256 0d5b08e2da259f7b481d7463ff13c05ac25ac55cb3b70d8a257df7a5a0303c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dbowring_sentencepiece-0.2.1.post0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 487be4b058a93918ec8fb3e7608732a242cf8bcca3f9bd9227c7ddaf8de2fa6e
MD5 a5c0fffc14b40b15893e8c6068e9b504
BLAKE2b-256 d0a6b835ff66c66826095dcea72128b89782ce05dc0c7087c0d4c5ea0034c263

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