Metadata-Version: 2.1
Name: galaxies-datasets
Version: 0.1.1
Summary: Galaxies Datasets
Home-page: https://github.com/lbignone/galaxies_datasets
License: MIT
Author: Lucas Bignone
Author-email: lbignone@gmail.com
Requires-Python: >=3.7.1,<4.0.0
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: eagleSqlTools (>=2.0.0,<3.0.0)
Requires-Dist: pandas (>=1.3.2,<2.0.0)
Requires-Dist: tensorflow (>=2.6.0,<3.0.0)
Requires-Dist: tensorflow-datasets (>=4.4.0,<5.0.0)
Requires-Dist: typer (>=0.4.0,<0.5.0)
Project-URL: Changelog, https://github.com/lbignone/galaxies_datasets/releases
Project-URL: Documentation, https://galaxies_datasets.readthedocs.io
Project-URL: Repository, https://github.com/lbignone/galaxies_datasets
Description-Content-Type: text/x-rst

Galaxies Datasets
=================

|header|

.. |header| image:: header.png
   :alt: Galaxies Datasets

|PyPI| |Status| |Python Version| |License| |Read the Docs| |Tests| |Codecov|
|pre-commit| |Black| |DOI|

.. |PyPI| image:: https://img.shields.io/pypi/v/galaxies_datasets.svg
   :target: https://pypi.org/project/galaxies_datasets/
   :alt: PyPI
.. |Status| image:: https://img.shields.io/pypi/status/galaxies_datasets.svg
   :target: https://pypi.org/project/galaxies_datasets/
   :alt: Status
.. |Python Version| image:: https://img.shields.io/pypi/pyversions/galaxies_datasets
   :target: https://pypi.org/project/galaxies_datasets
   :alt: Python Version

.. |License| image:: https://img.shields.io/pypi/l/galaxies_datasets
   :target: https://opensource.org/licenses/MIT
   :alt: License
.. |Read the Docs| image:: https://img.shields.io/readthedocs/galaxies_datasets/latest.svg?label=Read%20the%20Docs
   :target: https://galaxies_datasets.readthedocs.io/
   :alt: Read the documentation at https://galaxies_datasets.readthedocs.io/
.. |Tests| image:: https://github.com/lbignone/galaxies_datasets/workflows/Tests/badge.svg
   :target: https://github.com/lbignone/galaxies_datasets/actions?workflow=Tests
   :alt: Tests

.. |Codecov| image:: https://codecov.io/gh/lbignone/galaxies_datasets/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/lbignone/galaxies_datasets
   :alt: Codecov
.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
   :target: https://github.com/pre-commit/pre-commit
   :alt: pre-commit
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black
   :alt: Black
.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5521450.svg
   :target: https://doi.org/10.5281/zenodo.5521450
   :alt: DOI


*Galaxies Datasets* is a collection of ready-to-use extragalactic astronomy datasets
for use with TensorFlow, Jax, and other Machine Learning frameworks.

It follows the `tensorflow_datasets`_ framework, making it very easy to switch
between different datasets. All datasets are exposed as `tf.data.Datasets`_, enabling
easy-to-use and high-performance input pipelines.


Usage
-----

Loading a dataset can be as easy as:

.. code-block:: python

    from galaxies_datasets import datasets
    import tensorflow_datasets as tfds

    # Construct a tf.data.Dataset
    ds = tfds.load("galaxy_zoo_challenge", split="train")

    # Build your input pipeline
    ds = ds.shuffle(1000).batch(128).prefetch(10).take(5)

In the example above:

.. code-block:: python

    from galaxies_datasets import datasets

registers the collection of galactic datasets with the `tensorflow_datasets`_ package
making them available through its API. And that is it! ...Almost.

For more details on tensorflow_datasets check out the `documentation`_.

Some datasets require that you first manually download data. Check each dataset for
instructions.


Datasets
--------

Currently `available datasets`_ focus on galaxy morphology.

They include observational data from the `Galaxy zoo project`_:

- galaxy_zoo_challenge
- galaxy_zoo2
- galaxy_zoo_decals

As well as mock galaxy images from the `EAGLE simulation`_:

- eagle


Installation
------------

You can install *Galaxies Datasets* via pip_ from PyPI_:

.. code:: console

   $ pip install galaxies-datasets


Scripts
-------

*Galaxies Datasets* provides some scripts to download and prepare data. The scripts
are available through a command-line interface powered by `Typer`_.

For example, to download images and data from the EAGLE simulation you could simply do::

    galaxies_datasets eagle download USER SIMULATION

where USER is your username for the EAGLE public database and SIMULATION is the name
of one of the EAGLE simulations.

For all available commands check the `Command-line Interface`_ reference, or run::

    galaxies_datasets --help

The command-line interface also supports automatic completion in all operating
systems, in all the shells (Bash, Zsh, Fish, PowerShell), so that you can just hit
TAB and get the available options or subcommands.

To install automatic completion in bash run::

    galaxies_datasets --install-completion bash


Citation
--------

If you use this software, please cite it as below, in addition to any citation
specific to the used datasets.

.. code:: bibtex

    @software{lucas_bignone_2021_5521451,
        author       = {Lucas Bignone},
        title        = {Galaxies Datasets},
        month        = sep,
        year         = 2021,
        publisher    = {Zenodo},
        version      = {v0.1.1},
        doi          = {10.5281/zenodo.5521450},
        url          = {https://doi.org/10.5281/zenodo.5521450}
    }


Contributing
------------

Contributions are very welcome.
To learn more, see the `Contributor Guide`_.


License
-------

Distributed under the terms of the `MIT license`_,
*Galaxies Datasets* is free and open source software.


Issues
------

If you encounter any problems,
please `file an issue`_ along with a detailed description.


Disclaimer
----------

This is a utility library that downloads and prepares datasets. We do not host
or distribute these datasets, vouch for their quality or fairness, or claim that you
have license to use the dataset. It is your responsibility to determine whether you
have permission to use the dataset under the dataset's license.

If you're a dataset owner and wish to update any part of it (description, citation,
etc.), or do not want your dataset to be included in this library, please get in
touch through a GitHub issue. Thanks for your contribution to the ML community!


Credits
-------

This project was generated from `@cjolowicz`_'s `Hypermodern Python Cookiecutter`_
template.

Icons made by `Freepik <https://www.freepik.com>`_ from `www.flaticon.com
<https://www.flaticon.com/>`_


.. _@cjolowicz: https://github.com/cjolowicz
.. _MIT license: https://opensource.org/licenses/MIT
.. _PyPI: https://pypi.org/
.. _Hypermodern Python Cookiecutter: https://github.com/cjolowicz/cookiecutter-hypermodern-python
.. _file an issue: https://github.com/lbignone/galaxies_datasets/issues
.. _pip: https://pip.pypa.io/
.. _tensorflow_datasets: https://www.tensorflow.org/datasets/
.. _tf.data.Datasets: https://www.tensorflow.org/api_docs/python/tf/data/Dataset
.. _documentation: https://www.tensorflow.org/datasets/overview
.. _Galaxy zoo project: https://www.zooniverse.org/projects/zookeeper/galaxy-zoo/
.. _EAGLE simulation: http://icc.dur.ac.uk/Eagle/
.. _Typer: https://typer.tiangolo.com/
.. github-only
.. _available datasets: docs/datasets.md
.. _Contributor Guide: CONTRIBUTING.rst
.. _Command-line Interface: cli.rst
.. _Usage: https://galaxies_datasets.readthedocs.io/en/latest/usage.html

