novann 4.0.1__tar.gz → 4.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. {novann-4.0.1 → novann-4.0.2}/PKG-INFO +3 -3
  2. {novann-4.0.1 → novann-4.0.2}/README.md +2 -2
  3. {novann-4.0.1 → novann-4.0.2}/nova/__init__.py +1 -1
  4. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/_base_tensor.py +2 -1
  5. {novann-4.0.1 → novann-4.0.2}/nova/autograd/grad_mode.py +1 -0
  6. {novann-4.0.1 → novann-4.0.2}/nova/serialization/_safe_load.py +1 -0
  7. {novann-4.0.1 → novann-4.0.2}/nova/serialization/load.py +1 -0
  8. {novann-4.0.1 → novann-4.0.2}/nova/serialization/save.py +1 -0
  9. {novann-4.0.1 → novann-4.0.2}/pyproject.toml +1 -1
  10. {novann-4.0.1 → novann-4.0.2}/LICENCE +0 -0
  11. {novann-4.0.1 → novann-4.0.2}/nova/README.es.md +0 -0
  12. {novann-4.0.1 → novann-4.0.2}/nova/README.md +0 -0
  13. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/README.es.md +0 -0
  14. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/README.md +0 -0
  15. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/_lr_scheduler.py +0 -0
  16. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/_lr_scheduler.pyi +0 -0
  17. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/_optimizer.py +0 -0
  18. {novann-4.0.1 → novann-4.0.2}/nova/_interfaces/_optimizer.pyi +0 -0
  19. {novann-4.0.1 → novann-4.0.2}/nova/_internal/README.es.md +0 -0
  20. {novann-4.0.1 → novann-4.0.2}/nova/_internal/README.md +0 -0
  21. {novann-4.0.1 → novann-4.0.2}/nova/_internal/_binding.py +0 -0
  22. {novann-4.0.1 → novann-4.0.2}/nova/_internal/_generators.py +0 -0
  23. {novann-4.0.1 → novann-4.0.2}/nova/_tensor.py +0 -0
  24. {novann-4.0.1 → novann-4.0.2}/nova/_tensor.pyi +0 -0
  25. {novann-4.0.1 → novann-4.0.2}/nova/_typing/README.es.md +0 -0
  26. {novann-4.0.1 → novann-4.0.2}/nova/_typing/README.md +0 -0
  27. {novann-4.0.1 → novann-4.0.2}/nova/_typing/__init__.py +0 -0
  28. {novann-4.0.1 → novann-4.0.2}/nova/_typing/_typing.py +0 -0
  29. {novann-4.0.1 → novann-4.0.2}/nova/autograd/README.es.md +0 -0
  30. {novann-4.0.1 → novann-4.0.2}/nova/autograd/README.md +0 -0
  31. {novann-4.0.1 → novann-4.0.2}/nova/autograd/__init__.py +0 -0
  32. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/__init__.py +0 -0
  33. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_activation.py +0 -0
  34. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_arithmetic.py +0 -0
  35. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_comparison.py +0 -0
  36. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_convolution.py +0 -0
  37. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_creation.py +0 -0
  38. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_indexing.py +0 -0
  39. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_linalg.py +0 -0
  40. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_linear.py +0 -0
  41. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_loss.py +0 -0
  42. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_manipulation.py +0 -0
  43. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_normalization.py +0 -0
  44. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_random.py +0 -0
  45. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_reduction.py +0 -0
  46. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_trigonometric.py +0 -0
  47. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/_view.py +0 -0
  48. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/native/native_functions.yaml +0 -0
  49. {novann-4.0.1 → novann-4.0.2}/nova/autograd/_ops/utils.py +0 -0
  50. {novann-4.0.1 → novann-4.0.2}/nova/autograd/engine/__init__.py +0 -0
  51. {novann-4.0.1 → novann-4.0.2}/nova/autograd/engine/context.py +0 -0
  52. {novann-4.0.1 → novann-4.0.2}/nova/autograd/engine/context.pyi +0 -0
  53. {novann-4.0.1 → novann-4.0.2}/nova/autograd/engine/engine.py +0 -0
  54. {novann-4.0.1 → novann-4.0.2}/nova/autograd/engine/engine.pyi +0 -0
  55. {novann-4.0.1 → novann-4.0.2}/nova/autograd/function.py +0 -0
  56. {novann-4.0.1 → novann-4.0.2}/nova/autograd/function.pyi +0 -0
  57. {novann-4.0.1 → novann-4.0.2}/nova/autograd/grad.py +0 -0
  58. {novann-4.0.1 → novann-4.0.2}/nova/autograd/grad.pyi +0 -0
  59. {novann-4.0.1 → novann-4.0.2}/nova/autograd/tests/op_signatures.py +0 -0
  60. {novann-4.0.1 → novann-4.0.2}/nova/autograd/tests/test_backward.py +0 -0
  61. {novann-4.0.1 → novann-4.0.2}/nova/autograd/tests/test_function.py +0 -0
  62. {novann-4.0.1 → novann-4.0.2}/nova/autograd/tests/test_gradients.py +0 -0
  63. {novann-4.0.1 → novann-4.0.2}/nova/autograd/tests/test_operations.py +0 -0
  64. {novann-4.0.1 → novann-4.0.2}/nova/autograd/utils/__init__.py +0 -0
  65. {novann-4.0.1 → novann-4.0.2}/nova/autograd/utils/processing.py +0 -0
  66. {novann-4.0.1 → novann-4.0.2}/nova/core/README.es.md +0 -0
  67. {novann-4.0.1 → novann-4.0.2}/nova/core/README.md +0 -0
  68. {novann-4.0.1 → novann-4.0.2}/nova/core/__init__.py +0 -0
  69. {novann-4.0.1 → novann-4.0.2}/nova/core/constants.py +0 -0
  70. {novann-4.0.1 → novann-4.0.2}/nova/dtypes.py +0 -0
  71. {novann-4.0.1 → novann-4.0.2}/nova/exceptions.py +0 -0
  72. {novann-4.0.1 → novann-4.0.2}/nova/metrics/README.es.md +0 -0
  73. {novann-4.0.1 → novann-4.0.2}/nova/metrics/README.md +0 -0
  74. {novann-4.0.1 → novann-4.0.2}/nova/metrics/__init__.py +0 -0
  75. {novann-4.0.1 → novann-4.0.2}/nova/metrics/classification/__init__.py +0 -0
  76. {novann-4.0.1 → novann-4.0.2}/nova/metrics/classification/_confusion.py +0 -0
  77. {novann-4.0.1 → novann-4.0.2}/nova/metrics/classification/_roc_auc.py +0 -0
  78. {novann-4.0.1 → novann-4.0.2}/nova/metrics/classification/_stat.py +0 -0
  79. {novann-4.0.1 → novann-4.0.2}/nova/metrics/metric.py +0 -0
  80. {novann-4.0.1 → novann-4.0.2}/nova/metrics/regression/__init__.py +0 -0
  81. {novann-4.0.1 → novann-4.0.2}/nova/metrics/regression/_error.py +0 -0
  82. {novann-4.0.1 → novann-4.0.2}/nova/metrics/regression/_r2.py +0 -0
  83. {novann-4.0.1 → novann-4.0.2}/nova/nn/README.es.md +0 -0
  84. {novann-4.0.1 → novann-4.0.2}/nova/nn/README.md +0 -0
  85. {novann-4.0.1 → novann-4.0.2}/nova/nn/__init__.py +0 -0
  86. {novann-4.0.1 → novann-4.0.2}/nova/nn/functional.py +0 -0
  87. {novann-4.0.1 → novann-4.0.2}/nova/nn/functional.pyi +0 -0
  88. {novann-4.0.1 → novann-4.0.2}/nova/nn/init.py +0 -0
  89. {novann-4.0.1 → novann-4.0.2}/nova/nn/init.pyi +0 -0
  90. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/__init__.py +0 -0
  91. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/activation.py +0 -0
  92. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/batchnorm.py +0 -0
  93. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/container.py +0 -0
  94. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/conv.py +0 -0
  95. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/dropout.py +0 -0
  96. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/flatten.py +0 -0
  97. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/layernorm.py +0 -0
  98. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/lazy.py +0 -0
  99. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/linear.py +0 -0
  100. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/loss.py +0 -0
  101. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/module.py +0 -0
  102. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/module.pyi +0 -0
  103. {novann-4.0.1 → novann-4.0.2}/nova/nn/modules/pooling.py +0 -0
  104. {novann-4.0.1 → novann-4.0.2}/nova/nn/parameter.py +0 -0
  105. {novann-4.0.1 → novann-4.0.2}/nova/nn/parameter.pyi +0 -0
  106. {novann-4.0.1 → novann-4.0.2}/nova/nn/utils/__init__.py +0 -0
  107. {novann-4.0.1 → novann-4.0.2}/nova/nn/utils/clip_grad.py +0 -0
  108. {novann-4.0.1 → novann-4.0.2}/nova/nn/utils/tensor_utils.py +0 -0
  109. {novann-4.0.1 → novann-4.0.2}/nova/optim/README.es.md +0 -0
  110. {novann-4.0.1 → novann-4.0.2}/nova/optim/README.md +0 -0
  111. {novann-4.0.1 → novann-4.0.2}/nova/optim/__init__.py +0 -0
  112. {novann-4.0.1 → novann-4.0.2}/nova/optim/adam.py +0 -0
  113. {novann-4.0.1 → novann-4.0.2}/nova/optim/adam.pyi +0 -0
  114. {novann-4.0.1 → novann-4.0.2}/nova/optim/adamw.py +0 -0
  115. {novann-4.0.1 → novann-4.0.2}/nova/optim/adamw.pyi +0 -0
  116. {novann-4.0.1 → novann-4.0.2}/nova/optim/lr_scheduler.py +0 -0
  117. {novann-4.0.1 → novann-4.0.2}/nova/optim/lr_scheduler.pyi +0 -0
  118. {novann-4.0.1 → novann-4.0.2}/nova/optim/rmsprop.py +0 -0
  119. {novann-4.0.1 → novann-4.0.2}/nova/optim/rmsprop.pyi +0 -0
  120. {novann-4.0.1 → novann-4.0.2}/nova/optim/sgd.py +0 -0
  121. {novann-4.0.1 → novann-4.0.2}/nova/optim/sgd.pyi +0 -0
  122. {novann-4.0.1 → novann-4.0.2}/nova/serialization/README.es.md +0 -0
  123. {novann-4.0.1 → novann-4.0.2}/nova/serialization/README.md +0 -0
  124. {novann-4.0.1 → novann-4.0.2}/nova/serialization/__init__.py +0 -0
  125. {novann-4.0.1 → novann-4.0.2}/nova/serialization/load.pyi +0 -0
  126. {novann-4.0.1 → novann-4.0.2}/nova/serialization/save.pyi +0 -0
  127. {novann-4.0.1 → novann-4.0.2}/nova/utils/README.es.md +0 -0
  128. {novann-4.0.1 → novann-4.0.2}/nova/utils/README.md +0 -0
  129. {novann-4.0.1 → novann-4.0.2}/nova/utils/__init__.py +0 -0
  130. {novann-4.0.1 → novann-4.0.2}/nova/utils/data/__init__.py +0 -0
  131. {novann-4.0.1 → novann-4.0.2}/nova/utils/data/dataloader.py +0 -0
  132. {novann-4.0.1 → novann-4.0.2}/nova/utils/data/dataset.py +0 -0
  133. {novann-4.0.1 → novann-4.0.2}/nova/utils/data/preprocessing.py +0 -0
  134. {novann-4.0.1 → novann-4.0.2}/nova/utils/datasets/__init__.py +0 -0
  135. {novann-4.0.1 → novann-4.0.2}/nova/utils/datasets/fashion.py +0 -0
  136. {novann-4.0.1 → novann-4.0.2}/nova/utils/datasets/mnist.py +0 -0
  137. {novann-4.0.1 → novann-4.0.2}/nova/utils/decorators/__init__.py +0 -0
  138. {novann-4.0.1 → novann-4.0.2}/nova/utils/decorators/memory_usage.py +0 -0
  139. {novann-4.0.1 → novann-4.0.2}/nova/utils/decorators/registry.py +0 -0
  140. {novann-4.0.1 → novann-4.0.2}/nova/utils/decorators/timing.py +0 -0
  141. {novann-4.0.1 → novann-4.0.2}/nova/utils/grad_checking.py +0 -0
  142. {novann-4.0.1 → novann-4.0.2}/nova/utils/hooks.py +0 -0
  143. {novann-4.0.1 → novann-4.0.2}/nova/utils/logger.py +0 -0
  144. {novann-4.0.1 → novann-4.0.2}/nova/utils/memory.py +0 -0
  145. {novann-4.0.1 → novann-4.0.2}/nova/utils/to_tensor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: novann
3
- Version: 4.0.1
3
+ Version: 4.0.2
4
4
  Summary: NovaNN deep learning framework
5
5
  License-Expression: MIT
6
6
  License-File: LICENCE
@@ -34,7 +34,7 @@ Description-Content-Type: text/markdown
34
34
 
35
35
  ![Banner](./images/NovaNN%20Banners.png)
36
36
 
37
- ![version](https://img.shields.io/badge/version-4.0.1-blue)
37
+ ![version](https://img.shields.io/badge/version-4.0.2-blue)
38
38
  ![python](https://img.shields.io/badge/python-v3.14-brightgreen)
39
39
  ![license](https://img.shields.io/badge/license-MIT-blue)
40
40
  ![tests](https://img.shields.io/badge/tests-pytest-orange)
@@ -472,7 +472,7 @@ poetry add novann
472
472
 
473
473
  ```python
474
474
  import nova
475
- print(nova.__version__) # Should display: 4.0.1
475
+ print(nova.__version__) # Should display: 4.0.2
476
476
  ```
477
477
 
478
478
  #### System requirements
@@ -1,6 +1,6 @@
1
1
  ![Banner](./images/NovaNN%20Banners.png)
2
2
 
3
- ![version](https://img.shields.io/badge/version-4.0.1-blue)
3
+ ![version](https://img.shields.io/badge/version-4.0.2-blue)
4
4
  ![python](https://img.shields.io/badge/python-v3.14-brightgreen)
5
5
  ![license](https://img.shields.io/badge/license-MIT-blue)
6
6
  ![tests](https://img.shields.io/badge/tests-pytest-orange)
@@ -438,7 +438,7 @@ poetry add novann
438
438
 
439
439
  ```python
440
440
  import nova
441
- print(nova.__version__) # Should display: 4.0.1
441
+ print(nova.__version__) # Should display: 4.0.2
442
442
  ```
443
443
 
444
444
  #### System requirements
@@ -126,7 +126,7 @@ __all__.extend(creation_all)
126
126
  __all__.extend(random_all)
127
127
 
128
128
  # VERSION
129
- __version__ = "4.0.1"
129
+ __version__ = "4.0.2"
130
130
 
131
131
 
132
132
  # TENSOR FACTORY FUNCTION
@@ -1,6 +1,7 @@
1
+ from __future__ import annotations
1
2
  from typing import TYPE_CHECKING, Optional, Self
2
- import numpy as np
3
3
  import nova
4
+ import numpy as np
4
5
  from numpy import ndarray
5
6
 
6
7
  if TYPE_CHECKING:
@@ -1,3 +1,4 @@
1
+ from __future__ import annotations
1
2
  import threading
2
3
  from typing import Any, Callable
3
4
  from functools import wraps
@@ -9,6 +9,7 @@ It is used internally by `nova.serialization.load` when loading
9
9
  weights-only checkpoints.
10
10
  """
11
11
 
12
+ from __future__ import annotations
12
13
  import pickle
13
14
  from nova.utils.decorators.registry import _MODULES
14
15
  from nova.utils import get_registered_classes
@@ -6,6 +6,7 @@ By default, loading is restricted to weights-only checkpoints to
6
6
  prevent unsafe code execution.
7
7
  """
8
8
 
9
+ from __future__ import annotations
9
10
  import pickle
10
11
  import io
11
12
  from pathlib import Path
@@ -4,6 +4,7 @@ Serialization saving utilities.
4
4
  Provides helpers for serializing NovaNN objects using pickle.
5
5
  """
6
6
 
7
+ from __future__ import annotations
7
8
  import pickle
8
9
  import io
9
10
  from pathlib import Path
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "novann"
3
- version = "4.0.1"
3
+ version = "4.0.2"
4
4
  description = "NovaNN deep learning framework"
5
5
  authors = [{ name = "JOSE-MDG", email = "josepemlengineer@gmail.com" }]
6
6
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes