Metadata-Version: 2.1
Name: mug-detect-autoencoder
Version: 0.1.1
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Mug Detection

## Setup

```bash
pipenv shell
pipenv sync
```

## Develop

```bash
maturin develop
```

```bash
python
>>> import autoencoder
>>> autoencoder.mug_confidence("image/mugtrue.png")
```

## Build

```bash
maturin build
pip install .
```


