Framework for the automatic creation of CNN architectures
Project description
TorchCNNBuilder
TorchCNNBuilder is an open-source framework for the automatic creation of CNN architectures. This framework should first of all help researchers in the applicability of CNN models for a huge range of tasks, taking over most of the writing of the architecture code. This framework is distributed under the 3-Clause BSD license. All the functionality is written only using pytorch
(no third-party dependencies).
Installation
The simplest way to install framework is using pip
:
pip install torchcnnbuilder
Usage examples
The basic structure of the framework is presented below. Each subdirectory has its own example of using the appropriate available functionality. You can check examples
files in order to see the ways to use the proposed toolkit. In short, there is the following functionality:
- the ability to calculate the size of tensors after (transposed) convolutional layers
- preprocessing an n-dimensional time series in
TensorDataset
- automatic creation of (transposed) convolutional sequences
- automatic creation of (transposed) convolutional layers and (transposed) blocks from convolutional layers
The structure of the main part of the package:
├── examples
│ ├── examples.ipynb
│ ├── builder_examples.ipynb
│ ├── preprocess_examples.ipynb
│ └── models_examples.ipynb
└── torchcnnbuilder
├── preprocess
│ └── time_series.py
├── builder.py
└── models.py
Initially, the library was created to help predict n-dimensional time series (geodata), so there is a corresponding functionality and templates of predictive models (like ForecasterBase
).
Sources
- Forecasting of Sea Ice Concentration using CNN, PDE discovery and Bayesian Networks
- Surrogate Modelling for Sea Ice Concentration using Lightweight Neural Ensemble
Development
We try to maintain good practices of readable open source code. Therefore, if you want to participate in the development and open your pool request, pay attention to the following points:
- Every push is checked by the flake8 job. It will show you PEP8 errors or possible code improvements.
- Use this linter script after your code:
bash lint_and_check.sh
You can mark function docstrings using #noqa
, in order for flake8 not to pay attention to them.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file torchcnnbuilder-0.1.4.tar.gz
.
File metadata
- Download URL: torchcnnbuilder-0.1.4.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0527f06b7175d03f3c574f350c7c87eeeac882ed740109364dcf43dd55d97c3b |
|
MD5 | ba709470d01277a2eae1141b9e8dfd5c |
|
BLAKE2b-256 | c1a26ee6aa50b10ea522602f5080e78f2800fe49d46c7d193e7d3c0cfbff3f8b |
Provenance
File details
Details for the file torchcnnbuilder-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: torchcnnbuilder-0.1.4-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7da0233aceef38bc2a60646056eacdbd218a65c1c3f840bd46538f1e94a0cb23 |
|
MD5 | 75ccf2438e037a0eb0dc336f1f252213 |
|
BLAKE2b-256 | e5b06d737b60482df44fd02e35d152f980aff472654f6fb58b3324034e8f4b0b |