Metadata-Version: 2.1
Name: hasy-tools
Version: 0.1.0
Summary: Convenience functions for the HASY dataset
Home-page: https://github.com/MartinThoma/hasy_tools
Author: Martin Thoma
Author-email: info@martin-thoma.de
Maintainer: Martin Thoma
Maintainer-email: info@martin-thoma.de
License: MIT
Download-URL: https://github.com/MartinThoma/hasy_tools
Keywords: utility
Platform: Linux
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: Pillow
Requires-Dist: scikit-learn
Requires-Dist: matplotlib

[![PyPI version](https://badge.fury.io/py/hasy_tools.svg)](https://badge.fury.io/py/hasy_tools)
[![Python Support](https://img.shields.io/pypi/pyversions/hasy_tools.svg)](https://pypi.org/project/hasy_tools/)

# hasy_tools

`hasy_tools` is a support package for the HASY dataset. The dataset is described
in [The HASYv2 dataset](https://arxiv.org/pdf/1701.08380.pdf).


## Installation

```bash
$ pip install git+https://github.com/MartinThoma/hasy_tools.git
```

It can, of course, also be installed via PyPI.


## Usage

```python
>>> import hasy_tools
>>> data = hasy_tools.load()
>>> data.keys()
dict_keys(['x_train', 'y_train', 'x_test', 'y_test', 's_train', 's_test', 'labels'])
>>> len(data['labels'])
369
>>> data['x_train'].shape
(151241, 32, 32, 1)
```


