Metadata-Version: 2.1
Name: nouveau
Version: 0.0.3
Summary: public domain art nouveau image data
Home-page: https://github.com/dactylroot/nouveau
Download-URL: https://github.com/dactylroot/nouveau/archive/0.0.3.tar.gz
License: Unlicense
Keywords: art,data,dataset
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: scikit-learn


# Art Nouveau Design Data

Public domain lazy-downloading data samples.

## Morris

This is a collection of designs by the famous Morris company artists of the 1800s.

# Format

 - image: image in numpy array or PyTorch tensor format
 - name: a common name for the design
 - year: initial year of design

# Example Use

    import nouveau
    data = nouveau.Morris()
    
    data.index.head()
    >> shows pandas dataframe head
    
    data[0]
    >> {'year': 1862,
    >>  'name': 'Fruit-Blue',
    >>  'filename': '1862-Fruit-Blue.jpg',
    >>  'image': array([[[254, 253, 249], ...
    
    data.show(1)
    >> <pyplot image>
    
    data.show('Fruit-Blue')
    >> <pyplot image>
    
    tensors = data.torch()
    tensors[0][0].shape
    >> torch.Size([3, 1987, 1586])


---
license: unlicense
task_categories:
- image-classification
pretty_name: Morris Co. Public Domain Art
size_categories:
- n<1K
---
