tensorneko 0.3.22__tar.gz → 0.3.23__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.
- {tensorneko-0.3.22/src/tensorneko.egg-info → tensorneko-0.3.23}/PKG-INFO +3 -3
- {tensorneko-0.3.22 → tensorneko-0.3.23}/README.md +1 -1
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/sampler/sequential_iter_sampler.py +4 -1
- tensorneko-0.3.23/src/tensorneko/version.txt +1 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23/src/tensorneko.egg-info}/PKG-INFO +3 -3
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko.egg-info/requires.txt +1 -1
- tensorneko-0.3.22/src/tensorneko/version.txt +0 -1
- {tensorneko-0.3.22 → tensorneko-0.3.23}/LICENSE +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/setup.cfg +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/setup.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/auto_encoder.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/binary_classifier.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/gan.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/vqvae.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/arch/wgan.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/backend/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/display_metrics_callback.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/earlystop_lr.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/epoch_num_logger.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/epoch_time_logger.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/gpu_stats_logger.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/lr_logger.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/nil_callback.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/callback/system_stats_logger.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/list_dataset.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/nested_dataset.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/round_robin_dataset.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/sampler/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/debug/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/enum.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/fid.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/iou.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/psnr.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/psnr.pyi +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/secs.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/ssim.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/evaluation/ssim.pyi +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/mesh/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/mesh/mesh_reader.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/mesh/mesh_writer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/reader.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/weight/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/weight/weight_reader.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/weight/weight_writer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/io/writer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/aggregation.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/attention.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/concatenate.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/conv.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/linear.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/log.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/masked_conv2d.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/noise.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/patching.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/positional_embedding.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/reshape.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/stack.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/layer/vector_quantizer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/dense.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/gated_conv.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/inception.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/mlp.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/residual.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/module/transformer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/msg/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/neko_model.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/neko_module.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/neko_trainer.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/notebook/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/optim/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/optim/lr_scheduler/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/crop.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/crop.pyi +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/enum.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/face_detector/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/pad.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/preprocess/resize.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/configuration.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/dispatched_misc.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/dispatched_misc.pyi +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/gc.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/misc.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/reproducibility.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/string_getter.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/util/type.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/image_browser/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/log_graph.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/matplotlib.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/watcher/__init__.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko.egg-info/SOURCES.txt +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko.egg-info/dependency_links.txt +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko.egg-info/top_level.txt +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/test/test_library_info.py +0 -0
- {tensorneko-0.3.22 → tensorneko-0.3.23}/test/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tensorneko
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.23
|
|
4
4
|
Summary: Tensor Neural Engine Kompanion. An util library based on PyTorch and PyTorch Lightning.
|
|
5
5
|
Home-page: https://github.com/ControlNet/tensorneko
|
|
6
6
|
Author: ControlNet
|
|
@@ -32,7 +32,7 @@ Requires-Dist: av>=8.0.3
|
|
|
32
32
|
Requires-Dist: pysoundfile>=0.9.0; platform_system == "Windows"
|
|
33
33
|
Requires-Dist: numpy>=1.20.1
|
|
34
34
|
Requires-Dist: einops>=0.3.0
|
|
35
|
-
Requires-Dist: tensorneko_util==0.3.
|
|
35
|
+
Requires-Dist: tensorneko_util==0.3.23
|
|
36
36
|
Provides-Extra: lightning
|
|
37
37
|
Requires-Dist: tensorboard>=2.0.0; extra == "lightning"
|
|
38
38
|
Requires-Dist: lightning<3,>=2.0; extra == "lightning"
|
|
@@ -84,7 +84,7 @@ pip install tensorneko # for PyTorch only
|
|
|
84
84
|
pip install tensorneko[lightning] # for PyTorch and Lightning
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
-
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.
|
|
87
|
+
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.14 with limited features) with following command.
|
|
88
88
|
```shell
|
|
89
89
|
pip install tensorneko_util
|
|
90
90
|
```
|
|
@@ -32,7 +32,7 @@ pip install tensorneko # for PyTorch only
|
|
|
32
32
|
pip install tensorneko[lightning] # for PyTorch and Lightning
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.
|
|
35
|
+
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.14 with limited features) with following command.
|
|
36
36
|
```shell
|
|
37
37
|
pip install tensorneko_util
|
|
38
38
|
```
|
{tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/dataset/sampler/sequential_iter_sampler.py
RENAMED
|
@@ -32,7 +32,10 @@ class SequentialIterSampler(Sampler[T_co]):
|
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
def __init__(self, data_source: Sized, num_samples: int):
|
|
35
|
-
|
|
35
|
+
try:
|
|
36
|
+
super().__init__(data_source)
|
|
37
|
+
except TypeError:
|
|
38
|
+
super().__init__()
|
|
36
39
|
self.data_source = data_source
|
|
37
40
|
self.num_samples = num_samples
|
|
38
41
|
self.total_size = len(data_source)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.3.23
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tensorneko
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.23
|
|
4
4
|
Summary: Tensor Neural Engine Kompanion. An util library based on PyTorch and PyTorch Lightning.
|
|
5
5
|
Home-page: https://github.com/ControlNet/tensorneko
|
|
6
6
|
Author: ControlNet
|
|
@@ -32,7 +32,7 @@ Requires-Dist: av>=8.0.3
|
|
|
32
32
|
Requires-Dist: pysoundfile>=0.9.0; platform_system == "Windows"
|
|
33
33
|
Requires-Dist: numpy>=1.20.1
|
|
34
34
|
Requires-Dist: einops>=0.3.0
|
|
35
|
-
Requires-Dist: tensorneko_util==0.3.
|
|
35
|
+
Requires-Dist: tensorneko_util==0.3.23
|
|
36
36
|
Provides-Extra: lightning
|
|
37
37
|
Requires-Dist: tensorboard>=2.0.0; extra == "lightning"
|
|
38
38
|
Requires-Dist: lightning<3,>=2.0; extra == "lightning"
|
|
@@ -84,7 +84,7 @@ pip install tensorneko # for PyTorch only
|
|
|
84
84
|
pip install tensorneko[lightning] # for PyTorch and Lightning
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
-
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.
|
|
87
|
+
To use the library without PyTorch and PyTorch Lightning, you can install the util library (support Python 3.7 ~ 3.14 with limited features) with following command.
|
|
88
88
|
```shell
|
|
89
89
|
pip install tensorneko_util
|
|
90
90
|
```
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.22
|
|
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
|
|
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
|
{tensorneko-0.3.22 → tensorneko-0.3.23}/src/tensorneko/visualization/image_browser/__init__.py
RENAMED
|
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
|