Skip to main content

SentencePiece Python Wrapper

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

Build and Install SentencePiece

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

% pip install sentencepiece

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

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

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

% python setup.py install --user

Usage

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

Segmentation

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

Model Training

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

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

Training without local filesystem

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

import urllib.request
import io
import sentencepiece as spm

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

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

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

Segmentation (old interface)

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

Model Training (old interface)

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

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

Python2/3 String/Unicode compatibility

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

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

Release files for sentencepiece 0.1.95

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sentencepiece 0.1.95
File Size Uploaded
sentencepiece-0.1.95.tar.gz 508.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for sentencepiece 0.1.95
File
sentencepiece-0.1.95-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
sentencepiece-0.1.95-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.6+ x86-64 Details
sentencepiece-0.1.95-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
sentencepiece-0.1.95-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.6+ x86-64 Details
sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
sentencepiece-0.1.95-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ x86-64 Details
sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
sentencepiece-0.1.95-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ x86-64 Details
sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64 Details
sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x Details
sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32 Details
sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64 Details
sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ x86-64 Details

Total release size: 45.4 MB

Release files / sentencepiece-0.1.95.tar.gz

Download URL sentencepiece-0.1.95.tar.gz
Size 508.7 kB
Tags Source
SHA-256 checksum
How to use checksums
8dd6e3e110f4c3f85a46e4a2ae1b6f7cf020b907fab50eac22beccf1680e0ea5
BLAKE2b-256 checksum
How to use checksums
95bcb39f9627c41027caf669cf4d1e47a7415cfa018a7dcb899aebd122af7c91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-win_amd64.whl

Download URL sentencepiece-0.1.95-cp39-cp39-win_amd64.whl
Size 1.2 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d3410cffb275c319c61977ae3a8729ab224d330bdf69d66cf5f6c55a4deb3d9a
BLAKE2b-256 checksum
How to use checksums
c772aeafad44bfef617ae49fcf71c6c4c661b903861631438dc0f3544bea7565
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-win32.whl

Download URL sentencepiece-0.1.95-cp39-cp39-win32.whl
Size 1.1 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
4749b187c91e796fe52b82abef3c05a60d82065088844c0fe45d5c221ddc097a
BLAKE2b-256 checksum
How to use checksums
dcf248c6a09da33a0e27f316dd3d1a259c627a21a1793e78467c8cbeb8549eb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl

Download URL sentencepiece-0.1.95-cp39-cp39-manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
03ac268fa1f5f2adcb083f40becd63b5bbbe2c13dec2cd46222688f8477827c5
BLAKE2b-256 checksum
How to use checksums
9d049c2dd5c96b094662cd0ea27769d9816165bbfa4c1d2e5b01345214b51f95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl

Download URL sentencepiece-0.1.95-cp39-cp39-manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
26676ecc4985902cf4af5d597df3d2c4f32f58ed3e23db20c47950f6065089d7
BLAKE2b-256 checksum
How to use checksums
c661253242be17286abf566bbbc2ae598895fdbfcfb6eca38ddc55bfe129b912
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl

Download URL sentencepiece-0.1.95-cp39-cp39-manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fa52e8a438f500e07c81c068fe128f9c4e677331eff0b17b28c55585aa7c112a
BLAKE2b-256 checksum
How to use checksums
92f858fe2705562c46572f71bd927eec4555e38b7835ef235d31afc5aa1ba0fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl

Download URL sentencepiece-0.1.95-cp39-cp39-manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
99ba407001cc45b76e56e03f63eb27e011fe614c3a38e2c0ed5818bb88e050f6
BLAKE2b-256 checksum
How to use checksums
76680a252479de4c038f8dd648d8db32ac40625a0c56333052e42d50241920a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl

Download URL sentencepiece-0.1.95-cp39-cp39-manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
10e8119175e35075d05dad49c2903903229c7b1331b872fff5ad6a85d369152c
BLAKE2b-256 checksum
How to use checksums
7630e95f0245c305263b6c27877257db871e8c4a63a8357f6e7fbbed254aca0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl

Download URL sentencepiece-0.1.95-cp39-cp39-macosx_10_6_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
58a1013c2a676e16647c64505b9e8cd7e7e5fb9f2d92ec91f2d2a5f777632a69
BLAKE2b-256 checksum
How to use checksums
a4be76ead9aa3e8890e7eb53f161bc4675de216552317298f12a64c38ee39d98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-win_amd64.whl

Download URL sentencepiece-0.1.95-cp38-cp38-win_amd64.whl
Size 1.2 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6365bb9b7a17573e1ed9a277eafad6b5a489100840149297b2f399294ca11817
BLAKE2b-256 checksum
How to use checksums
bdb29341a011eb92896d8fd88597fff5f5adc1ce3e20c737deddd0b2ff6707e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-win32.whl

Download URL sentencepiece-0.1.95-cp38-cp38-win32.whl
Size 1.1 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
e3cf28e56f49edb9ac021e247399671b8099e516ecd8091ee8ad5d35716e16e3
BLAKE2b-256 checksum
How to use checksums
df8da7802a138195834d7643279379f589290b4d92ea744fefbb951624e84d08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl

Download URL sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
77dff55aa8f74e36f7fd7df861723574630327fdfff0ca18fdbb4fe031c9ecbe
BLAKE2b-256 checksum
How to use checksums
3be68aef9ea5b47f3334fa763813b7372b4ac46a931546875d89b94396b727e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl

Download URL sentencepiece-0.1.95-cp38-cp38-manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5cac1dcacc2c6bea397188daa549f194ca2bc4d0a7005633ecd03b165e1ad16f
BLAKE2b-256 checksum
How to use checksums
b54d101fd4a5c47e8dd0797e251ae50aba166d10e392c6a1c8dd6bc19a35fceb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl

Download URL sentencepiece-0.1.95-cp38-cp38-manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5e177f6e40b074e08d3c0c2a1a862fbc94897d9c3439c7752a03a4f61197a743
BLAKE2b-256 checksum
How to use checksums
73aabdae7c266e9ebe4a6508714ef6a4c1601b83341164c99acd849da64aa550
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl

Download URL sentencepiece-0.1.95-cp38-cp38-manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
bc7324da0209b632be107123f40505e2400e6aa49e39b49a35d081c36e6cee1b
BLAKE2b-256 checksum
How to use checksums
4725059f822f8df4223f9ed183c8b7becd5d34ba678c50a4c1794ae4ab59bc8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl

Download URL sentencepiece-0.1.95-cp38-cp38-manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5ff761f322a1b34d691d8b1d87c735d8de725ce3458d879d9d0c319e285e7169
BLAKE2b-256 checksum
How to use checksums
1245d414f840be9ca1910eedf7b25a08e4df6c6c64cd919b6c146fde508169cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl

Download URL sentencepiece-0.1.95-cp38-cp38-macosx_10_6_x86_64.whl
Size 1.1 MB
Tags CPython 3.8 macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
453f9cf531b5ea694472a5f0a4dc727bfb4f383c8a80a9b5261db6d3a59d4018
BLAKE2b-256 checksum
How to use checksums
f0db5f2c1f94f7804cd914c4b76044610e0986593ed04b88ac34ac79619b354b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-win_amd64.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
c2add7d87c30898661de5b9e492bd99c5b184c731dec3c7dd3d2c956e4003446
BLAKE2b-256 checksum
How to use checksums
2b6db34d43118887d514f19fea262c09ed1fc357f86a2c42d71fe46a84818e55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-win32.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-win32.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7f7929c7741ea276d44c1e7966a1347943fab2089a55bc32fc42ba3c71a6e2e1
BLAKE2b-256 checksum
How to use checksums
990b6d4af895e74ec46f02a3eff20c57ae4b8b79b86e9f4fc8c4ab10e31451e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ad2866aebdf702b0d6a992b2b3b46c2de3739ca8a92bce17f24cf51c29fa4f3e
BLAKE2b-256 checksum
How to use checksums
f599e0808cb947ba10f575839c43e8fafc9cc44e4a7a2c8f79c60db48220a577
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fa8ee7411f31a7e7e1b4ed48de958e63befdba3465d7c7d9bd5a87235f7e5bd1
BLAKE2b-256 checksum
How to use checksums
e7ac54973a84df43ff147b4c40afd03df642a00db1cfdc6071084a59ca1878de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
087373b148b82854a3c03a9ad57d58a8ff5366b2f6d718bca27f262c102439ce
BLAKE2b-256 checksum
How to use checksums
55b5d184eb3c5fd0ba33b645bcf688e90545c351770726aa98eaf5ab4af20ea0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
163d869ce8dd7a9ed11187756272e8c73cd1caae1f47a701e5d70ad80485a655
BLAKE2b-256 checksum
How to use checksums
a30320a4d5dcc85be8bdf34efdd001d4c5c21bb50a4fa9b7a55862ce365ecd94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
48fd95e0bf082a432cff5d4b7e5fa6d5fdaf87fb2de210aa91f90086c89464a2
BLAKE2b-256 checksum
How to use checksums
bd00ff420fd4a61e6a6a639df548c8136c376724338ad20b9fbf3993a5978a94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl

Download URL sentencepiece-0.1.95-cp37-cp37m-macosx_10_6_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
438ee23faf095a9ebcc97debad2b07c0647ff6a306ed4d430146c3f80c7f6354
BLAKE2b-256 checksum
How to use checksums
4062ac0a3bf69c1149e509bc32c3efaf0a3e309a51ea3dfa8f8f7a42895c99fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-win_amd64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
8e2f6096899a32246a0c65ea7f24a01ff32ea49563ef013b348acb7bca5831d5
BLAKE2b-256 checksum
How to use checksums
94154823bb7cb9d49207b5c37dc7997f88beb36e258f817c6193e3649f3a846a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-win32.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-win32.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d89c04aeedab0d5c25de8fc6302d58ec6fb135e2670449376c7d0301d7963680
BLAKE2b-256 checksum
How to use checksums
2cb5bd05f4340bfcf06d998b742990b0fb6688f7bb2640615254d5af150b11db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d880e8f70822fe98b4f584814f5cccebf9e72aea7b44acc1a26731780fac03f7
BLAKE2b-256 checksum
How to use checksums
1467e42bd1181472c95c8cda79305df848264f2a7f62740995a46945d9797b67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
60715ef703af2410e5f5cac89d8123f1a0a8dbce1406a2ceaecf805eb0c0cfd9
BLAKE2b-256 checksum
How to use checksums
d36cdf4d57e4a184e1dde8923cab3e42791c18366a85424a858a1786943b42cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f5b6ab735d30eb1801998d4c413592149f9414d9aa300d90a28e8769792d2a5b
BLAKE2b-256 checksum
How to use checksums
6c0c150b08fd749e0ae33306dfd8623df95b6838ee71ed272391a122c632ff6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
53951098eddfc25a5fa0cd9be748c9346db3c2be0b6c74a8ac6663acbde2b639
BLAKE2b-256 checksum
How to use checksums
6ea791b0e771ed867ef92b0b5940b76a8509540601fad350b8d8e56bbf2a3a72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d789bcdce025b377a45830d3962d041b1acf7e416e5451bef081bd6a9c758dfd
BLAKE2b-256 checksum
How to use checksums
f724269f30adf3f0e427efb1867d9ccbd05f36f243ff1e0a591f07eadf2246af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl

Download URL sentencepiece-0.1.95-cp36-cp36m-macosx_10_6_x86_64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
94f866601203b78095d9f219995820ff4606d67281895a6c79d5c1ffe75575ac
BLAKE2b-256 checksum
How to use checksums
0bf41ab0b4203e840e34e81e0d18e9ec95fb09d3665601952c0830e46eb551d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c510e0d26760d51b31f2fb05e1638419a1590df8783300d79e898f2bb93975a8
BLAKE2b-256 checksum
How to use checksums
c6b871ae9c7b12be8a7d68ce42e5eeb1ddc11b425cd4ca838ba8922763794259
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8613286b537056e6d2029e306719e33d4e09c369a1741490e4e18f2a6a797996
BLAKE2b-256 checksum
How to use checksums
0da9b67edee4d95c35c0d558e88ce8920607381361f2bfc6ee2a6756914785b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
243ce7c067ba15e5883ab772117b144a8fa1f5827c466a664c9f52d173f6e375
BLAKE2b-256 checksum
How to use checksums
f2058e6651ae79fa04cec6719dd80c9a3fd00bc3094b07d24e30744074dd65db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
43acdb01466de8189b899de153b96eb50e0ea3b77608c1d4f4f8f0c6f343fe45
BLAKE2b-256 checksum
How to use checksums
92f1e3f3b5e31fc483e94992f5860b283267d61413ae4a16ebdbae968e37a855
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f05663139279718421084d618131a24cffc068860873531ebfe38a73085cbd2e
BLAKE2b-256 checksum
How to use checksums
3b1529eec51eeca4711a0c40f6e7573c02e1603554bb9c7c1e0e8737efbd59b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release files / sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl

Download URL sentencepiece-0.1.95-cp35-cp35m-macosx_10_6_x86_64.whl
Size 1.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
21cfec2ec80eb6f603fb92b0416479272f3ec30cfd511b8525a964e2f1cf82a6
BLAKE2b-256 checksum
How to use checksums
07ee64aebfca8a2415227b190553632ec2ea3487a45118a255ec8438de7252d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

Release history Release notifications | RSS feed

0.2.2

57 release files

0.2.1

65 release files

0.2.0

53 release files

This release

0.1.95 This release

39 release files

0.1.8

23 release files

0.1.7

23 release files

0.1.6

23 release files

0.1.5

23 release files

0.1.4

23 release files

0.1.3

13 release files

0.1.2

13 release files

0.1.1

13 release files

0.1.0

11 release files

0.0.9

11 release files

0.0.7

13 release files

0.0.6

13 release files

0.0.4

7 release files

0.0.3

7 release files

0.0.2

7 release files

0.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page