Deep Learning Tools for Pytorch
Project description
Deep Learning Tools for Pytorch
A package that contains tools for deep learning model.
Now, it just contains registry class for managing your models or functions conveniently.
Installation
pip install dlts
Example for using
from typing import Callable
from dlts import Registry
# Example usage
registry = Registry(registry_name="example_registry", base_type=Callable)
@registry.register("example_function")
def example_function(x: int) -> int:
return x * 2
print(registry.get("example_function")(5)) # Output: 10
print(registry.keys()) # Output: dict_keys(['example_function'])
Update
- 0.0.1 - It is an official version.
- 0.0.1alpha2 - It is a test version.
Future Plans
- Add some models which are used in the food classification.
- Add more tools for deep learning model management.
License
mDeep Learning Tools for Pytorch is MIT licensed. See the LICENSE for details.
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
dlts-0.0.1.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
dlts-0.0.1-py3-none-any.whl
(4.7 kB
view details)
File details
Details for the file dlts-0.0.1.tar.gz.
File metadata
- Download URL: dlts-0.0.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc4ceb38d3dec729d6de56d6808d6d1f1c3e39d446f81ad1dbcd63df83225e02
|
|
| MD5 |
67492a1f0778c3bc05ae3263db85fd75
|
|
| BLAKE2b-256 |
b86ce79950731dbea05e516c75df222a33cb64a75302dc715ebce543f2d874ed
|
File details
Details for the file dlts-0.0.1-py3-none-any.whl.
File metadata
- Download URL: dlts-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7912b40306b70805bf6462e4772ea51374d7c8699e41eba2ac5a0a20e573aa74
|
|
| MD5 |
84ad0535fd5579890dca76058325a94d
|
|
| BLAKE2b-256 |
342ed32c82b6c6a90dd130551568022b5899425a180a55702892d7e5a1fc5604
|