tensorneko 0.3.11__tar.gz → 0.3.13__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.11/src/tensorneko.egg-info → tensorneko-0.3.13}/PKG-INFO +6 -1
- {tensorneko-0.3.11 → tensorneko-0.3.13}/README.md +5 -0
- tensorneko-0.3.13/src/tensorneko/version.txt +1 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13/src/tensorneko.egg-info}/PKG-INFO +6 -1
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko.egg-info/requires.txt +1 -1
- tensorneko-0.3.11/src/tensorneko/version.txt +0 -1
- {tensorneko-0.3.11 → tensorneko-0.3.13}/LICENSE +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/setup.cfg +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/setup.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/auto_encoder.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/binary_classifier.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/gan.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/vqvae.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/arch/wgan.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/backend/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/display_metrics_callback.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/earlystop_lr.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/epoch_num_logger.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/epoch_time_logger.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/gpu_stats_logger.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/lr_logger.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/nil_callback.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/callback/system_stats_logger.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/list_dataset.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/nested_dataset.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/round_robin_dataset.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/sampler/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/dataset/sampler/sequential_iter_sampler.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/debug/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/enum.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/fid.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/iou.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/psnr.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/secs.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/evaluation/ssim.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/mesh/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/mesh/mesh_reader.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/mesh/mesh_writer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/reader.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/weight/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/weight/weight_reader.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/weight/weight_writer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/io/writer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/aggregation.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/attention.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/concatenate.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/conv.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/linear.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/log.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/masked_conv2d.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/noise.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/patching.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/positional_embedding.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/reshape.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/stack.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/layer/vector_quantizer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/dense.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/gated_conv.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/inception.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/mlp.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/residual.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/module/transformer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/neko_model.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/neko_module.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/neko_trainer.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/notebook/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/optim/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/optim/lr_scheduler/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/crop.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/enum.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/face_detector/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/pad.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/preprocess/resize.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/configuration.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/dispatched_misc.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/misc.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/reproducibility.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/string_getter.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/util/type.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/visualization/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/visualization/image_browser/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/visualization/log_graph.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/visualization/matplotlib.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko/visualization/watcher/__init__.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko.egg-info/SOURCES.txt +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko.egg-info/dependency_links.txt +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/src/tensorneko.egg-info/top_level.txt +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/test/test_library_info.py +0 -0
- {tensorneko-0.3.11 → tensorneko-0.3.13}/test/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tensorneko
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.13
|
|
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
|
|
@@ -60,6 +60,11 @@ To use the library without PyTorch and PyTorch Lightning, you can install the ut
|
|
|
60
60
|
pip install tensorneko_util
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
Some cpu bound functions are implemented by `pyo3`, and you can install the optimized version with below command.
|
|
64
|
+
```shell
|
|
65
|
+
pip install tensorneko_lib
|
|
66
|
+
```
|
|
67
|
+
|
|
63
68
|
## Neko Layers, Modules and Architectures
|
|
64
69
|
|
|
65
70
|
Build an MLP with linear layers. The activation and normalization will be placed in the hidden layers.
|
|
@@ -34,6 +34,11 @@ To use the library without PyTorch and PyTorch Lightning, you can install the ut
|
|
|
34
34
|
pip install tensorneko_util
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
Some cpu bound functions are implemented by `pyo3`, and you can install the optimized version with below command.
|
|
38
|
+
```shell
|
|
39
|
+
pip install tensorneko_lib
|
|
40
|
+
```
|
|
41
|
+
|
|
37
42
|
## Neko Layers, Modules and Architectures
|
|
38
43
|
|
|
39
44
|
Build an MLP with linear layers. The activation and normalization will be placed in the hidden layers.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.3.13
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tensorneko
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.13
|
|
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
|
|
@@ -60,6 +60,11 @@ To use the library without PyTorch and PyTorch Lightning, you can install the ut
|
|
|
60
60
|
pip install tensorneko_util
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
Some cpu bound functions are implemented by `pyo3`, and you can install the optimized version with below command.
|
|
64
|
+
```shell
|
|
65
|
+
pip install tensorneko_lib
|
|
66
|
+
```
|
|
67
|
+
|
|
63
68
|
## Neko Layers, Modules and Architectures
|
|
64
69
|
|
|
65
70
|
Build an MLP with linear layers. The activation and normalization will be placed in the hidden layers.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.11
|
|
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.11 → tensorneko-0.3.13}/src/tensorneko/dataset/sampler/sequential_iter_sampler.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
|
|
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.11 → tensorneko-0.3.13}/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
|