Metadata-Version: 2.1
Name: synthetic-datasets
Version: 0.1.3
Summary: synthetic datasets for benchmarking AI and machine learning
Home-page: https://github.com/synthetic-datasets/synthetic-datasets
Author: Dave MacDonald
Author-email: dave@torontoai.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: numpy



# Synthetic Datasets

## Installation

```
pip install synthetic-datasets
```

## Datasets

* NoiseCircle


### NoiseCircle

A generator of square images, by default 64x64, with static noise and a circle
with noisy pixels in the image at a random location and with a random size.

Each result from the generator is a square numpy matrix of type float32

Example use::

```
    from synthetic_datasets import NoiseCircle

    nc = NoiseCircle()
    for image in nc:
        // Use image
```

## Licence
MIT


## More info
- https://github.com/synthetic-datasets/synthetic-datasets
- https://www.meetup.com/Toronto-AI/
- http://torontoai.org/
- A Toronto AI initiative


