Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/borchero/lightkit

Utilities for PyTorch and PyTorch Lightning.
https://github.com/borchero/lightkit

machine-learning pytorch pytorch-lightning

Last synced: 17 days ago
JSON representation

Utilities for PyTorch and PyTorch Lightning.

Awesome Lists containing this project

README

        

# LightKit

LightKit provides simple utilities for working with PyTorch and PyTorch Lightning. At the moment,
it provides three simple features:

- A data loader for tabular data that is orders of magnitude faster than PyTorch's builtin data
loader for medium-sized datasets and larger ones.
- A mixin for modules that allows to save not only weights, but also the configuration to the file
system such that it is easier to retrieve trained models.
- A typed base class for estimators that enables users to easily create estimators with PyTorch and
PyTorch Lightning which are fully compatible with Scikit-learn.

For more details, consult the [documentation](https://lightkit.borchero.com).

## Installation

LightKit is available via `pip`:

```bash
pip install lightkit
```

If you are using [Poetry](https://python-poetry.org/):

```bash
poetry add lightkit
```