Skip to main content

No project description provided

Project description

DeepTensor

mexican cat dance

  • DeepTensor: A minimal deep learning library focused on custom autograd and efficient tensor operations.

Installation

pip install deeptensor

Checkout Demo

demo


Check Docs


Basic Usage

from deeptensor import (
    FeedForwardLayer,
    GeLu,
    LeakyReLu,
    Model,
    ReLu,
    Sigmoid,
    SoftMax,
    Tanh,
    Tensor,
    Value,
)

model = Model(
    [
        FeedForwardLayer(2, 16),
        ReLu(),
        FeedForwardLayer(16, 16),
        LeakyReLu(0.1),
        FeedForwardLayer(16, 1),
        Sigmoid(),
    ],
    False,  # using_cuda
)

print(model)

tensor_input = Tensor([2])
tensor_input.set(0, Value(2.4))
tensor_input.set(1, Value(5.2))

out = model(tensor_input)

WIP

  • Save & Load model
  • Train MNIST model
  • Train a character-level transformer model
  • Add support for DDP
  • Add support for CUDA execution

To be done later

  • Add support for optimizers (sgd, nesterov, adam, etc)

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

deeptensor-0.2.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

deeptensor-0.2.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (730.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (655.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (661.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

deeptensor-0.2.0-pp39-pypy39_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (730.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (655.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (661.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

deeptensor-0.2.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

deeptensor-0.2.0-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

deeptensor-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

deeptensor-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

deeptensor-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (732.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

deeptensor-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (657.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeptensor-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (664.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

deeptensor-0.2.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

deeptensor-0.2.0-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

deeptensor-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

deeptensor-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

deeptensor-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (732.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

deeptensor-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (657.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeptensor-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (664.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

deeptensor-0.2.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

deeptensor-0.2.0-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

deeptensor-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

deeptensor-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

deeptensor-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (732.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

deeptensor-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (657.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeptensor-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

deeptensor-0.2.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

deeptensor-0.2.0-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

deeptensor-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

deeptensor-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

deeptensor-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (731.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

deeptensor-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (656.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeptensor-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (662.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

deeptensor-0.2.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

deeptensor-0.2.0-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

deeptensor-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

deeptensor-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

deeptensor-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (734.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

deeptensor-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (731.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

deeptensor-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (656.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeptensor-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (662.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file deeptensor-0.2.0.tar.gz.

File metadata

  • Download URL: deeptensor-0.2.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0.tar.gz
Algorithm Hash digest
SHA256 514a732b61c07922543fc34e966047b3907fe4a4de079ee88930e21054f0bf9b
MD5 ed82a28a152f3c86deee8927ad6cf312
BLAKE2b-256 9a53ea23dac3a90605516dec9d997686f06984f208587991b788f2d9bc7ee659

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afc382ffc8c32601e52f623d9119dd03d3d4ed80d3b150b516421b37196c1be5
MD5 2a6f2f9b4550e0e8ed041f9b7b5b8c58
BLAKE2b-256 2f5c96163958a0c2592b382be9ef44048a166e75b4e909cef46e30bde6f9d0b3

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 066701fc1934b70f2f1a0033cb82f3c4a7b7521cb4be9e87bad235c6179d9683
MD5 df549d97b1fb7aa3ef91e7bacf72cc50
BLAKE2b-256 c11c6f2e21f4dca4d14a505d2eed49b23ca798583fbe515a992f0cd38ee2275e

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ddd76515170fee665daa664eddacf68c3939963c9941d06ebd5df4016848786
MD5 537db0a7d7bd774ec93629da9c54c997
BLAKE2b-256 e3e9b2fa971db68430968f3445751aec68a75931915470a592c91125eeefd627

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2bb0d68ac47d4524ec0705a67afa8c11310859b0a5b6b36953a2124cdd679ca
MD5 553777c6db7a4fdf2f5c8adde68024c3
BLAKE2b-256 00ca65a495bb0526418d6623d2a4b2f4080cbd2108ce354e5ea049b96df4e6d1

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17165c6db2181dc75f1e1234292d1277f0d5133334908c4191fa493511edc0f5
MD5 5e41903a3a8068ac1820e9c46ace320e
BLAKE2b-256 babc1317859e2c41375ecadf14d702145298b21702eea7c4d804582a1bf779a1

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 25e69465732c45ef533c7fd2265ee50859f2f96fbdc78c057ae4ba13ac69e39f
MD5 02e036b192e51b3e785ed0dd93c75586
BLAKE2b-256 79eaad800887c55f677d630933061d9cd448008b7b06fdf9e8a995c1e9ae3185

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae4c36d692afdeef649ea001539ed87fed161cf42f10bca986db3136f27d181d
MD5 3c5bd8fb8b059118d073f8bcb104ad54
BLAKE2b-256 e3c819dc79731bc71b66a894cf2d934bdb7ca4b0f6ebe928b3bd989a267a6224

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee06cf32dc6d1da12c347555b94fd209fff72ab008986cf8e5ab70989e8c4d7d
MD5 19325cfd2cbf2acbfe967727f28112ed
BLAKE2b-256 d3cc7235ad4df2e893c2965272c18ce9e5acad75c94598612a14a59c4828895a

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0ba8bc6c87c3d185b41c43586c6ab88a269cd2563d55be8a70c92240daf5cfe
MD5 2906646e6fd1338ff0a820cdb37d0d7a
BLAKE2b-256 ff81ea1ffa0e3e4b68e2de963b52b674262e9ec5c95cc7036addef649df0c00f

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a83529e40d1a12d710a3a47b12659d0a6454d8444d064575f7546338a561e9c5
MD5 eb492043e4565176fb448e740f527bd0
BLAKE2b-256 de8ae19a8358edfdab7f56e09abac9c725760f7caa397402923c8f59abea2852

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 341072dc4b51d2cd04da733aed7ee8486aee9a233a756b97d15a8e24c8fb67b2
MD5 5cc901e49c00177a8af115746058987c
BLAKE2b-256 5252256d9ab6ea9747ba944bdbab303dcf82e86fde9e92c03e562abb9efc4bb8

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c973415a170ce420ee3c23a247072f0257c6d8824df6439bc5c10ee5f9f68754
MD5 5ca9254b6079a2bc70bcd0017876e896
BLAKE2b-256 d9dbe2efa35a494bbb88680d80f94d9c852e91679ded3f3df32e47ad468638b5

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 503a96dcfac5428dfd1a5e1151bceea86a63e53c7456f57d9f3ea5537c1ca254
MD5 f869f89143390fc84602ebab1fbf30ce
BLAKE2b-256 9110dff98bd6707f05e6ffb4446571c733d5a8876b20c48bfebd56f2c8469da9

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 332713013635035382eb05e9422d730dd5e29a8c05c832d91f6254093490e8b3
MD5 3b1df77edbd039298b6bf7bf62c40c39
BLAKE2b-256 2dcd269848f552d6d3ea9466838ae4a3508d053c699c6ac9c67da7d0ec3b56e8

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 849df00bf86f8842f0da4dd7a615a888fe16a2c653fb077589601ba7f938d816
MD5 f6a42265f8147e97383ca6f9d3694a0b
BLAKE2b-256 c8a8337a9043bca1b4d33ab5d5919bcb4f595a31efc9721d67c12adcdf751f9a

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d78de25c42d176321cf6491c1e9fe06378ad1a8c4b1ac6327fb6685d724cc447
MD5 2b09cd6bc6ccfbc9804069de127a75f6
BLAKE2b-256 45c560828a6aebe922526285e8631fe02460139d8b937cab7399c3c0989154e3

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 161e939db41e1cfa1ed9b9670d0807907827e6ab55b5d51a07c3d8942d0999e2
MD5 3e3d79dc43ffecf7605bdc6cc1d7c09f
BLAKE2b-256 2d09670826701c5cb00a2783af484545bf78ec86f255a53dd0f8adec739d680f

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e6261c45c8e5b8571016082f999e29b2127e4657f7cb69778384a707cece131b
MD5 cf01de0f4aaf8ab49d5522048bb0087f
BLAKE2b-256 c10cbdec657f26f31a818daa5a03a0a9639fc5c9aa1f00dfdb7d5fe09880b315

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa2f9d32b3a5e4fd41745a8d4a99d009a1f593ddadeb2707defef4852f84712d
MD5 b8838eb87e1ed6e41bd6031594308c15
BLAKE2b-256 bad0dd7386a32a72650eba6e97a9f5ffaea97fabfc6f7ba26d1d20925e1b825c

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 695266e08cfff5b16b6a690437fd589c7acb3c841a4321a9b7a442f6e25c56fc
MD5 e86a74f74f7a8b46270c59616708c10a
BLAKE2b-256 723eb1bee6037855da8b395fe1d3a1ea53822f02bf28badc7b0f5571dd7a3b37

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9eeb0ff61ad1c2f48de404b0250defa87a1e1eca35639e9aeeea56607c0e568
MD5 3a565ae2cfaa909598dd8de93b5f9952
BLAKE2b-256 ae11ed53c1e39ee3de05636631a5d18e07bfdfb1d42c97c782c9d39099c1b380

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76aa03d91b7e2527b18b95e48242418cbcf58179318025652fea9f74968f2a09
MD5 22714f19f441d7893c9cfc114f8f1450
BLAKE2b-256 a0507197316fd1ab6e7e8951dff6c6beb165c9a3283a96387bf2ea3568852781

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaf84384b386539034fe6221713596954f407ac7fe7ea1406348d00f8959af25
MD5 c7c4c7374068afa57decbebd2202d439
BLAKE2b-256 a847bc49d590895dd9007dbe80459d933d5479b4bb70c7c86f6c882f4569ae06

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73ac0672b1b7ff1d3cf4e6fb801840a175209788747f025bb37fd6625a043b69
MD5 2eab55469c40aabc45fe704cdd2a7398
BLAKE2b-256 683566626614d5a45d9a8ca0fb749ece14434222309d5d5eb80874effee4f278

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ab09ad0bbef1fe560811b5dbd38e92d108e02fbb8061856781fe157a8d232ed
MD5 ee3b36cd808c3bae7861e6c4e8a2f4b4
BLAKE2b-256 421a227755e37acd65d3752160ef3d0140f18646e4a152dd1c4798fedba6fb31

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 618499fcf2f563e0859aa78c53707ef65046a7c3205f1d1f080ae704d91ee316
MD5 0a397baff185e58c8f8d186b0027eb31
BLAKE2b-256 8565ada230b148ca403463c4773b80cef12a52cb2b7108eccb4f09f9ef9ee521

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05695c32bfb560d427487eec1dea38409396ebb90775b9cdfd90961d71788113
MD5 6055ec103e705402ba98489d48191858
BLAKE2b-256 15391fb8801ee039d47c3b6cf1e1ffc4cb2cfaa46dd87a49182f2bdb39cdd3b2

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d11b831c01f43782eaed9f795b00a093226d940017afab24c54fc5442e5216a8
MD5 c9d3d10ccbc328fb4f466c412f36da25
BLAKE2b-256 b0087f223cedb7b797b05da2d84eb4510f5a6433c032667858c5e8d93ce793fe

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bf70739058902e421ac036b403e8248089908c92bda15d547e50c468b2e8e18
MD5 849f2af930bff2449a9f6010e3bbfaac
BLAKE2b-256 895ad0aabfbfb3cd8983f6733634544c30069990866a4400ee74ab6128dcc376

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8035965542cb06864b03112066061ad7e3e88553f233e26cc6bf1a558d479e3c
MD5 b6c4c4f9689b7dd531c5e386b1e316f1
BLAKE2b-256 ccc54eb7be6d72a9d9fe5c24e75cc42aa6c26c71bb89cad942470f685c69c0f6

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd1631700e325546ff7b91028508a98589c001c10267ef22e194ead11250928
MD5 d47c05270063afbe9a6575a75acbc265
BLAKE2b-256 0d1cc3ebfea4a6e794e98171a950204acead03f4ca451dbc88effa8da36a1b34

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3034053528b68927e533794ded61b1f7533aaebdbce120dba50ff35a288da6df
MD5 650282f2240bfb787de5a9a3841b2a70
BLAKE2b-256 5b303b3645cf5601db167d39ff206afbb3f6666cc9cd7b3b85b9c3218d0e9e59

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a6955a86038c5721b8439ed2561d44ece5af7dbbd7c2019756f737d5f20e57d
MD5 182b7541bdc0196a596d5e76371fcf85
BLAKE2b-256 7b74d2ee6ac83c37102d1842d16a0a1e45d6ce8945b7616a36f4601a6d8d37a6

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd2893f909c0c6a280ea29faf360416aecb32d2064a76f270fce6cd6e0d891e8
MD5 60939c1968186867a9c9af23f1771e73
BLAKE2b-256 4d57b0edea4c1c093d274dd4498d56750ca689ba1170a11c55e1f1cc3d52c849

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ac9a7eb1d64d1a626bcf5351e4d7ce03532a91ff96797a15907af1dcb05bb07
MD5 545cde54d0a82994947156ee1b7f3cbc
BLAKE2b-256 8db6f74fdcae7bb638401f3c91cb9c172532fb0e0de2deb1491c9d444c7593c5

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8122332f3ccb431249996a92c77c766e4e91f285cb1ca7bc7872b8d5f71a1c7a
MD5 3078a5b3239790d075f5f0a8b0ac45a4
BLAKE2b-256 1060ee3ca3704e7c1bfd9afb8657521e8de5aa4b858686b84d392abbef800827

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25c182de984698fcff2980a8e07e3709fe4ab548e37890798e284ccbcbdaa184
MD5 cd29cd6422a293f903af7f813c62b203
BLAKE2b-256 453eb7ea15ba918ae6e89bd2078641e76e1d3f1c4a076c1c88d7164069e953a0

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6826e6ad5fc106f6c491e3c93d34b66a3f885af9b0a873f81e481e837f1f8428
MD5 95787979bccc13e775904683f10fcfd7
BLAKE2b-256 dda5204eb07aaa9f32f888cde6b3c53245ef2cadb8f32d40f69e5593613b5cc4

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 912aaa346d4464c3b61241c758da185d49a017f386f862823cb900ef1dde31fb
MD5 7a008338f2a485bfce350fd465cbbadf
BLAKE2b-256 2369358529fa32f162c843e7040c39ee5a524997631b099a36f3430ac6d7c464

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1b74255656b5c4fb0512413a86bf3800732212861d5f53391eccda0960fcafe
MD5 611d4d3bdca2fb08982232f7aa30d301
BLAKE2b-256 52fc4ce5d6463719c8639ae0803d7922528c2462c737b1874aa8172d5ba3c72b

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fb58f45900a9e1174a9b1fef068458e523a63e430274c3e8ed149a6f8d090ac
MD5 87926738efc8d12605a12725e551f584
BLAKE2b-256 edea38c8368ecac843ec8efbf1b5e4d848ce29c925c2336ebc6b2266cf79c30c

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 421abf1a3d2b3ca6842a47801ffb06fafd4e7682b449194614d92ab0690f3129
MD5 2bbfc78782ee899327bbd09bb2a4617c
BLAKE2b-256 5bf562260d88064a5020b169be5f7f01839bfb60c6dd7879fc84821f9055d5f8

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6dd8fa141a62c7f84b561eef10ea54dfea49a029186822dd71dbc73bb46a00a9
MD5 67faa6e1780d19291c4d2f0a297b509b
BLAKE2b-256 e69170be25a30bafd927666ae1450953f1ea6ea2695206fe75fdad3e62b44e59

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: deeptensor-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.8

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a5e2f1264cd2a2da9910fdd413579b85a5434acba4e72a0cd11a93eed45bb341
MD5 2e1ce49eab48aad52ba105ccac9b578b
BLAKE2b-256 6f970cfd5a33eb79de03b33e612a5c994364ad7d08ff4f4228b03e0411d6425c

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38bb2532cbc19746f4855fec06b413a27176b1b74aae0f892a33050481a05f24
MD5 74251b2e82e216c73f24661ff70c2a20
BLAKE2b-256 a0ae00055af8675a5032d6b8e80f6bee42d99cc2eb78f380544793fd015e502c

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f38629a77a273f7063cd694e0c6d5c6a3e55492dc299d0703925aaf450fffc7
MD5 12be392286362cb552e8a45ffa21c4b4
BLAKE2b-256 7bcf2182eab16698b549c833646a541266e4fa193d71de0151b5a63790e83c78

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b9dfad3591bf35a2df41f3de7faa068bb088cccc7f2933c158154c60012624f
MD5 3497c571d644efb94f3eca3ce912184d
BLAKE2b-256 8a187ca3749d56f05c4447bf59ab6706856e0bcb2208e306448787d7536b17ce

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f330589a40a4520eeeceaf4924575147a837234210202b29e245a8c6caa1518d
MD5 ba52a73f6061ba724771020371b55924
BLAKE2b-256 1a8343fba3df189fad2774ef5a6fe950daca65f60fa2f27224ec8f80203aa028

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2f28351b264a464bed0d7b9863f329ce8e32e8981c4999b25255921b8195158
MD5 332ac909c8c28ecc070487455de1f6b8
BLAKE2b-256 a79b386014672d52a21e5834db94bd102442ae6cb545417e9fd3ca2a7206a384

See more details on using hashes here.

File details

Details for the file deeptensor-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deeptensor-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5b8e759c23ce7aca750c7b511ca544cc741c5cee77606020e9ab2bf88f718d8
MD5 e6314b4017dda9517307bc40fb64fa66
BLAKE2b-256 2d698392156b4fd4b5996502383e956b76e317a9b8a67d0a9e5c1f712b1a0723

See more details on using hashes here.

Supported by

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