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.2rc0.tar.gz (67.8 kB view details)

Uploaded Source

Built Distributions

safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (394.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (425.8 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (394.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (426.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (394.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (425.8 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (427.4 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

safetensors-0.4.2rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp313-cp313-macosx_11_0_arm64.whl (393.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp313-cp313-macosx_10_12_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp312-none-win_amd64.whl (271.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

safetensors-0.4.2rc0-cp312-none-win32.whl (265.6 kB view details)

Uploaded CPython 3.12 Windows x86

safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp312-cp312-macosx_11_0_arm64.whl (393.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp312-cp312-macosx_10_12_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp311-none-win_amd64.whl (269.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

safetensors-0.4.2rc0-cp311-none-win32.whl (264.2 kB view details)

Uploaded CPython 3.11 Windows x86

safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp311-cp311-macosx_11_0_arm64.whl (393.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp311-cp311-macosx_10_12_x86_64.whl (426.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp310-none-win_amd64.whl (269.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

safetensors-0.4.2rc0-cp310-none-win32.whl (264.1 kB view details)

Uploaded CPython 3.10 Windows x86

safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp310-cp310-macosx_11_0_arm64.whl (393.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp310-cp310-macosx_10_12_x86_64.whl (426.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp39-none-win_amd64.whl (269.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

safetensors-0.4.2rc0-cp39-none-win32.whl (264.2 kB view details)

Uploaded CPython 3.9 Windows x86

safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp39-cp39-macosx_11_0_arm64.whl (395.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp39-cp39-macosx_10_12_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp38-none-win_amd64.whl (268.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

safetensors-0.4.2rc0-cp38-none-win32.whl (263.4 kB view details)

Uploaded CPython 3.8 Windows x86

safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp38-cp38-macosx_11_0_arm64.whl (393.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp38-cp38-macosx_10_12_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

safetensors-0.4.2rc0-cp37-none-win_amd64.whl (268.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

safetensors-0.4.2rc0-cp37-none-win32.whl (263.3 kB view details)

Uploaded CPython 3.7 Windows x86

safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

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

safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

safetensors-0.4.2rc0-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.2rc0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

safetensors-0.4.2rc0-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.2rc0-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.2rc0-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.2rc0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

safetensors-0.4.2rc0-cp37-cp37m-macosx_11_0_arm64.whl (393.8 kB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

safetensors-0.4.2rc0-cp37-cp37m-macosx_10_12_x86_64.whl (426.6 kB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

Details for the file safetensors-0.4.2rc0.tar.gz.

File metadata

  • Download URL: safetensors-0.4.2rc0.tar.gz
  • Upload date:
  • Size: 67.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for safetensors-0.4.2rc0.tar.gz
Algorithm Hash digest
SHA256 d971be1de500dd6001af6d31adc576c5df115bbc57ca0765b449937a0642381b
MD5 9b23aea358039776a074a1ccd3cc7d80
BLAKE2b-256 350b5169b0b1f5d7fecfbbac946df7dd70b5504bf7fbd4d4c368641503f4829c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e45358cb8abf1de91ff780c55f7cbfee6a9a98008f3de96e8dcf95d9edf1367
MD5 d3001fd8bc8240f72496e77a11e2e880
BLAKE2b-256 25e165477850f7743de7fe7cbf217ecff4128fec601e346b9602e198eb825f6b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 476fba9c0924834d38123b4c72b94b8938c459719526e912438f960c58f245c7
MD5 e20a3a6b5c8169917d4f27c1615595aa
BLAKE2b-256 cf79a98adb8ce7b1f0830a44199098aa3c990d32aa149b5454f9877d8c3b1826

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bd278574a16eb6d6d2c8795aa75d3daaeee7f5c8974881e37e4d0af31d8e6f6
MD5 6e41db0610354205138442a8ecfd29a2
BLAKE2b-256 2906dbe370c9a41e4f4a38e39917de6b040b86ce8b6ee1336cebad9258d7c08b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81b6ab04d1a68de6003fb39b96763f2d71614197ba3097279e54baafe2b21603
MD5 95a6da87b457739848bfef5de74a06eb
BLAKE2b-256 46d98b10ad2e0de9bd3e28d467e5839d5ca0ba33d1d67e0821ffe28664e32a3c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2252b6cdb9e6105ef7dac0aa76aad3cbb142dac95cd7fa8878bbf8c21547388a
MD5 876568dea46c56e3267498b60937b85d
BLAKE2b-256 c0b9c8a198fd462dd4969b42995afc173b05bde1a43633f64ca5b5a798ee5291

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 542d00d8d2a219625efa83d006053063ef01ed8dc81d9e16da5a1513434b6497
MD5 0836947449ff8e00cb80db86bb5132be
BLAKE2b-256 1fe6a03617e6963592b00a568b9d05243bacb92485034252862f6e5250d693eb

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c90b618bca8867bf353a8e31814e45192f3034de7699f21bc2e0cedaddcd578
MD5 d673eb1be8fa1cc4a91f513ab8a1f172
BLAKE2b-256 0ddfa0499f4029d29031534b6768ca9592716e02999888d16ee4e1f0460e0a18

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0ca9bf3cf2c33b70157583d4187295545f4a5e5999f7c1d8dc4f479a3a3b807
MD5 ea8de261dfc3049f54b39034955c0339
BLAKE2b-256 2d0261fadf85c69e361ee637edc8653816a5d7065c13866f2b04314814484f7b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 82dfd8003dee1086b53de5f997ba018ecd833439cb11613e9026f1e01c09c02e
MD5 69965f5a73089403320a8e0f6591b31f
BLAKE2b-256 83a87e30b77a33e22b7c721efe0e837b3bf2245a0e6df1aa070fcb68bb136e80

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43c46a04dc4d2832e18dfa69618e954d4d3e6908b116a973d4079e750edd4630
MD5 e3f0a8d3c758dc142db42c828e3fe004
BLAKE2b-256 9b54ecbe42e9427c1b9c6c94448152d0ba569de1513f1db451730bc41aff97e8

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41d8f0eac08a6073d2277debc4effe8c0bda8ffb190826f78d225b804d11ae95
MD5 25895f06026423498cd4461450f6d57f
BLAKE2b-256 fd271c968cd2f58eacc9519bf3dea80c83dd56242f5d55a0a99c5e1eb82b78f0

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b25c583624dcc17b30dd3840c998d3d5ce08ea0b493eb6dd3dd1e23ba58cf467
MD5 dd27c158c8f1eccc5fbd8c5e5f169bcb
BLAKE2b-256 ae959469e7338dbdb5fb35dfaf825af5a0166ccc3760e0007a5805329d31312f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2075bc149d8206a05a6d72f5cea9b4b2271fbd090b45428b986b9aff408d7217
MD5 0c482aaf977f454eeb1d5e946ec26264
BLAKE2b-256 d87680e381462b8f34d605e485b519af8b2dcbf41ac8aa8d63beb79923bf9ad3

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23cb88abe9666b4ef93169cb0ae58b2b0a61feebc1804a61d109001903ca0cd6
MD5 348a18c7ae49090ebd29a8792887d018
BLAKE2b-256 9a5ec4011a90b8a2c344e8b665858e64741a2216bb6b3863f17cd75adba71f51

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b3a0cbab87d439786a98b66b6baf231c0740db30308a241923f0fa21017858d
MD5 f0e9612112135cba160a6dc29680ae74
BLAKE2b-256 aa960b094cd034a77256fc1e3a58ea9c899b262ff22f2da632502cc2ba55352d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e30eff612ba533312f44ac9752c12c1b24609cd84d05644d07bbfd0f440f5118
MD5 fe9d9b55e43db53f82feb13ec7d5ff45
BLAKE2b-256 d5bf5b83b1555241727790876da34e631a9f4c4307010556b795de361ab0f2cd

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d863676b966408f71c27bd359e9aa45bb14028730f2cfa20dadb3c44f66b026
MD5 103c4a36ce6a3ecfe99c689d39e2e587
BLAKE2b-256 f1f7808a073790525715f9fb98762498ce0763a1575aaacf4398fbd0d85ff56d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9685451b6865050c11cd3791986e21ea42edd18dae1474b6e5bf39b25e762ad
MD5 e36f3afca3291fbf3da134ef98fb201a
BLAKE2b-256 47742f5830df7207d36c913500e1d67006fcae5935ef2b3916adc7f7a2f069a9

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 18eeb11c718e20a6b9d09fd6b66c6a1e43390fdae897a8349dfa6be8093d1248
MD5 442b05e09a51d5b2dd4c0e9f309a45ce
BLAKE2b-256 2305ac2863c6a7aa2330f2a7e83722314bde86cb0834d9d3dda59b6b5e7dee59

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637af82092a03eedf5dbf55b670b5b2e12e322d2a403cd7c0ecdbb822b3ffd95
MD5 8da9bc374db3e0a4ea7873773ee16fa6
BLAKE2b-256 157be8909770fb612b16e5c6d447bc66e09be5316b703b8be9869295855fb311

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93d16eb70b5ab47687a5a6c1f40a0eaa1e9a1029a8d789f9b8b9bca785c78e15
MD5 fb7a73c98713f95ea43c9393f6c19d43
BLAKE2b-256 cefc9efdd9174c0c6b3321f8d7e10295ed864e67bb46815c7694b440ad839626

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3579668a8146fac4a7c3d04aae338929bf6d57ed989a92d64a19a4e505f037af
MD5 62dcc6a56f7023d5319a4fd40ece49b8
BLAKE2b-256 5ba822ac3add12fa6b91696ffc260bead5250ed650e1ec619502da73fa2e1766

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69b951f0b8f63590e9b27f81d930315bc47717898890f69cf60aa04ef14d470c
MD5 fa95bc8416f73b7a13e87707c888af34
BLAKE2b-256 b847cd62ce6930a3479701a66b89c94db3b8d23b610d92d4d47c693badac16d2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acc5e446d7318aff145fe615cb1c377f0037b27a7f6d1daffad1668a220d71d0
MD5 380e82380f090e3319638be180979e5a
BLAKE2b-256 c32db09d926a2827540e9de73e2faf9c6d2370cd17df10520c5fcc7b9625a7e0

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d44605eefc055ed58126822367fe00d0faa4ec9fe8d94e820b83ee943372dba
MD5 303e9cbea559c7d1d8b804abca38bfc0
BLAKE2b-256 f11317477860de1cac3e465dd19e32ffba28b4ba63c94a083c47c4c0e92b9f2a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36f809ace9dc17acf055147ebe30ae52c8c816815984a9911d5f00f1152fa3e4
MD5 88c2581ac951cbdce70c3425e52f7593
BLAKE2b-256 62feba736353de4d5d346b30c73fd139a23d1749ac5d26a340a00890182a5f35

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62a4c8cfd30b1b7b66e1e53590d980a2e4cb4802005a13f93625746c5bba4d42
MD5 965b0bbdbdd875c94c0a8bd6b16d5ae9
BLAKE2b-256 68dc715071388c0ec0a2df210a9d0de475c7e5208b336dea5fb40c1af3897ffd

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e89e76345c85917425bdbfecd5348c8bbb07d5a83c884cfdd79c7e90b257cb5b
MD5 07a1f539e355f4be638e9b18f681d5a1
BLAKE2b-256 f99f59d4d2d469b6d4ae51df3fdb1ee6ab5004957110161222dcc7f4456a5525

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7c44db17a015d3619d5140f04390bd12a3e70ddcb8d6ebc85f03d16dd4b5791
MD5 6d06a80e506a31d950d6f6e41390a648
BLAKE2b-256 abf3ea3f5bdd42531f2248872c7d4872c8872c83d0ba7751ddfcf64f11fdee2c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0704582c4f3b8a7d19a5e99f9fec715ab4ec70bc05445a96d72927363c35a38
MD5 0e2a4130a20e8bb907bc8907f1678a99
BLAKE2b-256 835d21b222c52986a5f8d31049abf6058b804fe6806fe6b711fb9375b61cab87

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 152506abb11fc5667a9adfec45ea4f437b069ebfd4f34874246281405f0e50a0
MD5 97974137e316bcb134fa0722838242d6
BLAKE2b-256 14118bc11eab86e23a4807ee9561515ddb933fa89bd827ab46b280fa45d8fb44

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b1b5f4e0d048ad80655a8eed27853f21a7f0bb662b9813f153740ae0a6109ea
MD5 bc76e67e48d1bfce73944f0663b48e86
BLAKE2b-256 b18663f8ad501e83eeeeed104d784d868c41e3d0309742ddfc315d4e03f6350f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ef62ed93bf7020960f074ddaf384a4dbc1547f62a01763f151c6688c95550a9
MD5 a04dff2e9425510f6f075197eacb7cdb
BLAKE2b-256 2964c338c3a1afa70220bae7aafc51bbbd7ba6e9bda11950b1158c4a6a30969a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b726a127af558dbf3597b0c26ff3eaf228e2cdcc59d446fc5c01c968b76dac2
MD5 fb939f06278d437873eb7d58563040b2
BLAKE2b-256 a97f91fc9791d865dc895180855158fcec90d1ad02087a9369caf63bf94e1f74

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93d1202b7002cffc62c1822da71320df1533dbc4b7976c01caa1b2815e95d8f4
MD5 f8d9bf8a9d1db01494ca610dcf23779a
BLAKE2b-256 9ea3a0d6674ed0a950949532f22f7f8b3a63cc48bdaf22b4cf4d82305d55b9d7

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb18d4151a0c542401a7ebfca84b23cde023c03f55aeca7404055390720e7dc5
MD5 eda2fcb4e7ce63265c1c358900f9794b
BLAKE2b-256 741649ef43ead240477727872fba1eb9066cf38e8f32ac3a60eab83ce1b74e58

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea9304b1373b75d01a880515250b940bfabbbf35ac228888b6a5ddafb981fdee
MD5 aee0e534e9e4e857ed0fcf57745f48be
BLAKE2b-256 23f71a453cd73c86849f1882e85830339b82e0ba26eef1fa976d50a478109d2d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d0ded532cb19d2ca3502e28066d3cc1bf342abf67b464e4849ed4bdf37286a97
MD5 03dfefa0d06625eae19b690f8c3f30c2
BLAKE2b-256 82a275172f9242a8c65d522c39d7c4d1f723b279f035592bb89a4718ed94cb72

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 901bb12e835cd91cc50deaf977ddc81cbb9d4263a24e02c2d2282df90ca1f875
MD5 89499d448b9467210edca556609e0c09
BLAKE2b-256 f6b49a67ba93a8f984d27e7dcaefd4a46cd7e051db48c5cac1777b97086e21c1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cddb4e1ddb811ca333790ce8779d0d61819f494f64c83fa156ce75b19b85b750
MD5 80bb9cb0994b36a470998465a99adea2
BLAKE2b-256 9e513c245ab917205eb52bdd1234e2398a06a50545e65ba4058a84d0de0fba80

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 994dc746cb7ef6d0fafd8584e130a5c73e13723a1e2a96728ad405e7a00d63a1
MD5 a324bbd558e0e4c86e7d2309a65254e1
BLAKE2b-256 c239b6b5c9b364622410369fc60ef60fee418de0d6903fc26178df010cf5286f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40bd7d8aacf195d20789c0bd2b86e071b729347f4b2ab557b56c402a21789ad8
MD5 ddbe7999575b84992131837a8609891b
BLAKE2b-256 4e2c04cf1980c5fbdb59c63a7498237278b28ffd5691282e7650e3f18c209f42

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df60e9db0de5031b53db7f0088027df16d612919c8bb645df2a79bb9eed83a4d
MD5 f46fbfb52780b2ab8e7ae95a950cfbc2
BLAKE2b-256 84394affcd564a2596210c43d0751a8efea5a3dcf5bbde7094909942f60bc363

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8bc9259b60a7dba8967ed3ff6940a270cf79d87aff4ae498cca496c8f6a502a
MD5 ade1a89d4a6154b59528a3d525d85686
BLAKE2b-256 4411dcc31fc13871a861a3074db0d5433f3fda20cdc095755c0185c6949b2348

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb1467f9773e4fb45b90131d703b2d160214798205b7ff672dca863d450c2282
MD5 f385c00264f1c1540ce2328915fb38d3
BLAKE2b-256 def7bd379287daba0a8aa19e1fa1b9040a7a4e991487618201e6192c1b781f62

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc0a1235671751fc38cbb4696592a5112cc428a97bba86f1abde17e16413ec2e
MD5 ce631eda2e91321adecc6da3e6288bc8
BLAKE2b-256 9ef82126d0cb8772603734737102a0056e681d2fb1c2d91c4bde0f76a013207d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b2fc8ef1a7ef0d2e0842e859b93e9c09e072fa07d7871d2db724255b824fa7d
MD5 609afb3437a29af1e3f61c27e4f0465b
BLAKE2b-256 05619f1746cb18168a4d033900e8993eee3b81e167c2786f8158ea2cb55fd3c8

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa241e7d0996530ef816df6e012ed479176601811a57ae04509083507c93d89
MD5 6a1e5aebe81041b5969ccdba3c493906
BLAKE2b-256 691f6c162ea7f8c700141c5a7e0212b7330f09e37fbbf654a0ed654fd8132f74

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdce0044d92d84c9e12f4dbf17f2c051f74c36db0f8707976df56ac48e65cee4
MD5 d23eaf5cabc3353d08b6d1bca3cfc350
BLAKE2b-256 37cb463397f0b3cd6e3e2c6b39b815fe29a14f67b8c2ea2077d1aefb5c1b033c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 42fbcc7bf4ce7b5140264c2611bd41af9823b3e45614f8c81e852acf067cc160
MD5 99e46f3aa1328d24d798c3ac7608b6a7
BLAKE2b-256 092443acf6659ab1d491f9c972329017b4029ec46ccd0ed010db77c4a53bd039

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0b61b67d0324438567be3d848bd522921b5292d5e6a14fac09ef6dc67160741b
MD5 4020820b9a815570e1fefcdd331245ff
BLAKE2b-256 3db7383ada22f53582a64b9bd436487bc0ad81e44c470b2911e6c1be8b5bc57e

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ea920a217af683ec318309f7582d5d2eb4ff1511416d6dbb515a6802f5b28cf
MD5 36d7e93eb961197a543e274704e1ab08
BLAKE2b-256 551f5495692e008152b5e53bd2dc436eb6c31de6e2653dcb3faffb5af2391b26

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b3890975494b160e6cb83eb072aa4d1dc41b8c2e0dbbba9189b044829552bb0
MD5 4ce0779ea675f281cb92bfe42cd7ed21
BLAKE2b-256 85024e2216fb51091a17712abdc899f83e1cc55f12c6663c9b833b5452d76a01

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf5b151a3d73ba3ebac55309bc9aaba96e05c41ab36b54150cb0913d2ea03194
MD5 d3f53306af3cf2f6cf66c304249c9c24
BLAKE2b-256 981cb10147b81b1f967fedceeb4f5021779dd4fe76194e8367858f986e2bf789

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55ffa9ed472df10142c4d8a4fffc22d03eaba5c8b1c92cd2a14e9d91362d4d7f
MD5 3924fce4b0c95f84479012dcabd850c5
BLAKE2b-256 65f54af471723642453522229732b1ad09608ae3eca2c7bb3d5cc9bdf551407f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0ba4b6d4c3c1bd44d4edc212e6ca53fbcb43db15f5647789c079967f5300103
MD5 1a97dbb7966ad9e4e528cb352d30bfdc
BLAKE2b-256 9fe16f4a9620621ae98b094151aa9fec9745363ca9a35842c273efa25708e4e5

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd34dd4fbf7d1daf6279a0c6540f78e7d26193ad69475a4f11b10692c3145039
MD5 a37ff0ef3cf027b0acf2a285d69e7e47
BLAKE2b-256 7eaa3ef86eafd3b25b1edbe4e91e1865a2e0bddd06fdddcccca3b4b1bd185112

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10c074232c04eb3be69184830494f59aa197dff95af4ab71418bca4cd441f565
MD5 2054222bd11f396fb56bd092386ad164
BLAKE2b-256 68a7b3ea757c567ec7e9e676057368c8f6c85a220a381f9b024bc2ab5e9bd08a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8950d5ad71d5049e2fdddf6d4466a1a27d23caf6d978d5c1d9cc2c35cee8d87
MD5 ac66f1f1cda36eabdd3f503ed831e764
BLAKE2b-256 7ce06110c272a392fb34d451911b8ef0405cf75041ce165501dd4a5737fedb4c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d8668a1e1c255d45ab3a31989778308a5f583cd238420f1e3a127df6a40e53
MD5 288bcb3b0b7c83c633f7b0cdc7a2f2d3
BLAKE2b-256 c1a11dce12978eb4b0e54b41097fc7117229e2a8002ed5c0a7cc88de1e282935

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7125a612c0fee6d9cfa9177851d26230ddae9870b04cdfbef4f30a2e2a96ac4f
MD5 1c65d49ada7176644f19700a758012b3
BLAKE2b-256 46255ef0d5ae0c838973cdc612a22ac09d44f16639bb2e64a50b83f89bf3e7f1

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e85d3553b7b51b495dcea9a0256a1b5ee0ab0245fa808b8197c7449d6f580326
MD5 9365f3d7ee0b99e61b815d880fd95af0
BLAKE2b-256 7cfa414fbd51b0b636286ed4b87fe8f453b4e480a7fabf62b0f304223ed13e1c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 bb1e0a21e9d5b6b66432061f7a7f6d83f4dbdb7513bd1b8511fba64c53e1a41a
MD5 820eb078d85c9578dc6881c912461ffd
BLAKE2b-256 f6f1928d386b4adef09c4cc981dbf13a295a281cb50c984d950f1a17967709af

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74b103de4197754a02446bbd7988916b2fa9e8203da1928b1a169058727a53b3
MD5 b7c654e859717d09e116e9710cb52cde
BLAKE2b-256 658023654b35eda6a3ee70c9e113e26cfb5f585500fdd75a7e692eb5d4301092

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eab4cd96864d3095ff62679d0dc80b3456a287c7da17bf789b91c91300fa6521
MD5 beff02ce194df7120b63033e358cccd4
BLAKE2b-256 71e95dc5d4805fd53c57e87130e7b3e1f9ec7d60b39d2217ef97f2e91a7562da

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d07483b13dfa058fa2145f6b7d251b27990125996c54c51a4e7dd57620b465a7
MD5 4ff39bcb6413ad525ccc845082a9e9c1
BLAKE2b-256 ad6d7b38d320199f31923a599454617a02f054852e2b6b2684777d5b18097772

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58bfb7c98bfc1f41b86951a839ca0782b4a52eef58ef00f91ac68addd94f62b3
MD5 46dc1d67f323fb039764bbe42cba0ae2
BLAKE2b-256 51a8c6e38c590271b91f9c0c310660357bbffef202e594f44af92a58bbb08b2f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fb092109ca8762e85e3118f682e51f2062bfb8505e161e04884788e22dfc928
MD5 559bcefcffbe828e31309bf79cde6db6
BLAKE2b-256 7d08b8b9199a8415b27631616395304b80f28450f7eb491b580e4ea59e0b23c5

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14efdc509ffb4736e7d4fc128cd0d4d50cc2aa4aaa316ef762d90b9ece372f43
MD5 2e348db65cb6407325e3df68671286a1
BLAKE2b-256 01401b8cdb2cc94f2eb689433f13ba8f89458ba5a0570492eb668c8b4602d69a

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40a8b2d6b3a7319d4041b8d652e4cf4dc1f0738eeb9280273f985e2ab8cba206
MD5 2237c3fefd23bddf218db94822d25fb3
BLAKE2b-256 c58a29b63b15216da984f86b026483580fa63bb323faef88746976ffcfc1fb30

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d94f5670fde8796167173939a8f5e2a5f10bbb4b008284e713b7076affa1352
MD5 3b4e549e99b2ad73b010c7aaf5e2eafd
BLAKE2b-256 a6c7212330cbeb82e8143888e3d3eac1f3fb0952c06a2b3eeded4f49f83a4c5d

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d8ed80052be16fa70ceefe639aee24c50949cee365adbafa0e77219b2212d5f
MD5 7475d65ae337df533dd86ff6f3170fd6
BLAKE2b-256 8c4df4fc2e344d15a546443ecf20dfac1d6b3e1554ab6e78832a93f37dcf10b6

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 670900cd11da0e0aedfa4483cce94b6fae8cecbcca4627d0af5141aaf0beb8df
MD5 569701fe96f39016f8886e846a9e6705
BLAKE2b-256 cb41c23a82a5c845fa437b322db1ef6f0cead0acc26036cf7a994a18afb40c05

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d8a512f43475e62b035d99830bb93c63ec02c51d607a5e58a33c03185af790b
MD5 8f7aa851377b05d19820836bb09b3066
BLAKE2b-256 999347f03d13e3062007a646977c53a91845e40f38b8f55ccb73e331d2f87185

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d013be733165a4349cd271ab3e7d2a40a4968138b162ac14abc3ef3a0c88864b
MD5 4d4b4fd3bb48a854f9df65f0f0c511bf
BLAKE2b-256 22903747d5b43e23a8e4a3b9fc3320ced61c523d34372ad8a05f5d81b729e747

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2b893eea6df78b3f10e326f37e94b7a90b2ea43e08e5d192f07cac3f267e3616
MD5 f32b520411d3a30c6379da21c61b1f67
BLAKE2b-256 00565c7af75d1afd64a9fff88dedf363dfa972c822f91cf2c76472f8afe4c1e7

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4c13d0275d4c9fdf28f9236dc3ca81c48139d308935bafa54758b3c8c90426f
MD5 1700fd1787d87dbb4f4485c1e02d44a2
BLAKE2b-256 35190f3541358aebf273dbe1a701de63352ae42805c5d65d6390a4718c1ba432

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e35e37b3c907bee59d5a0ff653718754e955fe2a0774d4e9abbc6435b7cad037
MD5 c59431ede81749116bceaa9f7f1f7721
BLAKE2b-256 774fd4e55b4602e615ca4e4ee8e4f8fc906d03a518a10f6d0fdfd6d5d8f9f0bf

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5bd195027835f9180edb39b73986dc1e9c48ba4ac67e66cbdf8d304f6a01a65
MD5 18968002aad53e8c999aa93361840496
BLAKE2b-256 02493fd496bfff6d24bea43c064527ed7c9818ec80d125c8c39c4d3dda365345

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f86eea3ef066244e0b53e01570f2befa477b18e218d6284ac793c565bb0f2ff2
MD5 a7f5528355af58b91c337b8dfb4885fb
BLAKE2b-256 77f6be789d561f54634849f2ed7bd46398076232c522a21b6f9f3934c686e9a4

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33389dbddfea9a2d98473a2953c311f358b8340feb28c3d0e430a60b354cd1d1
MD5 490629f0ce818efc5ef2c1db77fa27e9
BLAKE2b-256 fd023cc552bf8ea04ca8fec147ed4b1c0ce54b7640466695e47b6a86b35501dc

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 770bb7536701ba2f8c06b2f6fe3a7e72c25e86e1cd75e3f37c2ebfc2eb5024ad
MD5 3cb08813f06c8a481a5016425a67e21d
BLAKE2b-256 dda8927305361ea3d69e3d78943ea8cdbea25a9d69489f1092c6c692d87b9e15

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbd37dc848b38fa82d77a3b6ae1f380a3e99fc5ea9cf0169b8da22c61829b6d6
MD5 1bb560b45cc4b511ed41225b7440e2b7
BLAKE2b-256 0b3bacef3decc793056634cc6a7b507044861640c6ee91dc07215beaec377cbe

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39d68239f562dc11e809001c1a8f710f553cd471aa05fc8c625b9e33786decd3
MD5 62d23358964a6d216542e9457c61e52e
BLAKE2b-256 0f2150c7a8b86d7e058ebd0cb694445133bbed47af1d8e244a29036d1a66371f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac91ac7b7f720eb23a49956bbebc619ec0f8e54de6b8a9cf151765384f1da6db
MD5 5749d16974c1fd7f13d4b8b33c2a0746
BLAKE2b-256 b753699edcc5adc67b4646035a11f36e1fa06c49cd7d2743ee96f7ee2253f72f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2713b012a70d7bc678728fc6f40189d71eb24e95828213001ab9335e771bce27
MD5 fd73f94f58a061e676650d7c487f94f5
BLAKE2b-256 7e34dd7aefded13239104444dd084a5be1f5f1d144b8082527af05982dc0ab14

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9a7e2104e16e7fb03b20673efb2016526612b3ce4fa5d6f4979fabe408424718
MD5 6aaa9589504674c4cbfc76f6f2de9f11
BLAKE2b-256 77399af27d93ad786ed4b10c5d065ef0a769988132d87bf7b54eae7b81e9d283

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e82addbc577fa020e462b8b14005e68d85f5bb7418c4814de9934202d30634a
MD5 109d576d4c0eb5cbf242afff7aa8551c
BLAKE2b-256 abbff09f52d6c8f3ca8ff5572f532b2d277baa078fe7db1c79db521ed33576b0

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 073f84a5693ef8b8b6350de112d94e6725b3ab05b30a4f0b76d951441ae95046
MD5 64ad4a732e2c0fdef45b97a7d00b416b
BLAKE2b-256 3813c56ad963327b237dd82d464e4d20744ac6e390b11ff096ca2d6be3dab059

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3a61cf5f82b6fbe8f3e1e58433f52eb9e90917c799db8df5c03d0d0cdd0bc00
MD5 4fd0cdd2be5598c0313ca2ccc767f8c2
BLAKE2b-256 1c2bad50543f0d53fadb952487ecc7f109c3eff0e6edd1e4d20f8f530bd843ea

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63f2fba77f11af5e46ef473351d405128de37efa13b2521c8a6cfd04748265f7
MD5 7b0b3a2b430013428fb912dead426f69
BLAKE2b-256 4242c19b3bed2973642ae38a6fffe99037f0e1fee28b6153de5726e27d4ff3a3

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55b9597ea1b9eecd9958c9b00700ea53d95b2438e855bf807efedfbf02fa01f6
MD5 1d60e6eb9b7f44a558a5b21679a4839d
BLAKE2b-256 53f84bf4c679e61b0bd0e4ae93ddfd6ebc890eb58e355b5fd2a7c9505f49bb4e

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 500c040f7d12244eca51269e7094a2d63c9afca11a2243916c9751bd731bd3a1
MD5 3e78286612c6206e30ac9293f9be8e4f
BLAKE2b-256 c67e02412180adb9dcc77ee74b4cd78f4582e9c3673469c3b1589ab28c0365a8

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57ab659bd06b6a5b024669650b8ed138f1ce2e885fb172b586f0b580d25f925b
MD5 43118065c2133f2f4181e89d9cc617d7
BLAKE2b-256 f0b9a4d20e9bec4d3be19d8382c9cbddcb7b0d9f14f8650691b86c07e51f62e2

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5342810fd5a4190266bd3704db26cd2be5dc2241e341d77f5f42aa34fbd30585
MD5 bf3fbb0c254470c7d7ec9f707e2bee31
BLAKE2b-256 ea7f0886f4b2d7ead83e9a5078bd237c6f4a7fd7f4b40ec29696ddba09965bb9

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d58b85b26fa8b4c1d2c9b0632f630625d72f9ef7866b819f27f14af448b209a
MD5 d3d34a13ddc19c47b88a1ba50c27b5ad
BLAKE2b-256 4c0ef8c35b24d8b8dc4b95cc2d613cf12ce06640963c63916cb44d591b868745

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b822c35409f576fe2ed590ec7127d98420c6526572db33d81cca96f76b0ca7fc
MD5 10172bf402230443d41a62037bfb9882
BLAKE2b-256 0641cf69100ca9b78f1c52c2f02f2793b5dc944fc6a9e3d6e6be61d5b90af73b

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 80457180a487e0b95a93509db8e80cf8a14b9e79658bdd732bcb03217b84b102
MD5 ea13c0bfa8b08a7037c91aa0917fd6f4
BLAKE2b-256 9300680cabcf36f3b4dbf2468c1012e872bd79de6e46c4420c120f56c36ba2ef

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-none-win32.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 30b4312430c300c8cd3a0abce5732a2ef2b52e6bfd932468a57ddabe2bc536c4
MD5 ead937acf4c9480ebea7a2f8b2699f53
BLAKE2b-256 07498390668e90cec4e35add76ec18f0f2546558d19a3a4f69f7116fb48c5175

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42760cc4f34a133c10921ddc5c060399e8d5a979470ed1f282454ed6c54a7fa3
MD5 e47214b1844db3d3e9e1482cd74201a3
BLAKE2b-256 b65c19c713be269c5ec3ddc181a1a15c1100103f08461cdbd16dc58882517c58

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b65df208e87fb68af25306310b07f6bd3a1925d7fd4fd0eee977441fcc5e228a
MD5 e9ea1dc859c85a2e8fd3293e7f5e7d90
BLAKE2b-256 09acb768a8ea2bb42a8d13ad3c010fcb5cc555b743fc59722985a1db4241fd4f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 817f1c858e6b866682dd585933558427c3416c1d69505a132b583805a17211e0
MD5 7a13f46dd9a1a25e5714d5ac820070b3
BLAKE2b-256 a3e98883ad90d5d34b19f624a258f50ecc2589d09c85afbd12b721bfb037f42f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 605ec16493fa9ead09439d75f3d0fbafb88aa0511f1308bedadf6f696ab6379c
MD5 a133b7125085ebb7a7338d22f51c1205
BLAKE2b-256 27a84ae488b3830f1c81de049a08798b4bc521d1c8ab9c287ae63617a7929b79

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c82c7f7e0f4626d7798b5d2b5bcdb79d32d3831dad842a374c76e837d032472a
MD5 86ae6f386b6b3c89fdb4b9169092d302
BLAKE2b-256 5989f924e0fd869a586d0cf5cb6ce09b118a08ed5bf012a464d749329ec9577c

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68dac69ac63222b959654f37d0da776209985db6cda09ed581f5928da0e2e1a8
MD5 8ae2cf34b2bfc24101f1665d3282e457
BLAKE2b-256 3a7bc56e1f10032031ea9e2b883d5665d826f5f7a1a4f1d5aa462f605db5984f

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9b7f66f4c16962f1aa1215e2833c256177c0d8272ea3e66c3d9331db3868762
MD5 122b29e5fe86df53cc93ff7e6af188bd
BLAKE2b-256 b2c3ab69545a73487a37c10a90ee1428d8f1892cbcdd19e2704e66d7e42a5703

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef3a3b8609bcd37fd4cca502da6c1cde13fd6a23b25fdd4283913f40a3ff246e
MD5 272a44b018199d42eaf4b2017dc7fa0e
BLAKE2b-256 cdbb628f4bb639a87a54bf299e280510394b03373e3cc379cdebf42ff10ce927

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 682c0a777f98620ea97fadd89e47e3bd5e4b9ca50f6e37ee7f924f1a6b7d353a
MD5 72a573ca004dd61dc135c23340937c49
BLAKE2b-256 426ae31223664ee952b35c764c2f1e6aff8ca57de64a88c33145ec33a5e393e0

See more details on using hashes here.

File details

Details for the file safetensors-0.4.2rc0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for safetensors-0.4.2rc0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a24d83ae20b55446412a4e0770e74a4a9b5c70aff15189de809685d5a32f682
MD5 4d20b41793506ffb914d3cb06828288a
BLAKE2b-256 deb1004656dbf01d7cc6cffc14f5e888e1533f7da1cbe2eb87c865d094499a44

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