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 (
    # model
    Model,

    # Layers
    FeedForwardLayer,

    # activation layers
    GeLu,
    LeakyReLu,
    ReLu,
    Sigmoid,
    SoftMax,
    Tanh,

    # core objects
    Tensor,
    Value,

    # optimizers
    SGD,
    Momentum,
    AdaGrad,
    RMSprop,
    Adam,

    # losses
    mean_squared_error,
    cross_entropy,
)

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

opt = Adam(model, 0.01) # learning rate

print(model)

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

out = model(tensor_input)

loss = mean_squared_error(out, YOUR_EXPECTED_OUTPUT)

# backprop
loss.backward()
opt.step()
opt.zero_grad()

WIP

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

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.3.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.3.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

deeptensor-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (755.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (758.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (676.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (684.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

deeptensor-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (755.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (758.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (676.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (684.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

deeptensor-0.3.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

deeptensor-0.3.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.3.0-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

deeptensor-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (756.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (759.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

deeptensor-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (678.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeptensor-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (687.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

deeptensor-0.3.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

deeptensor-0.3.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.3.0-cp312-cp312-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

deeptensor-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (756.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (759.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

deeptensor-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (678.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeptensor-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (687.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

deeptensor-0.3.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

deeptensor-0.3.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.3.0-cp311-cp311-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

deeptensor-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (757.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (759.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

deeptensor-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (677.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeptensor-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (685.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

deeptensor-0.3.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

deeptensor-0.3.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.3.0-cp310-cp310-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

deeptensor-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (756.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (758.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

deeptensor-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (676.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeptensor-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (684.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

deeptensor-0.3.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

deeptensor-0.3.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.3.0-cp39-cp39-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

deeptensor-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (756.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

deeptensor-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (758.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

deeptensor-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (676.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeptensor-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (684.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0.tar.gz
Algorithm Hash digest
SHA256 f8495958f805b310d9a6eacc0fcab605160b3dcc11266670e052387fea3b05ed
MD5 e86ff1779139d4a989f201301e2eebfb
BLAKE2b-256 86d078b977cefa256428e93733b09a3f4dd9afc9d1e89dcbf28c9a151109d514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b86abd012ac27b423db5727011204770b4d118b66f94d617001c2b9104d8b6a9
MD5 737eb4665fdf9ab5df9365fa57266394
BLAKE2b-256 9dfece2461ed56f1b45683de6921b3d6a09eba30523382fbea90713dd055f6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60773da3124303738d3d1c0d084f18ae2a821b70bac11bb3b3fc64b340d310b2
MD5 c2e90e276c225adacd99967584f9da5c
BLAKE2b-256 53cc4a0076199e3346dea81808bc8d6bbfcd2c9131d093560b12bba764b85e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af0160b97781d19d4c6bb27dec31b49b6ab04691fa8bd72a7e169a90b7555e0a
MD5 10c1d798ee3f08c63a1fd6417204a100
BLAKE2b-256 f8293f737c116c6c571d5305cd8c207d3e0ae47a1d071ab88c473ec3b6483eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ed3c93cbcd4028a0371dd1666a8442c6345fa354f396f3c4d5601fa7a3e7ae9
MD5 f2c5258063e2599b0ce2ee32dd731b55
BLAKE2b-256 1ff3626450fe4282364fecbe31f561a8fecc608f701645b95dbf9ad54223ad8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 55ae0e7e6174952e95eb83cf1af70e4de72e7a56efb91eb744201304221a7c67
MD5 897d59ee7e9015975836a9443b0df44a
BLAKE2b-256 b88af01852eace1d00bb173671aed1915ad72239a60d28be5addb734e786614e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce267c9fb204d2b15fbd5599b29ae6345ba3ab62fbf4b4600b5bbd3d7e032997
MD5 c459a935925d1e2d1bc53368b5916653
BLAKE2b-256 b0777beca4370f11fc9eff9a9d5cc618095d02894cb28d9140456e8110bfcbf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8504f4cea545ef7a77463b3edd2a22238cd4ad11336898be5ebc96542f50045b
MD5 908ec7c52b83f637638e65e9b1db0a0a
BLAKE2b-256 a3df379a03eb39a3ac9d30d291d1dd4e71c104d1967330c8b7cbee2d5904f168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db157ea79d61ada68f78fbd8f3e08918f63799e8b199b726151ad33e9614d0b4
MD5 39d99bd9ecb29dafe78d53839972b572
BLAKE2b-256 d92e1faa00e6a0c7982d8fb151efddeba6c7e44d2c4b687e14102ce47b6d06cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecb5e100cabc5d6a43b66106901dce38423a71bc3cc91a9a3aed55399c0b9399
MD5 16dcc91c6f397582bdf03f7977d3ff36
BLAKE2b-256 61c596e47931ebac3aacad54ac3e01a7b7aafd1bc9cf0d6640e153dbb8dc4e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f83f2ee8ef6570744afe6e17dece1f34678426c6e55c9b1365b7eeb70d5be31
MD5 908ef78b2a5ecab240b4d70a0be05e12
BLAKE2b-256 f9aa6fe781cac2db2637c277419cb69d72347ae1a0ac19a967d118567364dc31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 391277c53d0876f40a465dec30a08c5515a43fcbfb155b66b70cfb26900c166a
MD5 91c635ce16fc89c883e13c0371c95cc4
BLAKE2b-256 9aa979c7c2998caf6ff11a55a4b5aa3ceef49ab7cac999fb45f9c29ebb8458e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 da66f50a0d4a942bd3f23f60ebafce9514bfd3b880ada77510a1ef923e170beb
MD5 57a2ebfdeb6bb5c9fe19a54025c478fb
BLAKE2b-256 a71471597bd5f39d4a345a9a3851ca8634f8ae59815fdbad3fd9f73831b34541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd1ca304d38d1ae9a14a3198a83f735f6101a44b30f85a71d01a60f40d9682b0
MD5 44e66c31d499c99b4cbe6d88f27fd7d6
BLAKE2b-256 2f7d882288b620c8b456987973d0ead9a613a537e94612e0498ded0971cb07f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da1a64015468d202bbbbdc3249a4d23f3b31215033d9e2c13d33660cc422a8c5
MD5 e697b0c19d1642c28da31d47a70ff0b5
BLAKE2b-256 f8c855e76eba4ed6e686d44e7e979b6f283a23fe7970475803f88b43705df26a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b242aa8e03f2b661313688892ad4ac0aa71a4eefba1c7f2cebf3f801298f4571
MD5 8d0c290c78df90f50ec47459b14d3dbd
BLAKE2b-256 2e12fe0c738ccd33441b5eb13344f1e252a49129fff678aa9296f2aaff257b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a86dca07a42c534f5e529ae88b3a3417251827e0bfebdfabfccf930b514ff56e
MD5 4f891abaa57e28945a2d9ec7b47576e8
BLAKE2b-256 1f8ae83a3b57bf9cd10a028f80c79a90284e4842d3f07b690b73c756dee9f635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45acdcacd799c5126480a38bfdcffcc14e5a39ab663839bb7c61ec548cdf6315
MD5 aa632761e3eac5323660fdc8ba30804d
BLAKE2b-256 db9174919e4590645e07e8be49b0a5556b158642e1be035da8a5885b0399bcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e69e09aa57451f0313c28621bc05ed185d708f336325ab672df762adacd963a4
MD5 64152ca4740061bce5174f88445e22fc
BLAKE2b-256 f8290ebda018266525bbde6cb7195173066af3f63f083ba596352afe43a04640

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee11697252b3725d23d85b370719d40e949f908cb1f4db78a5b2bc827e52803d
MD5 eedffff698f30563fd75ff32c9e80207
BLAKE2b-256 6d6fa155d7832b5e8bb32ff795c417da05ee4a18cac395c195f0aab87d275007

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 54007eb38f3f5b3ae8517870ae32853beeb1ed0b58196444b5a8f3db35e51ec6
MD5 e1670903a0ea79a6ae3539691aa3f2ef
BLAKE2b-256 fe974470c7d7662531505d213adf22f4890337ee205b792e948f69227e48a7ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c056dbd7a482dbf107751a8b42135e260eb351fb48f2772b16c7c0f8210a4d9
MD5 d546ed9a52215625fbbb153fb2cf2fc2
BLAKE2b-256 cdd20816ebbc66815fc068c36e90e3e1311f28a1765b6b88085e3b0f9ce70c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b44cb966520b378b331b4c3a7deda17bd08f33bab47507fe8b90280ed71ff5fb
MD5 b19b2589da4d6c5a8501072450612d05
BLAKE2b-256 11bd4892f0ae170bdfab926875ba3944981d555878f76a0cbd57ba7431b1124f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fa4cdc820f39bf713da1e9b15559bfad7860a6639a73b38e1ab9431686755c5
MD5 53fac42fb056267a1f980c52a063dc0c
BLAKE2b-256 3916fb417c04eba0e1b66b75f7e14e3da543b50bcabe29be170edb4b10582194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f7af40ab1579dd4068e812915ef2a8651aba93727b493bcde04ba240ad0bebf
MD5 40e58c4569c04fe8c3551c7ac379f6b1
BLAKE2b-256 feaf8134f5c0b379104b1f64f8bd26b614b0df9163329c59fec64d42bae13f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f54d57931917bdb34dd2b42551b62adc84a41545cbae804d4bfa91ba4b93d39b
MD5 d764e69af2368cf69aba195521ee81ff
BLAKE2b-256 a63c7135b6446d0bc25844f1a9a9d6aa8fe09139d3391094365e8d5bf813b890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6696afec31652e57ec4cfdf18b60d41a812273555b2fe9d823385a93519ae2d6
MD5 960fba9a855396f21228ae709d6c6fb2
BLAKE2b-256 95533a7f8f7943bbb3510f3c010abd21cce9748e45d71fa4e46e4e138e9be987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b72b387d8df8958ea3edeb7d7ea89f8af5ad9d15564fe84aa415909183fd06ca
MD5 b836ba72507794657fe1e83f69a0722d
BLAKE2b-256 c911f1ee464f6d8cc8c1b2c6460f84e9ee091a7bb4894ef142f283188e8a7604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a349193c9bf487f5a505ef1d080c0c139cedfffb895985d129a70342969a3dd
MD5 3e42124f0c2528c4a06f95822d803e0a
BLAKE2b-256 62f0d776dde2c1c68a07535519054afe4750c6d16f66c28aff767035056ad3d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 544caf993900aed99ec147bcd8cdd1ea038ca25b77435d9860aef4efc99a9784
MD5 7a6101902afb3413334961ff21d82f7e
BLAKE2b-256 ed3bba6910c312d0657d91e8641cb7ece37978a805c32de07abefc2031b91779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ff865b8e880340a685253b192fd6644eb98da4a0a0cdf5fdaf63beeddeec64e
MD5 e1db7d5494f26d21a1cd786a0ee9c27b
BLAKE2b-256 e02eea99641719c2522f9e4fa6f3d7441b713d23b9fc096b325093f02f8aafcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5aabbbc32cfb5004cc5e6861f85d2a8361a7fd15d44150b83fc063665785a19
MD5 99b03bbf339aebf1f4a7d78f0947b64d
BLAKE2b-256 13134bf4e856eb09cfbad5fc3340e2526d54271e487ccd46afc44643aa9f659d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f64c3da292ce8ff02ff1d43853d4549aaa69d2cec097ac3e77d16355d5c35643
MD5 02f508eddcc74a6db3a576c2e53def3f
BLAKE2b-256 84fc66881fa7a02b0be854e8581f4fd586143e75794e6e19977e7b21d9bae8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f041d4c429f25d56aa051a4a27195998a5a8a95b7f9ca40a9694068350026b83
MD5 1f6a9fb90eb6b31cf56bd9c7c2131879
BLAKE2b-256 5fd15ef6df7acd2196127a60908de04193e7750e9a8e2907e9a582856790b691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12d01ad46a4d04e1e576126d4f0ff47833d53a0e6723b01cdda5e776e7193bae
MD5 344ce93503d615c4c4be25eecb6a8d18
BLAKE2b-256 f4df45a33cbee2600e271998661c3c83edb307e479a48cc9528cdf37ed74869d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dea7fdd6b59d79faa8329ad7d893b4a9f04936018d4f62c44d042c32d6cf4477
MD5 e1b6d7c63d10657a3879926e917234f6
BLAKE2b-256 8b4c94ebf05358ba4aae1cbf504e04701c589f448febdce6f30b4280b5fb1dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 787f8efe11cb357221a5cfcfbb9dd3f00f3b08a5ef7d265e1eb4ae203e8691b0
MD5 08cb48cd3fbe336387059739d93da448
BLAKE2b-256 c7d204cc3bb4ca0336c36f168753b8a94900addfd03af4414db9e1e2b0fcfadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2735360ebbdd44677c195a90b81615699fff8c3f594bbb390064ab4ad1a4962d
MD5 11628b8eb242fc70b0a5bdc59392ea46
BLAKE2b-256 f1fb4ed85fa0d06604aaef613beb0bbb9657a7197b5a3b8c355ce5ce08bad4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91d8dbf11fe86b82a59419bdc67235c38595ad9798c91dd71d2286c47189a12d
MD5 89baa42585443d8ba3bc75befe38a421
BLAKE2b-256 5b4ebd0d82bb895dfa48044f954442d6642c84fa0be1d6384cc6050d7878ef15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8559a25c1be4dd3f753fe1b7b70b23a9a71a89225c8d50946020c02b52032c48
MD5 506004932525d7686ffb9bddbcf0a3ad
BLAKE2b-256 c646b3294d40c60b604bef9af7b5dc96a62e9ff423ded12ba7342db4b402de6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bbad613a14aa00d9779c0ef913df5465b7ee81f155e140a6314a4ad6077022d
MD5 9f6cc013d0df8f85d39ccf7d2740e0b1
BLAKE2b-256 10fca0982b7c718b4023fa40a25333ac82997e068b58fd5d6aed9d164b578f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9259c3e39368e048ef40949406acf5e7bb60ae772931399d6d78db88b17b1e0c
MD5 c5ebd116b49913ce125aec2cc76b79b9
BLAKE2b-256 337d23ad87cb94fdcf4e74497f81f1f3fb39fdbbc241da5628810868bb3e8bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f09991bd3e4f785bf69271523de21dff76ffd6fad6414a6a1f5a98a089e9773c
MD5 8f1edd8e0b4fdc6d685da585a201a226
BLAKE2b-256 96aad3a46c582432bfdd40d6891f8459e45fb1a2b637e79bd2314b175613e44d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.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.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b55bbf4144b6d17e11c7c6db1774d6158d6be6549501ea790497881d4f11f10
MD5 ee4ab9661dddc2b43b81802bb4dbaf79
BLAKE2b-256 88de09faccf8323f9742bca0525d8343afbc1c4d8cbb4c9a8073e55b4c7b72f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6a1d8a9dbf87fdc3e0aabef13359682a44f0520c6c440ed510f56a26a36a03c0
MD5 ee1b1088e4ab80a980f6cee3d8ceba0f
BLAKE2b-256 b3aabae2094edccd1b3dd93629754232c2c65fa93cc5ece04c1b4d48afaffd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d767082f8778a6c041af60c306330c61fbb00d1815beaeec0d84064e68e21cd
MD5 3f2c4c3498860809938640e5b3530f6a
BLAKE2b-256 0c1696db149a93f81cc03388c67fbdfa7149aa212e3dcaa1cf2698484c5e12b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3fb0191e85d2d5348d38425f4df2695ab7340cf39153aa2701a46ec465198bd
MD5 57a36ed49f76d300a668ef7a7204d319
BLAKE2b-256 9075a945f3aab9bf43b6d749ce906e90bb22e46f70a08c9a33b79fc85cdf8f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d91903474bca37c0289f3c4b174627ca6dec7d1bec8ccce4e0f8cdae2df20d5
MD5 a2e702010aaa59c039967d5fd602a628
BLAKE2b-256 73f4070cf1ad52c769b1aad08059268f573feb66977cb5ac3bc0775f34ec5162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90cacbbcc83ffba18198d27fe6ad5a0df2620c2bd54920897c3045bdc13bf05d
MD5 425cd393f94ef61e4591071ffc941916
BLAKE2b-256 f53ff9fdaa6aaf73934ae2c0b2be1d87600a41291b686d79eca23a929e1789b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9786b52f4cdb982ea6b6d2bc99e06df5042caf4b99d83f7a29ebf3a1b644bc5
MD5 3bfa8a25604a425bee0ed7c939c1e459
BLAKE2b-256 ae23d65a751dac371e38d47674b850ca9b2564c2305b26923e148ec2c9d5a078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 418fb9e416ce0d6e9b5599abd361209cfa9a03529307a7952948f3adab9d996f
MD5 2cd53e56f394b41fa93ff23089c5ae93
BLAKE2b-256 5ad6948abac0f4a755c556bb4b17b6b2aa483fdf3913af0468711bdf0caa76e4

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