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.3.tar.gz (421.4 kB view details)

Uploaded Source

Built Distributions

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-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.3-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.3-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.3-cp39-cp39-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for web_rwkv_py-0.2.3.tar.gz
Algorithm Hash digest
SHA256 ad82000e28caa919c3e820c8de7a7c5931dfe5bf6381727959687ab7c9ccf7fb
MD5 fdd8e05571f56360768f799dbb415fd0
BLAKE2b-256 4760e212a94d48cbb8118db795e5d8ac7aa2975d3469aa92571da8f415e3c029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b7f8c036e4908735af6be0c0f7580d1af2f7805c04472ce6a64afefd115e40
MD5 31a610fbd21064dd1d7c50c822d8af97
BLAKE2b-256 e9e2cb208c5d08278159481d05202a7f5136b85e1955e774905041f8a2a555fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32e3e32870abe84c60895b67f2f1b5d9f1500bf85b725a74264240d08646534c
MD5 ae6c383ac9a9d320b93bd92ede7e3200
BLAKE2b-256 8230039d3b4a81fcedd7894a48e69b5c72a039d08227ec2d058642853feff70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8feaa8c14fff6154872114c92f59ea40a20b078f9fe4b17369dc2d1a531ca1d
MD5 537521ca538c8619e8b26535c7ab3df0
BLAKE2b-256 078d719ad575909834f8ff152b9cce51a87da1b83377a55ea0ba1a06ada09c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1b781cd28ebde811e3891681920231aa2e7d4069527d6e919f21bf21a8c37a9
MD5 a8cd51bff64bdccb1eba4c75dc491a5f
BLAKE2b-256 69159ed9a53ec2ea4cd4e47632c5ab9973e5d756a5d173cd267aa39df869ba1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8bca955d7d9b18af68ec945286363730078afad484c0422aeda11205903de57
MD5 b425217a57c904d8af347e41e9208938
BLAKE2b-256 4c542ee6e07d668a21d47b9187864b2a3fe4097ce03440facacbf90dddb59632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 786560df8f89ed76698c1b0b7bdf4dd52ad99580fb9ef4ca23fae635a7474446
MD5 80ee6c925952b532e1f9e562cf7cb38b
BLAKE2b-256 173de07b6f71a412ee7c8e7af49f858de677cc9c26a878ff65b007e5511f7f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 112251c7aa1ca33a7e1b317e93ee081e9df8314eaacb2fcd2a70d0444bf5857a
MD5 c5f095bb7be5fde9c0fa983c9b3de463
BLAKE2b-256 d473fd8523967ddb44b81dab8ff9d21495565a6ddc5f71530693e2c183950ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7004fd5ca1cdf9bdfad5a83f0ba7494d54d648e998b4ada43168fc262da237a1
MD5 9da33f9c385f60c0b1fd558b9c72aaa5
BLAKE2b-256 fd4f57c8129077796d15052a2ad9a74bc69cd8420bbcaa524b1533b89cb6dbce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07dfcbbca5f050b91025fc39dfdc302892aeb49c4bab7a00a942efcdd8e0ba23
MD5 305c43ebf4279001283f07085c470d23
BLAKE2b-256 9aed2ce836436633e0d4d2e562ee88f69c0cf74a2503f8485d717ed2c5faec24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 020f8c3bd1511cc7f3c60d7c5b4b8dc03dd6dba05161df5119c352b8adbf4b2d
MD5 492925fe4a348d144c2946a1dadcbc7a
BLAKE2b-256 1c7ec4469ffe57d61485fcdc6d240aa224b8b6bb10047ce8a45ef7b481e8e940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc56b427792569a5d497a05fb2418c8c32e16e4482fae1f8ccede8a5b1e3a07d
MD5 e02fc587a74b540c01e0a5e6d0c6e6b4
BLAKE2b-256 a516e6fa4f10d419540fb3fdc7e5f11cae54e81ca4fb16f05b253ccf74faca06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc1be9853f3b24406f9d1aa5cf9f9d45bae28362384dab6282077d84d5819bd9
MD5 7bce8093edd48e52cb4eebc2ff3ff146
BLAKE2b-256 291573229075701b65ae7415492f71b49ec3a18e14daa469932e82e327055aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d333a0775d90ddbf166a04f743e0ecc2bb6ca52217d36a9ffb317603e7e1b755
MD5 cd82f7a9302d9e29f099822214623dae
BLAKE2b-256 ee5a1cf2e9e7e9583c77abfd4abefd96ee707742375fc08699148b7a42526d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88f808c8a37fbede35d52d96d9435d09f18497723bed2eefaf3ba8d9cb0d760f
MD5 fdeafdeb90f1e227464d930f07ac3605
BLAKE2b-256 1af36eb8f3e40e7b89df1950b75daeb911478675c0983c8cbebb4185bafb809a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f9ec19e1f73f3934039ac7c60d392a8931c7fa14b4e8f47296ab2a7c8d10137
MD5 53fddd25c4954acb2349a42d3e9a4593
BLAKE2b-256 20d86a610b123f20aa09b5aa724113c588b294c86ac959c53d10dd0c96689939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8544e00613a47045994e3155f6d43230eafb8681c3cb53e61eb0a4033cf64050
MD5 9d493c7885076e2e1a4c2216f0159eb2
BLAKE2b-256 e9ee865109f71772a2ac689af74476de1856a74589d59cb25b070e22c1074ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2681ef9c38d503fe94c2920cac4fba157198fb3c2d85d572da2f401bccf1a208
MD5 7f43e7a7f2f00c7381b85823bf35e675
BLAKE2b-256 7d4713892be325f4ffe56c6db4a535b819304f0116319f390b3ff962ecfadb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21b601b3888b0992d2fd3a40ac97d2b2bc6ba78abf2fc1de7e32ff9696d5cae4
MD5 ab5e57c2e670f4b11878672d68c167ca
BLAKE2b-256 ed03b612a4e469d6580bbe293598ac5a434cb01c70623c2b70282734faba4441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d4bd33d10ca345394121e9270aae519c569417bab6813fecc68a9d7fdaee40bd
MD5 0d231166f494b11470b04e9b9ce66759
BLAKE2b-256 f5995fb5b786057c2a298160a0e48fc3e6e4e1f211da83384e8054b37f714614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7435a09b5471e602af0bc0e402995a5ba1e8b606a4e3526d34f7556c45454748
MD5 3364a9d7505df1f4f45a48d0ab3f16ac
BLAKE2b-256 311360b7c8775b69fb833fef0729199b2094074be8dce76a06a6433784b8583b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aa65c834404cddb1b00090f9230596afbd36e2f3068fd797a927ce2674d252b
MD5 1233e394924857be1276f5284070e8ca
BLAKE2b-256 0e061b45e35745fa727fd5a76c64c1f96130dce3a9ff02861a55a65406a7b00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25f8eaa90638712614b08cf605dcddd1b7cc8aa0e948e76958c42d7e78a9624f
MD5 2ab899eb18c8e192e9bb7bf50fa0e005
BLAKE2b-256 b7f8a524284b3b77597345f57185a512b570817076560652574e2611d6aa0159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4786c09fa6bcaee48aa1259c91d895b7fb58793de49aef5969761ad3fcf6338
MD5 25ffd6fcc264257294c20c3d9b8771b6
BLAKE2b-256 c9b664f728f8135e563afb362afaba28c21c1cd8880a37ed7aafee9a665c18b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92bdad9c6104b21f0031bf97a3b295d05815ecd863a0460074636703c24b3869
MD5 31a65064a9f2b29157d13d68e1176188
BLAKE2b-256 0dd89581cf5d6cc3989ca2f010dcd19c23a4dc52a6e0f11c39dd90bdba79b665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50b6dab45251d2f20250bc6922cd8a90d2c3d21228ce0fb20f27b5f68f9e55ee
MD5 65e8734f1c673973477cfb5a62fa515a
BLAKE2b-256 4ac3617cd8e227dd36a7d32af71ee890d8c9ffa8ac4793552a0d53a915f5f52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d26a93fed1b5a2631d49d574668b5e8b0c55bae66384ffd569a985f0d35dd49
MD5 108e01bdc53b66b88e3f26f97f8f52c2
BLAKE2b-256 1a23d82c69f13ceb2c017d469c844ab80639e4f4f3bb77d2c6515ee6bd8895da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c18f2accc364eed7b80943b9ba2cf122a571a9cd6f6d9e43aa7c23a3589bdfd4
MD5 1099a7ebce5d0cb91162756ce71a24e7
BLAKE2b-256 fb1394250bcf26744170decc5af9de01bba6f7ba499c8e6d3cfad01f7fb7739f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0feaf41c619e613190624c210a9c61dcee50ae09692dbd6a89e0674af03786fc
MD5 2a6dcb3c4e3097ffb60afc33bb0ad80c
BLAKE2b-256 bd6fc6ffa1fb1ce5140e25b1c0b8712bf88adf876b7b854e8e64b0400826df4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc0c6a5bf3cc047a523ff61ac42a54ab22968189e0f3a2720b9ded03e300af16
MD5 b2d1832b75c11c64471a11cd57b7284f
BLAKE2b-256 f3ac10b29d3d0f08cffc3ee9b972719749ac76b1ade6db62cfc625c9cd808ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f90f42899daf9efe33e8d8b42056d5fcc5baaa8b7cc0294b943fe930fb27577c
MD5 c86b78b33f935c15c0c2f5b50400e725
BLAKE2b-256 625cb90e9204cfc5ff11cfe9f55c225e48e41da29989cb01746c8f6864bd0671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd42533810c3c49b1040d8749cf4f0d73df7dc453a3da034a367183763784a25
MD5 b748d5d96fe7f3fefc681ddcc7d8c16a
BLAKE2b-256 2e9f759ab3b64f199bf163af30ae7a7fc67366a9eaa031119d471e33a7c770af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d974052343d29ce961fc4ed6015785bd83e82a9e70052fa89311123d3d9856c1
MD5 173e88fb57a6bf627965474d5f3f4249
BLAKE2b-256 8a68c1bbaff9c1904b6cb8b8ffa80459d93c614e964d0cff036ab6bd632db2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4de95d6c30496126934abd9677da0b8d659ae6c360b3f13ab98752309965e7ef
MD5 c975385f5046cfd3738c45a7d1ea2fd1
BLAKE2b-256 76c961b7a786be9a9e38e5a4ca6ff701c4f0805eedc9cd1e033cf355cea0f4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93aefcc6d50aeaafa75c9fc464080f26e3bb9367ee5bf9e28a72e3e5dd635cf6
MD5 7c6194da15d6445c00015c018ff0aac3
BLAKE2b-256 529ce1e04cf0fe467c66344411165926b2fb98d941b536ab7667b0d45d25231c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbde388203feddc638376d87346e3c8264f27e903ae1c87226906ec0fcea6c39
MD5 b06d43a0983baac07528a466d6104a14
BLAKE2b-256 30ac3f626fd4a84f79fe77fb2ef38d0cbbe1dc6d8318d417b886ab34248cff60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebfbc1ae0f13f62e2c085dc8b7465133a21f0654cb92899cf91a5f842d792af8
MD5 6c7be70054cbc0510bf23252dbb88218
BLAKE2b-256 be80a3f43cfd04c660538d2c9e63e061164b5c7a9b80d1b7c8d5f365e0b7d7a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a359989f9b575970bf04330aa6761e3bed8235dc78f33adb68894b1e625dcf18
MD5 6312e410ef3cb53d0c1016dff71e832d
BLAKE2b-256 5efdbf32bf759161a7001800cec590e00eb4ec5692a83487177307727252d10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06af2789bf09e5165e27f33a33776f2425e1e978eafd6c55cff198a1062212cc
MD5 c65d62d8d7ae1bb8170c625866ff7c40
BLAKE2b-256 86d48d98dbb17fc62a370735b84a5cb9a159d72e56aa19aac37d123e455eea60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a5e4c1bb4879861739579c0dfe4a35fc251eea5eac96bdd2762dc97c9bdb2bab
MD5 e6ea31c7828b9b1c665aec4bfc10e5bf
BLAKE2b-256 f9235c97bece06ca5a4e1ab2b349531ce80b80823e3af3e962eff5d196ba4248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 fe217d7a612fd03459cf80afbe0e06dc667f6903ca78aa82703a1cbf34b16e55
MD5 5728b10a47c06084913e3f973be17b6f
BLAKE2b-256 132680d4e704d680cc8513e282c488e299caea6fbfbb492d143e949c818bb7bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 601c721fc35dde13127c3e87d40bcbefcff82b5c29bde87ee59dfbe0869328df
MD5 d4446a6528d617cd9ddad068e30a2ab6
BLAKE2b-256 4519d7cc74df7f2451b4e0a1882cc31eb7d4e76563c2a8f49ff5689fb8e70dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f0efa814d55d68a96eeaabd768554bf32027717915c0d9efde25bec574ce09a
MD5 da13afed995e1a19b9c32ab97b070dbc
BLAKE2b-256 1bcd04eddec17119cccd162cc5c8fe6b9138dec27ac548f1e5bc4debea4d0f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7bb4f61e9e596f31715f0b2957757e0256baa2aeb92586726649bfa22a252e88
MD5 39409db6453c4580492517103249bbbf
BLAKE2b-256 38be11a1eadee8cf98963e25f90e85a63c0da87ba3d3f934c4f23976341b6304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 869e2c9b5aa25eeaae6c5f8caed02656320192ba9c28c7e4c4bf5af42b286ed7
MD5 784f1e77f472c5183fdf2c399f2e2046
BLAKE2b-256 b7fb16463edbd5083d66652f6cc9a542cd7c759a7ef7ee3c920f38ba0fdb39ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f1903cc74e0fcbf6ac5cee78426d90aa0d13f2a4eeaebec80bfe53316613e7c
MD5 283b3237641e39d4303202eea0d48181
BLAKE2b-256 90760daaa1c4c0127bb4ce9e65525532b3d59d729549c95a60687f2915e505cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bde917543c35d0acb854002d98e7ae99bfc67e7a8f27bd7cdaf2bc097701f881
MD5 e82499fdd8306cb52454ffdfb70eb4c9
BLAKE2b-256 4b579b9ead4098b14a399175c8fec683b341e86c7243886ab94b5ce009fd6627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a49723a73374aa268a06ca59826ebdc83d2be6e980b5542334fadba3a467332c
MD5 24ce11c99aa33ef7b54b930eb1e84bd2
BLAKE2b-256 f8ece742ba65f1f01b2149756f59518d53e3a70aa24867b54a7bf6cc27d3ed37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c2951a38c159824a7236ff379bd977582d419b942aa9d16a8faa7637e215f3b
MD5 824fa57dcf7ea7c5c990f7d15f15b5c1
BLAKE2b-256 869bfb472d88e7ef89939c2bbcd817fb5ccc661453e984c8a4ec18aa64dbc7e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 711bb1b99e255fac5b02508c1234cb47580090a187bf3e79ef3fcae78aaffc45
MD5 4d8449ffe106dc66259876f910063ed9
BLAKE2b-256 2d7868e22f01cc88601e8179ab283c2761b39ea9fbbe7ebe0a75f775735d02f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8fb1f47731071cab17fe8c6dec9ef83af4c3153c21ddda3031d2d12137f376ca
MD5 ad9b5deb165be35965104ca32571f464
BLAKE2b-256 2b2166334916f4d9775f325558588eef375c33476d4e7445a7a3f7151533e55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82ddc13a554ded5da0327d3935c6a15cb583374cc033b00614db8f51181e2b0c
MD5 d6890656295cd2abbce85bbd096d2faa
BLAKE2b-256 5f1c2f7954626a95bc23db9d525ad3870265e56b85d2915145501c196c50ba47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db2cc08a6dacb70169bdef9e025b5013f97bd7fe37e2f277001d2e621166f893
MD5 427306d90000c7f66d374c8713351651
BLAKE2b-256 3fad413080a31a502347da435725bdec3a4d4f12da8d70891501e57b2917c838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94abfe13d95ed5e09e9d483b06154e307df5e393d07aca95e2cc754d46cde3db
MD5 0910278c5fdc7e0cd9226c151d53ec74
BLAKE2b-256 95d6f53466904faf228c3f53df294f84c57ea1e250f4b778a7d77afc4e56fbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d3d0beea5acf1edbbc30ea892783e6f81da90b03550dbcdd13465ac04566b62
MD5 7e834681a289a3c16fbcd5373d7d8e77
BLAKE2b-256 1cbfbee7acd19f9f5d1411c044b38f9b0d8e2a2ed4c353c8db6582b96b0e52fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e6e40ebc3ea2b3edbac577d09c489a074ed8476fc6817e179b25916ecd17e42
MD5 a31be51c9cd574d08f8b48a6d15c07a9
BLAKE2b-256 b2f2bd11d7c2a23e994dfb44066e968d0ddc0ce853dda18e73d15a0cb446e846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a45990b017033d8ea065d8f89787f2d5e02fcaf5398b19adf3e28d71a9771bdd
MD5 ea2b969a55ca22abd90d0b19a8f54f6a
BLAKE2b-256 a37e6655c11fa5f472060eee8052d524723e39c37a0918429894e10994930c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 843119fcad16f65a8ba4177d507dbed1b5c69d74a42b64f1dca71a559de80d18
MD5 390d727dcc27271dbced8f7acdfd1c89
BLAKE2b-256 3828be97c81789dbee3eaef8c6abb39e11f69eddf0b0db24afd8bfcfcab54da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a05e0df4235223d8267c39244d2f825b8541e8890e94c71c9e3bc1491c99e600
MD5 fdef84b706ec0f5820be72539778e43d
BLAKE2b-256 6f6f62f51114ec50b72638dcc0c7b6634e66a08df306d1b8a6dcd1070705000d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3006a612078f8559ab4104655d4ef2d0c1306d1c5e28d852bee961ce2adc2d3f
MD5 0869ece166f2475e8012acd38cd81c56
BLAKE2b-256 d4ff66a16ad88e3168e07966b7663b5404148f2baeaa10183358813c3ca47940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6a25bbf9fc5f91798fcef5ff5ca710925251f1f8764cb9012d4984f7023310a2
MD5 db01ba75da5f198be2e69ecc90d9714b
BLAKE2b-256 d5bf08a7ce215789cb0240d53e24850d95075d247e0d3d30fea59c395a64581d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a2493b935e9884f05d491e73b70f68dafeb84c668f71ed3305e5bb6a74c73d0
MD5 c380ba1304fe57bc65fac2fda05eb3a4
BLAKE2b-256 c18745ad960188ec0ca5a0c9a2c5b74fab0587fd5929ae49c2617ade4659384c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ba4458f04747e7cb15b7998c2e13df6d0ab436e02b8945ef965baa0d453f5c3
MD5 33d7e7ada3213361b0a40038ea6658e6
BLAKE2b-256 0149abf728c3b63a6cf904c19afe20cf700f81854faf341952ad2209a84c0aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b4a1c767a6f4262cf813b8612e4895b717c786ed8ca1a97760880cb67d31b97
MD5 c7c2570bded80deb23ab36cf39c4ef85
BLAKE2b-256 9c69e28d9f0cc6ce8025eabc39e479a8e978b7807a4787653341b01b4c43aa07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f791cdb6547d4cf83f2ed04ed996e297deec777f35f0e06caa09c3c693b1b392
MD5 9f1fb67441586917cdf468bf37342a26
BLAKE2b-256 81124d8b56ed0abac0ad35b49aa5357d5f8da5248d2de040425b43c7a9a8e84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 303e241e9fb949cff108f65c009f40ab683bbfa7d885d699e93990cfe3d1868a
MD5 88dba11689505eab782171e58810279b
BLAKE2b-256 c9f452d8423e36ab371c02c8a5beb16abded6f9fd3f9a82378bb0d015197d3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for web_rwkv_py-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d61174b752aa803fcbdcd8722f34e22705e23b3b8eded234033a7c49524e8a2
MD5 d52cc234b885b86682ab4b463ad3f473
BLAKE2b-256 4520b00bf4a3f06269807ad903020683790b5174e5a49c44894cc819e5ceba0a

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