Metadata-Version: 2.4
Name: pytorch-gmm
Version: 0.1.0
Summary: Add your description here
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=2.3.0
Requires-Dist: torch>=2.7.1
Requires-Dist: tqdm>=4.67.1
Dynamic: license-file

# pytorch-gmm

## Usage

```py
import torch
from torch_gmm import GMM

x = torch.randn(50000, 16)
gmm, llh = GMM.init_and_train(x, 64, verbose=True)
```
