Metadata-Version: 2.4
Name: lucidlearn
Version: 0.0.3
Summary: A transparent, concise machine learning framework in JAX inspired by `miniai` from `fastai/course22p2` and optimized for efficient TPU usage.
Author-email: Frenio Redeker <f.redeker@gmail.com>
License: Apache-2.0
Project-URL: Repository, https://github.com/frenio/lucidlearn
Project-URL: Documentation, https://frenio.github.io/lucidlearn/
Keywords: nbdev,jax,deep-learning,tpu
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jax
Requires-Dist: optax
Requires-Dist: torch
Requires-Dist: torchvision
Requires-Dist: torchmetrics
Requires-Dist: matplotlib
Dynamic: license-file

# lucidlearn

## Installation

Install latest from the GitHub
[repository](https://github.com/frenio/lucidlearn):

``` sh
$ pip install git+https://github.com/frenio/lucidlearn.git
```

or from [pypi](https://pypi.org/project/lucidlearn/)

``` sh
$ pip install lucidlearn
```

## How to use

Import using

``` python
import lucidlearn.core as ll
```

or

```python
from lucidlearn.core import *
```

For coding examples see the [docs](https://frenio.github.io/lucidlearn/).
