Skip to main content

No project description provided

Project description

Web-RWKV-Py

Python binding for web-rwkv.

Todos

  • Basic V5 inference support
  • Support V4, V5 and V6
  • Batched inference

Usage

  1. Install python and rust.

  2. Install maturin by

    $ pip install maturin
    
  3. Build and install:

    $ maturin develop --release
    
  4. Try using web-rwkv in python:

    import web_rwkv_py as wrp
    
    model = wrp.Model(
       "/path/to/model.st", # model path
       quant=0,             # int8 quantization layers
       quant_nf4=0,         # nf4 quantization layers
    )
    model.clear_state()
    logits = model.run([114, 514])
    

Advanced Usage

  1. Get, clone and load current state:

    logits = model.run([114, 514])
    state = model.back_state(wrp.StateDevice.Gpu)
    # state = model.back_state(wrp.StateDevice.Cpu)
    state_cloned = state.deep_clone()
    
    model.load_state(state_cloned)
    logits = model.run([1919, 810])
    
  2. Return predictions of all tokens (not only the last's):

    logits, state = model.run_full([114, 514, 1919, 810], state=None)
    assert(len(logits) == 4)
    

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

web_rwkv_py-0.2.2.tar.gz (421.4 kB view details)

Uploaded Source

Built Distributions

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-cp312-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

web_rwkv_py-0.2.2-cp312-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.12 Windows x86

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

web_rwkv_py-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

web_rwkv_py-0.2.2-cp311-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

web_rwkv_py-0.2.2-cp311-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.11 Windows x86

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

web_rwkv_py-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

web_rwkv_py-0.2.2-cp310-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

web_rwkv_py-0.2.2-cp310-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

web_rwkv_py-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

web_rwkv_py-0.2.2-cp39-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

web_rwkv_py-0.2.2-cp39-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

web_rwkv_py-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

web_rwkv_py-0.2.2-cp38-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

web_rwkv_py-0.2.2-cp38-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file web_rwkv_py-0.2.2.tar.gz.

File metadata

  • Download URL: web_rwkv_py-0.2.2.tar.gz
  • Upload date:
  • Size: 421.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for web_rwkv_py-0.2.2.tar.gz
Algorithm Hash digest
SHA256 c4ab917378f0816da87a6c1c31db614fadd8b4a21dfd53eb2ff12ccfa59fd2de
MD5 bd3ee945319a180dcb145241e3f084b2
BLAKE2b-256 fb299ca032cd1782242c2675628c84f902080a5cb9612756f92abdd8ed6b80ea

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd9ce3345af63c5bd3a628cac3ae8b88ee76b8a37b5c1a3cbdc8f59296ff6b4d
MD5 dda0cede2736b7991e154f167fbf4bcf
BLAKE2b-256 728b22da6690211d2f819b8786699aadcb5d5258402b77b58351447c31ce92d6

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b9e5bc320376c801ec462e6a8175ba898e122d17f750744a74ddadca3086b51
MD5 f646468a3bc60c63c0ec8172ea2ffb21
BLAKE2b-256 08996785bd2d30792c98a31934804180c6c9af06edd266171719e01b0ec94521

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9783fd4d8eb178b3f83450efe63170d2f5fac3c121909178affdff8995752d7b
MD5 2218452e85b8d1da341edca909c4f3bd
BLAKE2b-256 d6542b3b8e8551cdbc2f1b8d228c6290db293fd4b0da912f0adf177bc3a6fe85

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0233683650ab69ea5a859c8776cc0d73e104dbdef1e3240a982c4e4a619cd5c
MD5 27ae864d483252707a29d5adf4c06e6c
BLAKE2b-256 9ad7935396bab5ac001630efe461923b425950187654964403c13194d9524a63

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c278258fc13e5657a4be60e5cd154df7054a066c92b287f4ff6c18a0a8dcd66
MD5 12a7d42d6e131c75b782110f368c25da
BLAKE2b-256 dcc6ae112e350acf1d0a520bc20820fa7f7d0565e4fa9c16ec4291a3b59fc720

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8cecaa717b9913e15eb6b6294aeac6ac7d051fe7e7bfbe521f725dc5ce407b3
MD5 b7fe1f3053d2401f79d648d341736280
BLAKE2b-256 d33ae5bf629af397cb91221fb9ea32afd1cc1f14edcf31880b041bdc0f0ddb10

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecb7c532717a6f0a376d7920714b2b1193161fcf2372000faa3c4b3ac9233b2b
MD5 d232ffdc513236b688e32ddc978c2026
BLAKE2b-256 dd8b8f58cede46066e7e766f03eb037f56c068c86185ffce352c349f1fdee123

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ecface9c8a7e1d466c11a61de2266b325d08ca0abeb902ff61015904d6c4b74
MD5 2d9ebb1d84f69e6efc9f1a7d673db1e7
BLAKE2b-256 875eadd5cde3298234cba712ae2e85776e67e20af99d55307b953fcdc1ac8f56

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a402d866af142d3a79270d9d1378af0cdc9803a250b07a05c34d69ff6cb94d0f
MD5 a56e5d0b945aa0d9f093b545e9ab7b81
BLAKE2b-256 2c1123a40478e4070242c8492d58f42ed8d8344ae1273b02f29d2efb61210c89

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92b416b3e1d4a13c4b073fd15ef6b0deafddbed71b52afc5ee058765eb59f508
MD5 72aeb481244f59e524d258853f23ac26
BLAKE2b-256 d77a7e7a108b75fc56c5ef7be72df719897095630430a746995087405fac5ef4

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c71f847f82112bd174afac49a67b8d17d23031e0f14fdbef91a76e2cebce6522
MD5 9458a0dc03d89900077e12e531e2e960
BLAKE2b-256 57b5d1bb1890abcafd02114227e013ae0e695fd85abd797e97fe177df78d2931

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85cb9bc5918b63ce21bed3369db783eafb058022289706be074ba04ee1945ad1
MD5 1f15c88cd72624a6bcd1d5cc0bb92108
BLAKE2b-256 9d445f2b2eb5d6979798a8071c3fb44224320dc1fd119b1acc29e14320a0b2b7

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95f65d2a679f3408e0169143194726995dfac79774407d35b7339db871df736b
MD5 311e7750495243e6e266c87b026d176f
BLAKE2b-256 da3e9159203f60fcb2297e5177c9302fe478bb2273c024b6acaee508b5e04089

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db38f9a62010bf5fe919abe469c6b8d3bb8ce01d02f071b9487d78fc1905fd7a
MD5 c81a389a863607e6111b8cafa1f8963c
BLAKE2b-256 9ec82d05f8d504b4522e3cde3d538036a941cd0605b8b889ac6ca9e2e0a8f3d0

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2905b5e94dcf5e5be2fe62ba61758bbd781d7d25199cc2e4bd61dae6dc1d8161
MD5 ff70c0384950bea61fe282e9900ead47
BLAKE2b-256 de0560af198d0d9aeb03e0d340f90e33e461b0d15bac974c115847dd9b42b223

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7a231811f3b916d7c48d157c0e83a30aa66dc3a1d3da2fd65d455438301be7c
MD5 2fcad3ec1069da1946807a94f19f4d72
BLAKE2b-256 21487e5c58a8fb8168c998c02cc05c66968b0075023621528931cab68d76b417

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21862e85a6b1d8b463fa35b558cde5c732772e4eaeb9f1b875eec6fd3f1ddc7d
MD5 311fa5c279b4cbf041796fee0715ecf0
BLAKE2b-256 e51b3565a5c2835e9d9f009fca482272cac86d56a7cab81d527a4b7567aa353f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3202d46650a56ff303738b44eddb50ea29e242744fb30a808260cceb311820f4
MD5 921f6ef771d23e6ba0d2997e9cbb1b8f
BLAKE2b-256 7623d5f4e06c011c3470e842adda9760a2be5c7677005de023134d1a26d29006

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d132404943061dd14c236ca7d17e65c948e1a2fef5184c2e756ddc5809652d26
MD5 25ecc222c5a741d0acdc811709537d64
BLAKE2b-256 2c296634c6ffddd26811213e0769ee4010d5d1034a4093799b4fc1f8c509e9ea

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d52452f056255b8d3f04c1bea55165c19a3a3ff9ed1f1c133f32064fdad8d1ee
MD5 4242e5f8bfa743988c4ad54366fc2e97
BLAKE2b-256 1acb54bd133b4253d20bb5c4b3cb34f5db49a3d715786c43554bd57360678cb3

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81d6287f3a6d565448c28f8150890b02dc6eb5cbb7efd7db9e3aa24bbbe100c8
MD5 14c543a39109df33ede7ff81f98b610b
BLAKE2b-256 9094e1c4afea23bd01566b7766c4c6fd298acaf175aca7cf05f9c66d70786cf6

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18d844c0ce1b4e82e3dff4b5efbb45ed2d257eb42bb4463c09f074d45ad0342f
MD5 ec7de8b6bd07bf4ded0078215f6fb5f8
BLAKE2b-256 d4e8d05f64cb069af9b4ed5cb3d8ca0e8fd7af2a70c9cef5aef228f951ed3440

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b969b80d96c623cb673a2aad2ee1ffe2c94b2301d14dab988d76396ea1d9ebf
MD5 16f760b8becc8391bcea666d8b9142a7
BLAKE2b-256 f21dafac28592037c75fece2501f1ccc55cc08c8b81db26ccdf0887b6b2cb651

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb657dc0ee63ee988a5ecc9ac3ea94665678fae58242d9382c69b4010120ef0c
MD5 d619712f2049066b3f8503d1847ad729
BLAKE2b-256 6c88e8b585490f18e7436349155117ab23fed0b1983bf74e76a670d472fb1cd7

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bc8fb90abca863775ce3dfc04b4d03bb55e4b29c4515244ffe3d2e61cc5b6dc
MD5 6d0fe0380fb1f18905a215dd4dcd55bb
BLAKE2b-256 e3436ffa81729b5633649fcda6bd2cb4b2e8a3f987e198cbbf08f8e6c966df8e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a527b8218ab30d2566d970d8391a5f31c49c63af192e4a2eb0eca08e0a0b2701
MD5 f39e580eaa6a8337e79b2c3fcec7c4b3
BLAKE2b-256 764cc413677dbb1c69047229d2f4b933fef2cc1875bb6dad669bb8b4d9613357

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc954a5489fe2bd0e95f020a5a1cad30db53d21d79197fb65961ac586d41d340
MD5 009da3f63d331d3eece65bb216da6ba3
BLAKE2b-256 5b9047fc42bdb454987ff2dffbcb3b542734080f13265b0aff577aed16ed55b6

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b85123572e7c0d85c7d56f78e4d48506f72d2129352d1fd7eb757771fe841591
MD5 17c86da90ba0e4119836345d345bc6f2
BLAKE2b-256 11410471ffe97bb0d0985ed84ad89f5067fc4653ea44f06503ff10bac1359fa6

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c30ecd3aa3f4e582b60f16e708d5e0e86c40c46c3991f194838944f7ee192b7
MD5 73365b7a717cac5d787c542ca3269e35
BLAKE2b-256 cec3bcac81ca8ebb8a490df52b23e7b4faf0c2cb2537609e9079e5065ee7a796

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6254817bcbb43c37a7f85a6c0051317b0b979efd9750d8b5eeebea0b09bd237f
MD5 e34ba6ff84d8e2809c95d6918be384f3
BLAKE2b-256 bc2c8e5b58ea73a139f74791de579edcf934dcdf4467514e0fcfb733eeb58559

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc175048f1a8d988aec1787fb15f2c305fd7d6fba273ca69d7b357b1c1ee32fc
MD5 d830b3edfc2aaa2e92ba40e0ad737271
BLAKE2b-256 fc42b8122181169eb32edc85514285f08dfa16c532f0580a12af7b339c734e05

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8586307e0d798f150b07bdf268ea43551000a6a26f3e562444d1cd7f3774c33
MD5 4c8afa2f35f732ab3333f1fe128d2be2
BLAKE2b-256 d3e5afe95becd68af94fad7186d21c601b3b756e3a090911de17126b1eba98f0

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ea4dd7c3c118a9e504ab6a1f71f2a1781eb7e9991a3900901869f865c82ad36
MD5 11cab2819b9978aa0d801981657ce94f
BLAKE2b-256 f94a84e1e84e7cbc10524736672389db16f1c2411166a807ce285b4b91eb456e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9ea85ad0fa2d3aed3e3c802b12ccc328195a2c4f9233be7972a282b452ff513
MD5 87824627da6094845b5e668d82f365ef
BLAKE2b-256 7fa803112643dfb271d53c3fe5dea0dd99a67ac3727d44a72931182947beb0d0

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dc175c27be7d33406c6686894d3f73f1af235cb41fcbf27aeefa30e8e15cdff
MD5 c7e17c857bae7329c666065380b52737
BLAKE2b-256 d9d424e0d34b2c1f528fb17b0d9d0b6e3c163c2abd23254b07a24541941473ec

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fa34354383110c6c143f88300535ef8add06f85384b39fb700b9b3134d0c058
MD5 881d415f63278d393990720559e8fc48
BLAKE2b-256 3e35cc3eeaf1049f7e05b1ffaecd8e95de9773a9464f593612de7292a59613fa

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f5335314ed33b43e383c4723fdb90bb3ca964cc98d5126bfa6d4b8aea7b636a
MD5 93b64c3aff73d99b6c66188cf9c5f13a
BLAKE2b-256 a634dcc932c1703772efe62ba35c07c58ecbe30e2c4900dd02f2b552dafaac20

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cf11c5fea6b9989fbacd8c9cf41861bdafc81f1d4aa39f0f3e23ae44884778c
MD5 10794e4fa75b490e72ccec17bfb47eb1
BLAKE2b-256 dea6d0fc47c2905248a913f0b8e0b23f0b29539b24af852924c658bfd8f2971a

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7445de76990a22d9b4b5e9327c4a49c639a1460dff82b99c796f0866639ce643
MD5 8a0b9c2b4b1b0bb4231ccdc05e9b753c
BLAKE2b-256 798a0986f5d7ed69e2cf0a951f17d9757e465c568fd29348ef077d59494ba5a5

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 37bcfdfdbab627b20cf27eef56956906928ab2a9da6a860e08d2109aab3834df
MD5 afce9a33797ed7566a00be188c66143e
BLAKE2b-256 3d4bacfec3a5c428c823cbe9581eab4cf5c4d1ba91d79267d45040817939eed5

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14a499ac6fb96382d4dd9e0a88a4300c29332283bd7a52d4a55289c56632b705
MD5 685c321979be05ef62a171a14c1dbf8d
BLAKE2b-256 2ef158d5599b13fc4d0937e7852800db2b4645c52899af6d05ec6d76a4a43aca

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4dee73936d112dee98c68de5d7ab6365e37dd4812aae1a9c21e6263fb9f7583
MD5 04e0ce0f1b02b8cbf47b05618a10ada2
BLAKE2b-256 f4e781d9f4847a97109be055688e6ccf31aa982105c3f64de385abf3b84e3365

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3517dec3b925a8353a31ee4982999cd29fba0e0b05ef7bb674d1b60d96d87645
MD5 ae96d1047232df94f4f5d6c7044813a1
BLAKE2b-256 9e4ffc2dc101cd610af9cee064b2e8f691f47836c25e20bc1dc8f9a05cc0bb5b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e844b5a78df0577f70c4ccec849f3b9832bddd0e90d6b41d4259593151b87f7
MD5 e7606d6f166b01bde35e82d674743e42
BLAKE2b-256 00da915247ca4a422e26869bc65085e5e908fa7e68b4dc5e8da815f0b6d5177e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5374ea85d5ceedd6d17657cd90a8615de752cecae38cd1527dcc078b08d7b3ca
MD5 d467c871a140f421a44803064bc903db
BLAKE2b-256 b5f920ace43e6eab0a72e9fa20e102a65fe1a90d9ba7bf12acdb20b5d75dc531

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5aa1aeaf7bc7ac5fb62b8befc73bcdd8e0ed2bf3423b4b4a0f41eee6869c619c
MD5 0bb00aaea2f2cf65b405b5d98973cde0
BLAKE2b-256 7274bdcdebaf7c49be136bd321fe131beb7a6094e0093871635a99089a4b281e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b32890eb1baeae6060e9edddca649767e705a4dda9e2454a7ddcec355fc916b2
MD5 b6ff7fd04aa001dcd4cc41ed323a9c3d
BLAKE2b-256 5bf90c36c680dc5738f2a59e319fc56379626dd19b5310f09c0daec7f20a2863

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1ddbeb5a8deb11e9465eb1eb02a75e957f51e17535f6eb8620b13b111b72e1a
MD5 eb3017990abdef2faba5e25cffd538c5
BLAKE2b-256 e7d633f24d1f86aad83196c9abcfcc57ec0f7d9281dba7ed2f63e7591e8746be

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 88646e67dc168d70daea54c258a91a05181e205dd7d79d429ef453a6a7d2d650
MD5 766d74e03bfd188c1f93c0cc9f359a0b
BLAKE2b-256 218fe2ce2c3e4241a018f574c988eb2c6257d94142c590db0b468f67d207406f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2efb879116877237cdb4f678f5f8f49cfd27f79f10fa6b3fcbaf6fac2ba35dc4
MD5 61393b81a4fef29936fef42c226496b1
BLAKE2b-256 1392264fe6049099395d6eb889fb290cf89f7f7308e8b1600c7d36c6fe786736

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f2ef42f3262e0cec73d5d0e9af0ee806748b982086228de3e7222236837b5df
MD5 545f9ef88e52bfedaeb7fe5256477b1e
BLAKE2b-256 b8fe5ed4c13d939e5d6e726cbf79415819f9a35991829e21afd56ac824025f98

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7333ecb7163be0dfc2743d0818cffc501269b21e20d96f06f0df3c4604b5f3c
MD5 8ec7a14749c463b1387770f13756e9a2
BLAKE2b-256 dd92bb38ecd3d38c089e3768394bcfea1ea16d7d389c00e9a96daac4c8e5cb32

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe7cfb26a4ff145616dab9fb1d67445875bbed6b43e5c3da2cecadbe6195c321
MD5 a4cb9d00063af5308217e4139427fd75
BLAKE2b-256 bceae6c9d869163edd8812285ebb741b6396f3a7abce212adfa2bb6a3005cef8

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4c75fae0f5c2a46f20e91389b2f4bda806d839a6f74d382bbe17e84743fdcee
MD5 c57a1a674fbe183869b248193c532f59
BLAKE2b-256 4dd5e7d069729d2928636449707a48f80044a443bc26a217d95cf810e042fac9

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2be40c74c0e455d76e3168c10d5f9fd5c07d30abaf7bb19b4bec8910106d574e
MD5 f3b35b86d61442d378c44b88545d0a47
BLAKE2b-256 bb04007206d04b34a3d556eea1c7a6149cbffd3959523bdbc699cd0391b60fdf

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 525fc042a4379ff2a5aa9f5aec42ec38e3376d1575e903c40a1d4c73662308c0
MD5 8aceb6d4264a8c8fa4738ff137f3fabe
BLAKE2b-256 a7f06fec5e916c7c875a2c60888e5dbc7f166a05bd2c16647e894ac4db7eda18

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a5439222843af9854a8405c61d877d251a4ea055aaae9347a08fbf0a304c1b6
MD5 eaeaaba187c52c73e429941f7c17e71f
BLAKE2b-256 8685864e66f4c005420df35b7fb29e0a8c4de9ab49e8a2800cd81dad8cc8ee79

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16f95c19fc7c07db88ff2e348d03d9d493e31c7caa6fef71d82012f50c39857a
MD5 79652ce762bfc06de41791f28e50bc39
BLAKE2b-256 d66cfdbaf9e6c4501b6b3691e939af412420ea0d1b84b073316c05381c4aec3e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c2321bc90b04381c4cd3d9cd101f9731710f5657f958483564fa7d58fe94ff4
MD5 4216f129894e1933aa263d1a92d6f473
BLAKE2b-256 572038e8601bd1e2692aa0dbcea9914126662b865d67b838195d19ca2121b491

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e0035f2b1371bf93b28a1d704b9a32b9eb0b04f3ba0e3dca260c144933894647
MD5 2c5bcd6f19cc32ede4d828f25fce6c5a
BLAKE2b-256 8dc04776a386918017d911eb457da0ab9ebb8066cabd5c75bb14dd479b2e9274

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 388893764aa4b412a50ce4baa214cdb5b690829951e2677a8d7d8b594a38cfe4
MD5 dca34f76b739a53189f55d372c36b4b2
BLAKE2b-256 904fe02f519a92b207996c9c18a032d2f9601eec256af825bac106449fd6dc0a

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5be6389002ca1d3e169df18a1f3abb1ce2e6f7f374c28928f09d8c021b01f42a
MD5 de34b19b0e52b190a3aa1f447624441d
BLAKE2b-256 9bbc6169e34a7e5bfaeb4f30fbf3757d24fea47515553a752bd536fb9f3c987e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 033d4b1995a0602762eacd09dd39c0b97fa24556797f943df4399cb318a5cb64
MD5 344c687df50b91661bf2b39b8e7c598b
BLAKE2b-256 a01f780142cb2d73ca5c25cc4339e4e5314f6dfae03af47a1f66e947f3e1adf1

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c63c5290693ba5c1ee92cf4e16c737b17a4457ab4db1bdbdc2695c80a1535b1c
MD5 8bb06ab7ebb34cdc03344e5be2708248
BLAKE2b-256 dbc1b711e8ef57af33bd5c65dc724fda75ea52ac97098af4d3a4d8c922a4fff9

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd7ce2915d8d2bdd94958ad76f309d743fd64b565fc95a38e21da769fb7d3114
MD5 6c5572e228f55a9c43cf89f50efacba9
BLAKE2b-256 5ca30ddffa00116438ae14a4657448b32c9922ddfe3b6194dc3d8b4b0c12703f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dee61adecc227f9c173c2fb8ec1418c99e5e266179d2013fab6fe6e51f3c5f9
MD5 4f4eeb2912dd416bb5beb3c8bbd5e4e2
BLAKE2b-256 c2553cdf98049d28af4a008fba444ffff22d9c1c575cf56fa54d111a88be759c

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