Skip to main content

No project description provided

Project description

Installation

pip install safetensors

Usage

Numpy

from safetensors.numpy import save_file, load_file
import numpy as np

tensors = {
   "a": np.zeros((2, 2)),
   "b": np.zeros((2, 3), dtype=np.uint8)
}

save_file(tensors, "./model.safetensors")


# Now loading
loaded = load_file("./model.safetensors")

Torch

from safetensors.torch import save_file, load_file
import torch

tensors = {
   "a": torch.zeros((2, 2)),
   "b": torch.zeros((2, 3), dtype=torch.uint8)
}

save_file(tensors, "./model.safetensors")


# Now loading
loaded = load_file("./model.safetensors")

Developing

# inside ./safetensors/bindings/python
pip install .[dev]

Should be enough to install this library locally.

Testing

# inside ./safetensors/bindings/python
pip install .[dev]
pytest -sv tests/

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

safetensors-0.4.1rc1.tar.gz (62.1 kB view details)

Uploaded Source

Built Distributions

safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (426.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (441.6 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (426.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (441.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (426.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (442.3 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (444.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp312-cp312-macosx_11_0_arm64.whl (425.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp312-cp312-macosx_10_7_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp311-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

safetensors-0.4.1rc1-cp311-none-win32.whl (266.4 kB view details)

Uploaded CPython 3.11 Windows x86

safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp311-cp311-macosx_11_0_arm64.whl (426.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp311-cp311-macosx_10_7_x86_64.whl (439.9 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp310-none-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

safetensors-0.4.1rc1-cp310-none-win32.whl (266.0 kB view details)

Uploaded CPython 3.10 Windows x86

safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp310-cp310-macosx_11_0_arm64.whl (426.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp310-cp310-macosx_10_7_x86_64.whl (439.9 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp39-none-win_amd64.whl (278.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

safetensors-0.4.1rc1-cp39-none-win32.whl (266.5 kB view details)

Uploaded CPython 3.9 Windows x86

safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp39-cp39-macosx_11_0_arm64.whl (425.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp39-cp39-macosx_10_7_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp38-none-win_amd64.whl (277.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

safetensors-0.4.1rc1-cp38-none-win32.whl (266.4 kB view details)

Uploaded CPython 3.8 Windows x86

safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp38-cp38-macosx_11_0_arm64.whl (427.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp38-cp38-macosx_10_7_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

safetensors-0.4.1rc1-cp37-none-win_amd64.whl (277.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

safetensors-0.4.1rc1-cp37-none-win32.whl (266.4 kB view details)

Uploaded CPython 3.7 Windows x86

safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

safetensors-0.4.1rc1-cp37-cp37m-macosx_11_0_arm64.whl (427.2 kB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

safetensors-0.4.1rc1-cp37-cp37m-macosx_10_7_x86_64.whl (441.3 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

Details for the file safetensors-0.4.1rc1.tar.gz.

File metadata

  • Download URL: safetensors-0.4.1rc1.tar.gz
  • Upload date:
  • Size: 62.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for safetensors-0.4.1rc1.tar.gz
Algorithm Hash digest
SHA256 6e8cca107fcdddf2333babfb29e9ced10888da5e5be288903cac1c66a7c8befb
MD5 415159a34a961fbce1ab8f8a8661dc65
BLAKE2b-256 a82c578f0c4e770c8491977f1a2e4d8b1d8f02e16a69816be642b21d95c03a41

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be7352e4f74066293cd31bcbd1ce804851874bfa8c14ccfdbbcd8be5a849c07a
MD5 a353b6cc7baeb7a9d776e51e412063e0
BLAKE2b-256 cc7ee1b7563aeeb92720a66d85b1c9ce07a07209a0d5ebcbec2c6fab6af9b7a5

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c4b63a7c33dce403cfc71624068761359fbfc29d89d1a9e32b36ece8f3c78efe
MD5 cb24a4310f43606dbfb9fa193fc4d28f
BLAKE2b-256 6fe269d83644a2470ee264a55d249926567479612a3e1dab1d4ac6501b2e49fb

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0d8e1282fe06bb3ef133e7ff07158862beaf34fd3e520bf40325ba9fd8a914f
MD5 2f7abdfe8eb016f0b75884b97bc60238
BLAKE2b-256 eff7c030530db3003636525b402c63300cfc658e38e1760dc697241bd67684ab

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d845a43b1431a8da037e1d42be822319ddf94d4cf2c59f70d433ecb600c5e100
MD5 243ac9226a6d697e16a0945a7ae0630c
BLAKE2b-256 ca7a3f7ffa5d88726fba2c3d7634e1b765a43ded6435fdcce69870e3565cb4e2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b5ad568361d28c2e2c4e34610977d5be867ef293ea400518342ffe9b8af4e82
MD5 cf5372e86e11601dbfa08a730ea750e0
BLAKE2b-256 ef290a9b7fe9e12da8914db2c0eb713ed388d8bb41db0171ee6efe2a25bc8f0d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e52e1c37069d47e7de18d49ac0f8d4605ffbc7b1f284035511c2187894b1097
MD5 e97c925bc7d701e0a0cf0cb424db749f
BLAKE2b-256 2fcf978afd7bbd7283df3c536fa6232d0fa202a00012d02b45f7326e0e98ec9d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b5a996520526b084fa14ac24c43553001250062c85348b2483cf41e42371d0ab
MD5 21945db33cea1a5de5b70bb9a3423c43
BLAKE2b-256 3d9d7a4613c4b25cbd423f318079a88b14d82347caf5759d85c6a80263891fc8

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f1772e85901773a2eaa898aab074ffb47c52d7fffb7640aaf2d1acd9b6afdc0
MD5 dbd8b3f560c6cebd4621f31e4160e8f9
BLAKE2b-256 6ae58e2881650c66a486165420b480f0a7e5f1abfc7bf3cc14d161b0b2f4f2a0

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf9b2fb2715a6e80efd9811087debee0048066710f81b92bdc7e41cc850919cd
MD5 e4d92cc14f340b9c90a9d2e1fe176514
BLAKE2b-256 d958af8cdef0bf986591a90c3f48ebc4da53eca1bce7a805e832c033710c675a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c47b3c4527d6961db3f996fbf0a977bea318fb04af532e2dbac788aca80e0e43
MD5 969c03f688b2b291a15d50b2eac11175
BLAKE2b-256 0e560dfdddd1ec67fd92dd9a2c567c460415867955533af006705a94ed113b54

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e858b7818292c8693daed626f6f82d2108e7ce90df14a525f97913c344271576
MD5 8bc9d30f07489f92118c4c642d61756c
BLAKE2b-256 b3dea4347cccdbe5ec610c37ee4d22b674ca05c6a7ecd0db4ef24d2622efde4b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 603964c43bd1e4ac141dce9c37820a153bf3300dec8d832c96f7da34b9e790ad
MD5 2efbbc4eafe5983411ae83d7e41c982f
BLAKE2b-256 cf6ce04afa19bb29b06534b954a0181caf63a56a62b21bcd69af659422e7ba1b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c503b475dec76f3925562cabd10845bee1deeed637a4734c3a3338ffc1aa87a4
MD5 ffc9efb1eb46b4d45740c25a34ed6c08
BLAKE2b-256 5488fdb1f7729c72dd046d95a7de5ec59a6a658da07af99f4e3150c34dec5090

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4425517c7ef8490f4ad13a29b50eb4bb76c0794dce6c476945463d7c88e461f4
MD5 32c989f1302d9a9d94b1ba5870e6be0b
BLAKE2b-256 c26a1c52a39abd03ea0e2b3b764761204a8ae9bf4a15ce8dd17f4bddc79f1bf4

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7aff15e9db4d7854190f2acd3c99209ff0dfe7dad8a220b5004338f5bc22a456
MD5 848fc736a88df002e92cb7fe6d93dbfd
BLAKE2b-256 7c49740a1e57802f2be722e6ed2d870daa97147ccea30edc1a141aa6e4877e58

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a33c97f894cff9a897f677ec6f3e2fbb1eee99fb03ffee6c8e74089a360f969
MD5 3b562408ab2eb828d6dcc8d529adfe7b
BLAKE2b-256 4f32759333952698fd2479485c23a86eaf9385c02b914ccb9b6e0d731a024489

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80a2195d1eb5282116dda676c9466c337442d5e85a2abb30fe900bd7843097ba
MD5 bfe492464a19a2aff8affb6af6940255
BLAKE2b-256 7c6d8415ac03f05c0a5121e175a3b351321de81157702d353feb63034fc08909

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32a5b85fb21340c7bf4113a9385adb20c556b3710cd2b33c4c2b3671830afddc
MD5 dbb57e125c8c3fdce5148dfb755ad8f3
BLAKE2b-256 2504ddb959365eb95cdca60b4abd606dc57b25378d30e68b65253595af81c467

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b6ed740263ed837fc4461dfa1d76c54c3ff4fce7acf3682f85a571bfa487046
MD5 50d8a1898f3f01f6072643dbd00b11c3
BLAKE2b-256 081557ac24ca23f7b8d72aff522d343f7a54f4c28e08be78d6c3df64235468f7

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fd30fcef214b6e28663bd3ae7cfe344912b34e74e8f37010ac633c27441468e
MD5 0769afe469af7a2eddfb212c311ba807
BLAKE2b-256 0347beab8471a5e5a74c60f5f1f6f54d800902e94748efa2898dadd4e8251b7d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 59a333b29336002389452cd56bba8b1dc5ec0e212f2d7d5fd1d7495d329a01a8
MD5 09da0342872400a47cdab7c988fa6928
BLAKE2b-256 b9fc6db778a247150eaa0ad9343967693e115791541a987a0ea7d8c89327f2c7

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e52ad595106e552000b1a7dcbdef8df2e311e320a921626ce2e0b13b5b21dedc
MD5 7ff640a87ebb8c444eaa7d2e7d9f6d9c
BLAKE2b-256 00de5eb8819d25a8ab230cff6019a554565018c948ef59eb5a4f163487eeaa99

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f0bb538771c7bdd41c83b7d4ccac7ce51fd53685f3ff2128b6b150cdf550ef2
MD5 eefbe2cce73057455f1e64905f1217fe
BLAKE2b-256 127d4dce88483301ed379e9c6432414190a4552d2d1c8f467e5f7e27d8cf733b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eb8f6cce7281cbb3e3a11b6c981988d98661f45cbd8a805348d10592b1fba5c
MD5 acd8b1de769ac2c3e81d32c8b383b995
BLAKE2b-256 e1b6316a996b8c06779e2b9c5b673c80056452f37c2b03100986cc3d3c29bb73

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20f3b6112967a14ffbfbd55bda9ebf683ff2591695ce60dc46e2df4d505e556b
MD5 3c64ebae3694e9e1341862d5f0780736
BLAKE2b-256 ceca0a985dfac32e177cc518c1a26d4485015086b96d44706e2bedf455e21dbc

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4910de24a40e11c042169b6c704c01ee69017d6b2ba987774b28d30046c560da
MD5 e28e13594c29d48827c020cc1af9c54b
BLAKE2b-256 99c867dcd175b1814aa7a0072d3471a56a38a1e99e1ec37f9a384fe3b2c32140

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c6aa2c14e87cdc4f617bedd79c4bf50a5cfcc225c30a6e03eddac31224c5e0d2
MD5 c6a63a4242629fe0282e77b79e044b8b
BLAKE2b-256 ab0bcf900f8ec24b1897afdbefcad14e70f1c277b9ddb47397bd227e700273bd

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a7d07be15fe69fe4027147bcc885fb6377813ced222770f6ef84a36b9eea17aa
MD5 11f51b2c772e28ebba9ca701b8f1e1d2
BLAKE2b-256 b6dfb3a358f691d8c60b6e6632b383676871c4fb1c703baead2ae8248764bc78

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8871fa6edcdebad41a988c08ccf769b8626a160c43b569029e326fdc05bc088d
MD5 d409bd43d296da09caab06ff7721c921
BLAKE2b-256 9a1f77f41fda787e39873714997f2c99397161282bdbc5e9158650c5eb8934c5

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b47913aab021458fd09130d99f318b474716df55ffd628a9bff3e4876a8097d
MD5 4edd49dda8cd1fdfa702e544e639cc1b
BLAKE2b-256 93207c1912d578790e3e1fb8d758dd2e29a068c9bc516f8bfae535103de2fa88

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 264028ca0fc71030069a168435e9f038acf489faf43de0f13ccec98c0330f5a1
MD5 0c64a2a192fab7feabb12849e44940c0
BLAKE2b-256 013b0c7682b3b6fcac69e0071b6c0cb0a2eace9c9b63bc626ee9b18ee10437a2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55af3f6be42da291ce9d06ccd3de170127f94f7c2e1231317b748ff32fdfc63c
MD5 e4a7b028fde40a7421db4f5e594dd1a2
BLAKE2b-256 157fa21e22628c2b7c1235388219390baebdbb85f1405e361dc270f5b56a5729

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e3261c5965cac9994f1052c81839a32e2f38442865e1362f830d8bce4dd1aef
MD5 b787a5408add7905266c52a6dff0d01b
BLAKE2b-256 75d3eac4684d61a4bf9d3b58a3c2a48c40edeef60b6f56f6b03f0f6daa77575d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc53441c6eb2c28772f44a6f1ccaa23804e5fbfd70c9198b6beeb050c52edf01
MD5 714f31ac680b76b1a4d08c4bd676fb6d
BLAKE2b-256 b1b4c9821f872ef5897f35fe7851de0e1c6cdcad15c5480cc2d47ef4366ab022

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb3ca835b699e87ba9af61af5b9c0e3df4d47a712fdca81bd6e53fa3816a6de6
MD5 73259159c19916405ec80e39b3b4857f
BLAKE2b-256 88b111b7b8c88de9becd4203b014aca602c0de4fdfbf449eec45848426828ef4

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f03f7ad1a208e8779c0950827c96ab69466715d3525968b0ab007913f55e61f
MD5 a7fcfdc4603eb9c9faf6bfa0894ba5c5
BLAKE2b-256 d55801c31914d517414e692adb04928b629bc061829134a892c81f95e15dd86d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c5f73ff6ff0ac3b0bec15df9ab999acea5b2390cfe5cab739a120f3eb75c751f
MD5 a1d182c39343fce0f93bf027793495bb
BLAKE2b-256 1fbfe5dd62d3f9988cd1ac5d7e59afb900ae434979fe9307a4a34436bb990f6a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a034d1c92f1b913ae40816d8c1428fa6a1f220b964e195edc9b82b67f46ebf81
MD5 c1d76f802169ea4256ecb553b3b27b8b
BLAKE2b-256 aaee3c7a4b315f32f74aae817666c27b813c45100fe7f310680c952b7a089c8b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6114efbeb5cd477bd8ebf7929ed588fa2830cac914267b4e3101d86513300148
MD5 ef3c80087905f2652aeb03e972c97974
BLAKE2b-256 03c59701603bb063b01e908ab46548b0dc7f4f2fa9a2ea07e0cd35e9c2d9f1fc

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ff654f0adb3702e6d2b6d5f4be4a148552a2d0735c6c7a9e5c35458fe06c9c7
MD5 53591e36ae73529b4c2894c18ce0dc13
BLAKE2b-256 b010035ac06288ab24e01670836e58b3b6bdde0c6083d737d8f79f018e595875

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfb0709479cb58cfd43f5cea865093052ccdc5cde84b080bf9145b0f556eb62c
MD5 9c9e0890acf105f27a400b68c9b98243
BLAKE2b-256 1283de17a4a48c5a59436603b670785ff9fe42ed99fa74f0c9e68a13c24ccb76

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b38d4f7eaeed28c92320c8599924e4b27aa9ccf82982320a74a17202ed9055d
MD5 814dd62db39c76e0ac32fa68bb7b62b3
BLAKE2b-256 400a48191bda07afbbbd51ae5db8828aaedb5a39d32abddece7c7271d7a383e2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73113b2b60a6aef3a117b146920f9867e51b0dab02521cce9d243cf93fc5f4a3
MD5 7129c741cb56b1d6689ee3db83d4684f
BLAKE2b-256 d34cf57da9bad3d9123d74394b0664c9c5e2c71b9ae51c08a37cbf91e4495638

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b73a6d4968705d1be4ebcf3f7783c1de6b185c6517ebe5b2a8bde54c62a7f4e
MD5 a4111d4278d0592cb6cf3eedb927e1e9
BLAKE2b-256 e2089368ced29770869fc8bfe98595f21ce0708679144ad5a92c929e35652eea

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b575bdcdea16d62806d5eafebb6aac7653a899b9e658a39cbea19f20f76f1fd3
MD5 6a2ada52ddb1afab95087d8023cbfda3
BLAKE2b-256 7ffd6bc6f87b538776353008d5cd0a3ac1ddb5dd5f8c7c379b622b1de339dd72

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96897a30eea528789366cde00a0df98f91d2d12ddc028e8250c9c807e8149e40
MD5 3cd00bf2dfc78a1d34ab670cc4d6a257
BLAKE2b-256 100d4fc5b10208b834cffb85893d2d8861dd03387b0c5d57e002a866a0acbfa1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ceb993754053f5c4c84daf68fc014e44a31d958e5c08e84700a956e5e4bbac07
MD5 297beeafe091a2fe406fdfe05b007a10
BLAKE2b-256 ca68cf0808475724d789dd259c7970278c1c81821bb7840d520ce705682f32b2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dd0ba5984a230a880f596bbc87b74753b60699e0a648cb6ef9ba6bc898fdabf
MD5 e2441d7903e0f9ce95ae80fdebe8f769
BLAKE2b-256 a859d17f1f3fce1da2e6d2e955e785037f42910dcf882f53e6273263a9877a55

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0ff333e830d7d43f58974fed4cf246f491ae3c96ddf419aeb26803ea180ef2d5
MD5 91b4976a8377569e7e3c4f32ddc6c5a6
BLAKE2b-256 d14ee3d05016da8a5f33fdb37ccdade24287bc8513f237ca23595f489ae95a88

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e77647d214d2498639ed78695ef94c5cf28a1a16e33aa9796d93c367421a52b
MD5 e191b1a92c29cb78f8bcb63c4200c564
BLAKE2b-256 fa465508ce42b420615a61e5d0eb1f2b80c925bb871059c27f9928c579e75b1a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7dd035f41531c0cb9aa56fcea617f5e5e576b43dcad5d31286062fe453c5d6c2
MD5 f3ca1b701dbc962dc4a838327d297a78
BLAKE2b-256 be62fbcf6e48ce6c306f97b065bfc38ad0f22d0751d6a59b8bf4fd3f5b84c7c1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52303213d85ff1c4637bfbc4ec8a5aa4a791b00296287a6406002b33d4b20c6a
MD5 af43e71b2f35f5dc8e326da091fa4c26
BLAKE2b-256 94d9974556579740fefa6997147f368bd49a125c8d76792937ccb91f1c82da9e

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4847e6304c138675fd0624119f60904cdf4267edc06770bf8e77449ead93848
MD5 2571cdd144a7e27b36e73fe2cc246e1a
BLAKE2b-256 97a6cf2f0ec683223c832ab06228b19c387147958079f0cc8ff74622f8d29f21

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01ddb0372cdb91e6e01a3b04e2e2276052bcf34b8a37720ec6a746a7f41251ad
MD5 4250911ec242209ce0d8bc291d630260
BLAKE2b-256 a1df439e06930bae427a98de984dcb5b21900adc42470022e4f0d82e8e0b5eab

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9109f14ea76d24b9802c443313c8d05e3d1348deb531face9ff0b6e9b488aded
MD5 f0d19acc08bbdaf0bdba6d61f99a9d30
BLAKE2b-256 0812cdbda454a61333388337ab513af69d51bfc07d05c30a454457219f7a1dd3

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f582d4325500e923e12682b2cc4148ad7916ad4699eaba336eba498444c05fc6
MD5 9a9423018aa1e555056f54aeeee5a08f
BLAKE2b-256 6b4fc8610581fcc3c45f624f10b5303eb4863d06544cb7e88f92778de47d88b1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54a976158abcaa70c625c69cc68326a5cc3d44f92d44b020380cb7a81fbc9d35
MD5 d8c818f8c00a3d0aa8277baddd815a5d
BLAKE2b-256 c7368b1323c8fd0ab0308f00797464e228b1c240c7cec9f82ff974a0949c31c5

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67c5235d9acf0598e382f366d980b70f40cb6b7a6b8694a66ed31a5a6a159388
MD5 1f7f2b4e7e27098b19722b23381370b1
BLAKE2b-256 f7bb5b9e304973a6623585387960137d7f304a249f425c50c6afeb9605e1aefc

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8da5f4d4979d1054ea07a1a4a8d00780d4e19ad7c5832fbe1ffd7bd27abf6554
MD5 92bab72a2fea2766f8c1b300c3ce214e
BLAKE2b-256 d5e916186234a2ff4c6f3c7e58539e4cfcb25aa16e674e3104a00ef9361c0ac9

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72606c66ff2bba6e409100e4d2ef4b8d9cd4105e9406e78f835da65a17b101eb
MD5 694273b76daf277bab20b02d1164cdf0
BLAKE2b-256 866324720bfe9524fc8ae76568f3239038c9d89481fafcb8fa98915d2611bcd3

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e5c4b7a12ac0da151b92d9830fb1f95e1906ae6ceec3e8ddff8c1b7f16b02734
MD5 57ce9acb6dfe1dd7c379416bf6d13d64
BLAKE2b-256 a837da47eb80d448ac88915ad9da5810265fb98c5adfb5ce19fc2d9fda0e5df1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cfd9345cf2e6871a31400f619508d1cdd4a8c970ac3aadabbdc87779aec15a76
MD5 1dd5318aff130365d4b0c361c20492cb
BLAKE2b-256 d780d6be91aa8aeb5760f136221cdc19fc7f12f9cbcbd0181fe3b6d7b333925c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f35411ba3339109fb299b0d4c2563e7b8b0650320b26deb5d4b8b8832279bf61
MD5 1273725505af710366c5044487d67fc2
BLAKE2b-256 6e8b4fde30c1f2aec248b0d9ce7d37cb897fa5c552d2a7697f170824ebb102c6

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1f5fa0b06cfc2b18592c7879f3ec81fbcf073796ee36cef68ba9af687553e08
MD5 5def72bb4028b90a397655407e849c8c
BLAKE2b-256 2fa656cf7904bfbe4215fbfdd417520514f2831c579cc1d3f09f8e491ad4414d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a91eba0d74b2a31a54329b229effbb08f190c1b54fa03d7cb60fab4f5e14e47
MD5 164131c2108e8a1060bbdd419ed99757
BLAKE2b-256 c46b318cf3390159725f122df77478e2ff33697f0b28daefdac95377dcb56b3a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75762a4bfd1fc651753bbda533944481ee2f8f695afb482718150c04cf13440a
MD5 975c172d5a100cf95719a71981ece7ae
BLAKE2b-256 c5358fb6c74e9e63ca42a0de3194c13391778c97c5c0e1db3a28da1e145d5fb7

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f93f21daecf7b072afcdf63882b6d76e936cd10de184be054b0289bb296f9b9f
MD5 ee9797dcdd3b958b062693b892213a0a
BLAKE2b-256 6af17b8edc405a24e0144484fca7758ef2dcb4fbd225c59bddcd34674a3d1324

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2699639d94d7d646f758930000f4ecde1c7615f60b2427ff80c222df54a4157f
MD5 5375f05e3011210c6cf54b31f68fb10d
BLAKE2b-256 6f62cbbd2537b1741ded706a56fd37919a711c62d0e459a8de564980d134e4b1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c734b8af2fafe587746f66d1853cde07f724f48edce02383d96419a74357ac41
MD5 ee8c33481f0928d8480a26008678f1f2
BLAKE2b-256 4497d74e6ce437b3348476ce162e5f0cbe4969f161e15743f00b6be00d2d3e45

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b3924f0dff0c95a742554e41aa76df1d102ddf20a9eeeab72db9740aaebfb05
MD5 b99bc30bb06f7309a812f1a266427613
BLAKE2b-256 56c36a3f918f1457d6cbfdb30e826e8f5a6e35929f49dabb274a29f5d0813e05

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef15481860a38424c5c8b60b5415a1d06e08776c130efd74c090c5c4eccfdee8
MD5 7d4757fbf59a085ab70d0f60eff0f41e
BLAKE2b-256 c726ddd2af6f764367f0d4f8c2ee440c4a7cce26ba0a01fbebb9df8b98074096

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf2e6a4e9991a69447dda6053e61b09d75918128737855dfc7d22402cfb22bbb
MD5 4d01d8dee41bff89b9f6944d8cf8760f
BLAKE2b-256 563c95d632bafc48b94929e46f6cf8cd7c2e36786a4fe8a1185b79d5d8166c2c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6b9d4a63580a3ebbed40b33e296e5d722a14614f886f84f05f937571af57b5c9
MD5 47eb6e20527386e93febcffbc2c82e77
BLAKE2b-256 5854a2c3b0771686e5905fdca3d66010c2054610f3865412069542e1aa9ed1a4

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ff30c93f5a3d8891b740cde13f9ae54abc8298214e9b7bd6e2428b68ac1306cf
MD5 ea758721545d9a8872b522a5c3027aba
BLAKE2b-256 875caa9a21168e37b5b9fbbfd19849cc85808dce6b4a6723e5fc79414e3a6cde

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e455900920ecc9f7bb82459cd51c85173844e671a23cf8c3dd21b80829a62851
MD5 9fb7c941caf4852ac89caed817aca16d
BLAKE2b-256 f885914e05718c8056bf7fed33163a5e194850d44bb033930e0454e5612b7220

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d8312f82fa54821cdf686c6dd09fc1bca6ce378e9ce2af98ee0f80c8d48a172
MD5 c573d231a5c3402473235065287c0449
BLAKE2b-256 e0fd3746f296010aad93aba42a597a31f1765339bbf20c8f9e651ac0cf0fbef1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bdd52acfc909d48d9e61c825bc93e5a5cc5837deafdd6ebf499e0da34c3dc187
MD5 38850b726dc4217a94501fa02e69e08e
BLAKE2b-256 345df42197a1dd3d5c1d29519fb6c4a82d042606b39fd678e478341abca3cb0a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6790f0f678bd05462104b209b903dbebad03d0719f39c4c2c22f660136ab171d
MD5 a19cb66d23d4f7d1ea1f497a2f402b1d
BLAKE2b-256 85924a7cd36d4efda5c89cd9546042f72165dd95eb481200b34d598cfc9c59de

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 323bc0df27d4272721865682169ae7e474aafea58cdb2adfdde1fb943e0b10b3
MD5 522f51b9def46394ebf1bf058d842de5
BLAKE2b-256 109b16fc8e4881426f4f7f79c9c186c215faf448d215a2fda0dd1e42539a1bdb

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bc6838915b5978b08e6d2193f06e4ef29d7b4959e7391c3bf5041188b851d6d
MD5 4a6b7286dd56ba73adbab0c48f4a8213
BLAKE2b-256 657f38150ed71793d82e8986a68c515e5a3e710b6336149ae9aef94b04bc3d2a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 027bb16fef94c84c2f23aedc22afc37ea79ffaada8808fa4b5321a14c10fcc34
MD5 ce5ceb1263a6c2d293bda55e6803afb5
BLAKE2b-256 c12e501abb513d34aa5d5ee42e4c794e1f4c88d50d82ab5f032294381e032507

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a90591a054bb666ac23a8741aaaaffed47972dab71efb31479f7a65c1015211
MD5 418feaf0be43c127328a0996d0b9602f
BLAKE2b-256 4315298bca5851bce7e5c5605cf36957637ec6ef48dba5ab691eca2fa7637058

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 427685610d941c2403beb73a439b0c28b34a1b82cd156081fa69886b7c50a4e6
MD5 0446947bda1517c09d7decffd57c658c
BLAKE2b-256 ce63dbf4e9f74dd3152f82494df430c9d49d4fc9b4a6fb43c5b5b1cac849b3a4

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64da48f708fb1512ae64963d22347444f67bd03416e2f4fd971a86751ccd159a
MD5 0b2e0c96dd91d8a39e778789ac3d88d1
BLAKE2b-256 55d0d726d6291d9e39b16afd8bb10a91fb08fc064e44bd8bb93e8c0e55428768

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 80cee6cf10a2abab32e4936e49ee8b4684a67580e279f0f71e596d2771d81fdd
MD5 80ee1cadbeafac6c4a5edd6eb05d04a3
BLAKE2b-256 556deb9993fdabb94c123897da2479314fb7be13d8f4ad85420533d34051deb1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1293f3b00dece4566969400ef27187c7c5c04950068ba9e36cff3c958c0dda31
MD5 9e0aabb26bc03f7a61bccaa6bb88d403
BLAKE2b-256 f3c4aaff39ac50cee46dce61702c364124bfc0a1600180c5c6b4d18f03083018

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 f1ba9b32751ce17990d1fa9a9658274a2ea9b7fc266fa01e6dc6197efed89c61
MD5 4eb5527d79793280e537e30d6a4886c2
BLAKE2b-256 1c6bb568a52210fc983366118f455dc2fd9e0613d1675c878d5c5e505ffa6d47

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54b9e99020313423d93d21500d5ae0a6d52b8d390ac6d896dd6eaae9ee8a6f46
MD5 798315dff72f956f3795b9bbfbaa1358
BLAKE2b-256 a93bcd14137d3720eaa25dc72d0d33a9f08f0a072472ae409818d316360dd423

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 974ac5e803ddea64b2f9f3cc6e241df02ad5a0207e5971caf1b06c3f34482b8e
MD5 9ec6df24e311a883822d15e9ac5b8d37
BLAKE2b-256 eb3e30ae6c9e351332510c200aff2dadb6108b7aba1cce0ad9131f412e6fd100

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a513d23b9406bdd04d23af18acf653122a0a7a413ef9c4a5ca876a4eff2128c
MD5 8b9f9f905b0c35b71f06c953d717996b
BLAKE2b-256 61465cab33fd18ffda5b0f9047b048408b57bc388dacadfcc8aaca421ac6c788

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5528ca883e2e44836f6703c9b6d105622e18129b3c799828ee8908cfc4d7ec67
MD5 fedfe7be179dfab1fc1250d77e73a407
BLAKE2b-256 c14c280ebf544e1284ac13817cc0bb90f8e439361cf2f97fd25ca02379c6438c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e588bc80447b8b85b616bf454c28eb11418e396c4d6de61668f1c801db2f9d43
MD5 35ce15cf20ab6adc19a75ac0e14fbaf6
BLAKE2b-256 9f6c639e3314c347f4403d5bb1ac482cb76971bb822b0ca1b718c01887efff36

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3786264c4d9b0342054089f9a4f7b438cdf7aaf851af0f62b729e7fa1a7562f2
MD5 46100716066b6826c8dcbfd83faa9bbe
BLAKE2b-256 ae868b052c40ac7536305e9168cda87caa66487f030ec90589dc4ac53377dd0f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2afceb92b48fc8d13ddc60df16cc996c458feba47191c7074260766eb3f1e362
MD5 e1e7594f90339cca93dac9b58917551e
BLAKE2b-256 dc4d384afa7ed0f28dd220786367a1e5ccfe32696fd206c6335c79956789626d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ae094ff896f2a0be26802b70df826d6a19ea6d814d17ffbebd7850bd7066d83
MD5 85e7d600490fc2883e6af4668a863007
BLAKE2b-256 e85da700d6eb9a9e712e0c5b932cee62b65d6eb9444f9d3faa608babb1a6f431

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200cfd5e0976faf7061571263a56d37ecf8750b73b9657fe311fb294cf727fec
MD5 799372cba5c36d8c3c483ae1ad46084f
BLAKE2b-256 444055c17ff3418e150ec3b943df225c8079e2142a42e4f9d7b32c5ab02aea20

See more details on using hashes here.

File details

Details for the file safetensors-0.4.1rc1-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.1rc1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 177bdc5bed000fa7c8d00cbb96f023a6ca7f775d64318a419b8f2ed822f70a96
MD5 40d1b5c576d9caa937ea412bd839b110
BLAKE2b-256 dcb7fbe1e2d73b4b63250d9abfa4aa92f53ecb4a0a87f46db1f4b349b488df54

See more details on using hashes here.

Supported by

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