Metadata-Version: 2.1
Name: catsndogs
Version: 0.0.5
Summary: A dataset containing cats and dogs.
Home-page: https://github.com/simonpf/catsndogs
Author: Simon Pfreundschuh
Author-email: simon.pfreundschuh@chalmers.se
License: UNKNOWN
Project-URL: Source, https://github.com/simonpf/catsndogs/
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: appdirs
Requires-Dist: requests

![](https://travis-ci.com/simonpf/catsndogs.svg?branch=master)

# Cats and dogs

A small and simple data set containing images of cats and dogs. It is based on the [Oxford-IIIT Pet Dataset](https://www.robots.ox.ac.uk/~vgg/data/pets/).

## Accessing the data

```
from catsndogs import training
from catsndogs import test
import glob
import os

training_folders = glob.glob(os.path.join(training.folder, "*"))
print("Folders with training images: ", training_folders)

folders = glob.glob(os.path.join(training.folder, "*"))
print("Folders with test images: ", test_folders)
```


![Samples from the dataset](misc/samples.png)


