Metadata-Version: 2.1
Name: hypertab
Version: 0.1.2
Summary: HyperTab: hypernetwork for small tabular datasets
Home-page: https://github.com/wwydmanski/hypertab
Author: Witold Wydmański
Author-email: wwydmanski@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# HyperTab

HyperTab is a hypernetwork-based classifier for small tabular datasets. 

## Installation

```bash
pip install hypertab
```

## Usage

```python
from hypertab import HyperTabClassifier
DEVICE = "cuda:0" if torch.cuda.is_available() else "cpu"

clf = HyperTabClassifier(0.2, device=DEVICE, test_nodes=100, epochs=10, hidden_dims=5)
clf.fit(X, y)
clf.predict(X)
```

