Skip to main content

A minimal PyTorch-like **deep learning library** focused on custom autograd and efficient tensor operations.

Project description

DeepTensor

mexican cat dance

  • DeepTensor: A minimal PyTorch-like 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,
    binary_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.4.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.4.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

deeptensor-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (758.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (761.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (677.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (685.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

deeptensor-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (758.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (761.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

deeptensor-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (677.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deeptensor-0.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (685.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

deeptensor-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (762.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

deeptensor-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (679.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeptensor-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (688.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

deeptensor-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (762.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

deeptensor-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (679.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeptensor-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

deeptensor-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (762.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

deeptensor-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (679.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeptensor-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (687.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

deeptensor-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (758.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (761.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

deeptensor-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (678.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeptensor-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (685.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

deeptensor-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (758.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

deeptensor-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (761.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

deeptensor-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (678.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeptensor-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (686.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0.tar.gz
Algorithm Hash digest
SHA256 e2407f47cbddf15410cbe77ff550b52ca4ebc888dfdf4f92169d62b6ca1aec11
MD5 28f521397df0104fd78c8f79e55773f2
BLAKE2b-256 736926b4c66ca6789dff4e8dee25bf908480c6988552a3a6295edf0fd3259c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 621acceaacc34a14dc516dce59a5884035553e86c0b5f2937fd2a997661ad50a
MD5 3a33a920b911c5b66a8f32e12eab4fd2
BLAKE2b-256 808e5c03479a17d1b9ea788f4b955827b373cf7906a8947e22cfcaacc39083f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74f4a11da86c7cc8c8f83335d79f0f222482573c0609f3856dcd5255edd01448
MD5 4029cefc9db76134d711269569d905a4
BLAKE2b-256 37748f36880aee3bc7413825b6724a4fd469863e56846252d56fcf156af5aa11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55468672a47a9687a31936e86a6fe814b6dd97d2f3edc452b191cc6ef375a685
MD5 39db082594f0aa7496691725cf8fe5a8
BLAKE2b-256 a4d0a811cdab440097674fcc30ff34e89c78df66736a376bad5131de10fbaadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 918292270472a6192ec3e74a0cf81161168e1158596dc91b878878f906cf69f3
MD5 eca2a53c21805efd64820058d90d3f3b
BLAKE2b-256 7412dc683543a8fb68376cfd8b103b295b3f3325cfbfdf5b59e57e92b2c92877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e479cd29dddc76aa0c9c836c3fabd0b4fee70a80c8a7ce4923161ec4cc48263
MD5 98850de90f2f38b718e700a17a7de8ec
BLAKE2b-256 9a8ba36979337bdc222874b9ad50925c91abb7362c6c6ea419e56edf6cf2d898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4378a6532b8b0b4910fcfa86b4248c53cb54d5a8a548ed024199816710c1930b
MD5 6878ccbb6dfdc06e5a0189efdd2585d1
BLAKE2b-256 4ae3f0a26a03ac03b1e3036494bd2f6f4d5e9062fcafe85a97d00e6cd92e9b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f790e57496e4583972b464e49fae00a9b05dd33c0bf14d8f1f400b1a38aaa5a
MD5 e2bc9a7e7ed699b3dd0d057272638b4d
BLAKE2b-256 10487b23e0586a68f2ed02017aa657ed448a03c613fd020d1195621c2e244aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 630aa76f400ee711e39511d45b0f28ac6ed85f7c68660129b25a90e7987a9ca3
MD5 e8ceeacbea9aec2452fa2b624bdcf6a4
BLAKE2b-256 de00a057e21ea7079464d55db8e5b2f0dd93840e09ece8860550360cbe9c9b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 847b8f8f77fb85805fb358cb4b607754cd7a40aff1c6be893dd4b69769468190
MD5 aeced8a1ff3baf76ac03cc3fa6630dcc
BLAKE2b-256 ea51d48232ef6f4377357e1ac43fb053de6c64aa958d4a3c0c04331e7698e317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ccb926df26186123c0b73bae8b111a608daefa9be6746856de9e1a43b4e1e86c
MD5 26cb3ab6f9fecf384b275772a6d699af
BLAKE2b-256 b6f909514510f865574af0b926de2b188872482476d49add2fd52af413c620f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e5ca4081c6584ffb2de5cd8ca39f96800bc50374a920567089539f8fd3ffceb
MD5 5cc44ee3982813cbbfd53f38432e93aa
BLAKE2b-256 8485800960217664b543d35416992269a7149905f85c58bc34d960a39128ad5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3942c9af0ba9474f6c3d8908f30fe76516db38cd6826169e47d6d6fc2491fd4f
MD5 ce2c222fadeb89dc4443d01aed46c696
BLAKE2b-256 59eba6dd7fdc91cc40dd6ddf5f385b97d0a5f8780f4a42445095cc8e0ba9365f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b271e9086a092bff99675f4389984fbd8dbf2ec22914877a583bdf60bd8a4ac3
MD5 0356abe106748ca003f1286f3bc3e30f
BLAKE2b-256 3285f06b675c68b9c7e4cb1b50ec42266d9e59faf926dd782b05733ee8c8bbbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ef15a063ef173e0a0e3c2670c4cde03fece3c40a9968f94b11ff312b9a49a78
MD5 d414b4f558160c13dd86ee2c985041fc
BLAKE2b-256 ee26bc325a5e1f4d109ca1afb9f4eefcac0f8afd440093b71d5c5ab9b73bd258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9883494ab293466549782579635ef0bff6bbc28efccc15c9b3f8ab32cb47f840
MD5 202feb111883ecb4b9c55bc669385846
BLAKE2b-256 3f2b8ab9de9953af262a3c7c6103cef655a5ca2c42f41307417ba74ca0280d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccbdb57858d36c401aeb6639b4faa49fe2a0cd713da0278528e1331349da4049
MD5 afe5a03d06effa382509185aa0db9c8f
BLAKE2b-256 03175b0666f5fd405a06f29b9308320307206d132c964f6c302b5f3936786e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96cc2a1090fd562feceeb505805807e437ed1ef771ed1481a0a8acced7eb8358
MD5 618b7a4f45cc4ac4d007c76437da907f
BLAKE2b-256 37b0b497f15eefc7d3b630ead25014bcfd3a9b93a6c9fb559c43e705d6f7dc12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86ea2c2a213923bcb8ec8b98579f514d85936b2a0afab1b8b3ce4240020efec3
MD5 8530ac040543882f52d7dfdb38680720
BLAKE2b-256 1557d1e0d5f73e57e23438096d08d0888cab2a4715a4cbe31462a2a0c70e3d85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 95bb2823b74f799bc76e2072e27e697cf8642e831eebd9f4bed3a0b939e77a15
MD5 b934ed67458ea4ca3999a17dcbfb9fe8
BLAKE2b-256 b70a102d7577d4905dd553cd458ab8586f83d3fa9427f77ffbd96f4210705bd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4ed5c1043a8ba30f45a29d3f656d80d6a8fa7c4910cea68aedac74c336a475fe
MD5 f2bfbcf34282fd15afb7783a1172a945
BLAKE2b-256 b49e81c45de4dd07638bbfa894557fd36fcdaa2b9da53b689ac4c826df3cd076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50cbb5f66100dbcb1f31a7cfd6b8a20aa8bda415cf515f37229411217b895b9f
MD5 250d79bd197c4fedb03355014e61463f
BLAKE2b-256 393d137513d473a34bc8a23f9dbd9aee9cd62a8d19743646c53201c5a139f054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9fb0e1ffba1ca36c92fc48f7d6f67048a0673d83e144f0edbbe034277d1bbcd
MD5 9415c808cc8640851efae825b30b39cb
BLAKE2b-256 d0789d5f286dd721041feb7d064b2a42b0bcfb843ac0b42cec9136d4d5f24190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab5608369c51b97f20960494964b6ec6cfee80221190654e44caef6cd80979fc
MD5 46a48a2031d871186a830258ecd543fe
BLAKE2b-256 42bf46d12d7dfb27a6ed71ad5d470f444d13b7f9465894aebdffadb5bed03fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b66f9edc19227f007c0d0f82cdffb52bc9398282ba12f7c9eb32bf950a86b953
MD5 8b7c15d41e973d4500d4b33c156da65c
BLAKE2b-256 e05f09d8aa00b878092fd63c1940ce27c354d545f081e46d951ee33e71721f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91bd1fcc061a891778b7317781a96108b5ec2019120c2a1c3c691f6d36fdf11c
MD5 98d593160139fb199b15c7d23a6866fe
BLAKE2b-256 8ccd50348a125c4477d517f1f84a581c0f1b81c86445dcb332c54461caa4df9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b8328b550a3c0e26b623be1b6bddd88b2ce3f73ce492bf5666f75b30742a0c61
MD5 d2a2c5920d6b1d235498280eb7cdb651
BLAKE2b-256 3efa898d71e641fd7af377a42d7b74d89c1b5ed125f6aabe1194f446fb0efaca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ee32130a2761f45da2f05083c8b65b90ae9758a494fbb89c37204865cb0c948
MD5 64ad79e543ecc8422df62eb6c7e38748
BLAKE2b-256 43a98f387f6f5f5fe5b0a495544fe647b5b71f9f41cb9ab2d626bb2cbe1a2639

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 962e62a464b836e2f539a5f021295ce48a834b69c1510b9f20a2f45b09de81f5
MD5 24cc7659fb5897d2bd526c3fdaf2dd26
BLAKE2b-256 8f7ba3ce60977ea6442eaf27791b3d49c5ac42c7ac86b0d13ab19cc0824f2ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a319ccc2b2d438f60a5a9fe4bbe298da32479c6b013ff77ea8ff149bb464cdf9
MD5 15762872553f6411556176f71661a7f1
BLAKE2b-256 760c11b8ac9a8354fbf29428952df27f7a3df0a16b29bfb2a36bfdfecf932747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f7257619d2104834e4717217fb7c0c076d316ac9db47e1944a8998d453c679d
MD5 58c470708a83e52608e852aee8dcf401
BLAKE2b-256 1f02cc430e9e0943d03bfae2293f29b5637a5a63e049b7eae47b9439d65082e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f35a4a276f75ebdeb16e325f479e08360c4927e175e9dff130d6d334596db251
MD5 654878fba53bebf07e7d49661ff9ee26
BLAKE2b-256 ac410065d6110f63243aba8066cd90e97e9fdf49fd7f38fed611d2eff99c55d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 758aa34d058b127141aa04ba8c02e5f04dc4d76b24111883dd16499dbdceb666
MD5 123570fd4b3606833694663c33771fac
BLAKE2b-256 39ce936531533aa2686a3102ab92e22c37d06c94f0f90bf80cfb48b0f0fb4ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ade55312d4b8f950fc95d5f45bf72977148afb3ce8ec1a452bd57c9fdf72377f
MD5 c3f6489ce38a0ee9d551a66343d2bdf4
BLAKE2b-256 9fc2cdc5e3276970919813809508f816da901785a0254a138a84fa2b851d041c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d58110b02f6fc6b1ee397cfa91a8eeeb6ab68c934fc6678a0466ee26aae29ed
MD5 e769a9e6a59610e715836e64ab9f036a
BLAKE2b-256 8101e4cc3732047e0f0cb8f1fd6c52e1e26f3bbeb95f0e6a4a006be75e083417

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 222f425b99979388f80b4cd1924a55189da76af6358b8ab176430107bae85253
MD5 7d58f02bff9ce8fac7444290c1273d85
BLAKE2b-256 73a5a36dc1624c4e97442201f9a03bb412e912adb424fdfa5180384aec44f233

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 013f4fb6051d84a2546c0f81924b250ef7ded5702a2b1ce5bc39eb5ddc468564
MD5 3e75ea88f505499b8f4bdbe510e37395
BLAKE2b-256 c1cb4ff5ab007457f2a8d4d88ed153bf53a06ea7d92d34ea38f1d6481eaf8be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d33c17a5f65b3c5a6503ae3018c54632e770fa395cbfc5326b6a40fd7a98fcac
MD5 f0d420f05e453aab97882e5f5b42f76f
BLAKE2b-256 078706af43c5f03e2fec1d7b7116fbefd7e2ae83b3f543920c9d0808945dc23f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b682240c82955cb953b9417bfc908317237228bbb0a6b7de4d4b1585dd1133b
MD5 7ebf6e53fff09cc31a9370aad3d3a4e3
BLAKE2b-256 9a99149a18eec8791e582fee0e6e892c651e7da899ff8fd2ac79f20d5489bb7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d19e77885e0618ef7f7cbd3413a4ca9e5e0d248d4902c943ae5a8c884efca2
MD5 e29e54c2cba04824cf036c3d09c73190
BLAKE2b-256 fca76a1f2dcac8b1fa751c860d0a97191607c1040ec70a14fd9ff6f18a13081d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4037db7403b1fc468ee0ccef85643dab0fac251e400b682e7ba0c590b9941db
MD5 d17a68075da222892db89ce31639c8ff
BLAKE2b-256 4e42f5e8ed3851a3e0ed3ec9d68b8ebfc62713fd06771c10c7a36c6cf0910505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f17e948280b4ceec95e3e73b075a819b604c50cb1a0c04329d5798b643161385
MD5 c4aef4fb13371969bcd409a6649b57cb
BLAKE2b-256 2409b2ee3fe91adf15f765e9a66fb6cd6692cf610346c2076687dbbd0b1a6eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a379db7603c1ae117d1cc00c97f10a4696ebf0b9778d5cbbc5f9c937b45170c3
MD5 5729326455a7b62968b6fec5349dc1c4
BLAKE2b-256 80aa99a30d5f2150205164e3dd1c4434673072c2ee293ae636d48fcc931533ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6028ec602e2ec657a96e6205826dca4ea37c68513748d8bf731db6b139d6dfa
MD5 f244a49e3501ef24b313eaa7518457ba
BLAKE2b-256 40f45478c7b47007b035253cf94202b069190c672a04c7139ddbd68cf7450cf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: deeptensor-0.4.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.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b1504852cf2801c8325d481c3f79476443a8b4b50bfca7ac78e9fcd0e233b978
MD5 dd9ce68d98327b44e033353eddb8d5ee
BLAKE2b-256 5fc1bf80b4bf3b82678100ceab0a18c788f3eace8cb293d82dfc96a99a6bb8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3810611bb3e3d3c3ad9d84dcc41bba15455774af845bbb8f3d4195df0c92738c
MD5 855f7c55f4e37ca7dfd65c2a9dc1daca
BLAKE2b-256 9f2ff347dd5834f0a5c1b2f4ce5ed748a38d406cc60441cd8fe62ed66ba00a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b13c1db3ce2831d85a0f75c27a16f241d6577bbabfd704fd4fbb9cc3ed4bafbd
MD5 567e5e1ca7181f4f6007c49abb585f90
BLAKE2b-256 a38635902de4ef3c797726f933413222b5ffe7f77a106686ae86f59ec3c201be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 013e413a0ff01075370f567b29fbc238e84bac3d2427f299e2b9405029db30e5
MD5 f51be6b9b4ea319f6fc6ee67a6828cbb
BLAKE2b-256 231e0d063c46f1d22aa0f853b21b79a015af493d0ff360b6637641da02f444d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8d8e0b772080ae1691547a0af398475115bf986f1fe76362354101f1cfbcc7e
MD5 c95aeaf432ca6a968340d95320aa872a
BLAKE2b-256 df3c329ca9686cbfbde828e7352c114b7290dbe6c3fa679187418e5d4ff95277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2ae711b64c4b3f003ece8eead6bf230adb3281311ce2afadaf26c16cdec440d
MD5 3026d0b93a6b9f5b1e7713398039fb83
BLAKE2b-256 b368490d943cef1356e6116878ccd6225222986aa7f185715b53c0d31aa18638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeptensor-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0bf73cfff3bc09ad484adc9cea81b8bc016e4dd192c1c0161b7494744dac982
MD5 7b3bd43480af48a79348597eddefd104
BLAKE2b-256 5aefc888483cc131acb28f74ce721735af1261941a44edcb35a1cbeb06795b32

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