Galaxy morphology classifiers
Project description
Zoobot
:tada: Zoobot 2.0 is now available. Bigger and better models with streamlined finetuning. Blog, paper :tada:
Zoobot classifies galaxy morphology with deep learning.
Zoobot is trained using millions of answers by Galaxy Zoo volunteers. This code will let you retrain Zoobot to accurately solve your own prediction task.
- Install
- Quickstart
- Worked Examples
- Pretrained Weights
- Datasets
- Documentation (for understanding/reference)
- Mailing List (for updates)
Installation
You can retrain Zoobot in the cloud with a free GPU using this Google Colab notebook. To install locally, keep reading.
Download the code using git:
git clone git@github.com:mwalmsley/zoobot.git
And then pick one of the three commands below to install Zoobot and PyTorch:
# Zoobot with PyTorch and a GPU. Requires CUDA 12.1 (or CUDA 11.8, if you use `_cu118` instead)
pip install -e "zoobot[pytorch-cu121]" --extra-index-url https://download.pytorch.org/whl/cu121
# OR Zoobot with PyTorch and no GPU
pip install -e "zoobot[pytorch-cpu]" --extra-index-url https://download.pytorch.org/whl/cpu
# OR Zoobot with PyTorch on Mac with M1 chip
pip install -e "zoobot[pytorch-m1]"
This installs the downloaded Zoobot code using pip editable mode so you can easily change the code locally. Zoobot is also available directly from pip (pip install zoobot[option]
). Only use this if you are sure you won't be making changes to Zoobot itself. For Google Colab, use pip install zoobot[pytorch_colab]
To use a GPU, you must already have CUDA installed and matching the versions above. I share my install steps here. GPUs are optional - Zoobot will run retrain fine on CPU, just slower.
Quickstart
The Colab notebook is the quickest way to get started. Alternatively, the minimal example below illustrates how Zoobot works.
Let's say you want to find ringed galaxies and you have a small labelled dataset of 500 ringed or not-ringed galaxies. You can retrain Zoobot to find rings like so:
import pandas as pd
from galaxy_datasets.pytorch.galaxy_datamodule import GalaxyDataModule
from zoobot.pytorch.training import finetune
# csv with 'ring' column (0 or 1) and 'file_loc' column (path to image)
labelled_df = pd.read_csv('/your/path/some_labelled_galaxies.csv')
datamodule = GalaxyDataModule(
label_cols=['ring'],
catalog=labelled_df,
batch_size=32
)
# load trained Zoobot model
model = finetune.FinetuneableZoobotClassifier(checkpoint_loc, num_classes=2)
# retrain to find rings
trainer = finetune.get_trainer(save_dir)
trainer.fit(model, datamodule)
Then you can make predict if new galaxies have rings:
from zoobot.pytorch.predictions import predict_on_catalog
# csv with 'file_loc' column (path to image). Zoobot will predict the labels.
unlabelled_df = pd.read_csv('/your/path/some_unlabelled_galaxies.csv')
predict_on_catalog.predict(
unlabelled_df,
model,
label_cols=['ring'], # only used for
save_loc='/your/path/finetuned_predictions.csv'
)
Zoobot includes many guides and working examples - see the Getting Started section below.
Getting Started
I suggest starting with the Colab notebook or the worked examples below, which you can copy and adapt.
For context and explanation, see the documentation.
Pretrained models are listed here and available on HuggingFace
Worked Examples
- pytorch/examples/finetuning/finetune_binary_classification.py
- pytorch/examples/finetuning/finetune_counts_full_tree.py
- pytorch/examples/representations/get_representations.py
- pytorch/examples/train_model_on_catalog.py (only necessary to train from scratch)
There is more explanation and an API reference on the docs.
(Optional) Install PyTorch with CUDA
If you're not using a GPU, skip this step. Use the pytorch-cpu option in the section below.
Install PyTorch 2.1.0 and compatible CUDA drivers. I highly recommend using conda to do this. Conda will handle both creating a new virtual environment (conda create
) and installing CUDA (cudatoolkit
, cudnn
)
CUDA 12.1 for PyTorch 2.1.0:
conda create --name zoobot39_torch python==3.9
conda activate zoobot39_torch
conda install -c conda-forge cudatoolkit=12.1
Recent release features (v2.0.0)
- New in 2.0.1 Add greyscale encoders. Use
hf_hub:mwalmsley/zoobot-encoder-greyscale-convnext_nano
or similar. - New pretrained architectures: ConvNeXT, EfficientNetV2, MaxViT, and more. Each in several sizes.
- Reworked finetuning procedure. All these architectures are finetuneable through a common method.
- Reworked finetuning options. Batch norm finetuning removed. Cosine schedule option added.
- Reworked finetuning saving/loading. Auto-downloads encoder from HuggingFace.
- Now supports regression finetuning (as well as multi-class and binary). See
pytorch/examples/finetuning
- Updated
timm
to 0.9.10, allowing latest model architectures. Previously downloaded checkpoints may not load correctly! - (internal until published) GZ Evo v2 now includes Cosmic Dawn (HSC H2O). Significant performance improvement on HSC finetuning. Also now includes GZ UKIDSS (dragged from our archives).
- Updated
pytorch
to2.1.0
- Added support for webdatasets (only recommended for large-scale distributed training)
- Improved per-question logging when training from scratch
- Added option to compile encoder for max speed (not recommended for finetuning, only for pretraining).
- Deprecates TensorFlow. The CS research community focuses on PyTorch and new frameworks like JAX.
Contributions are very welcome and will be credited in any future work. Please get in touch! See CONTRIBUTING.md for more.
Benchmarks and Replication - Training from Scratch
The benchmarks folder contains slurm and Python scripts to train Zoobot 1.0 from scratch.
Training Zoobot using the GZ DECaLS dataset option will create models very similar to those used for the GZ DECaLS catalogue and shared with the early versions of this repo. The GZ DESI Zoobot model is trained on additional data (GZD-1, GZD-2), as the GZ Evo Zoobot model (GZD-1/2/5, Hubble, Candels, GZ2).
Pretraining is becoming increasingly complex and is now partially refactored out to a separate repository. We are gradually migrating this zoobot
repository to focus on finetuning.
Citing
If you use this software, or otherwise wish to cite Zoobot as a software package, please use the JOSS paper:
@article{Walmsley2023, doi = {10.21105/joss.05312}, url = {https://doi.org/10.21105/joss.05312}, year = {2023}, publisher = {The Open Journal}, volume = {8}, number = {85}, pages = {5312}, author = {Mike Walmsley and Campbell Allen and Ben Aussel and Micah Bowles and Kasia Gregorowicz and Inigo Val Slijepcevic and Chris J. Lintott and Anna M. m. Scaife and Maja Jabłońska and Kosio Karchev and Denise Lanzieri and Devina Mohan and David O’Ryan and Bharath Saiguhan and Crisel Suárez and Nicolás Guerra-Varas and Renuka Velu}, title = {Zoobot: Adaptable Deep Learning Models for Galaxy Morphology}, journal = {Journal of Open Source Software} }
You might be interested in reading papers using Zoobot:
- Galaxy Zoo DECaLS: Detailed visual morphology measurements from volunteers and deep learning for 314,000 galaxies (2022)
- A Comparison of Deep Learning Architectures for Optical Galaxy Morphology Classification (2022)
- Practical Galaxy Morphology Tools from Deep Supervised Representation Learning (2022)
- Towards Foundation Models for Galaxy Morphology (2022)
- Harnessing the Hubble Space Telescope Archives: A Catalogue of 21,926 Interacting Galaxies (2023)
- Galaxy Zoo DESI: Detailed morphology measurements for 8.7M galaxies in the DESI Legacy Imaging Surveys (2023)
- Galaxy mergers in Subaru HSC-SSP: A deep representation learning approach for identification, and the role of environment on merger incidence (2023)
- Astronomaly at Scale: Searching for Anomalies Amongst 4 Million Galaxies (2023, submitted)
- Transfer learning for galaxy feature detection: Finding Giant Star-forming Clumps in low redshift galaxies using Faster R-CNN (2023)
- Euclid preparation. Measuring detailed galaxy morphologies for Euclid with Machine Learning (2024, submitted)
Many other works use Zoobot indirectly via the Galaxy Zoo DECaLS catalog (and now via the new Galaxy Zoo DESI catalog).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file zoobot-2.0.1.tar.gz
.
File metadata
- Download URL: zoobot-2.0.1.tar.gz
- Upload date:
- Size: 111.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d0f73a199e7f82ca4702e2147b82daf8d5d41cdefab06cbb9886664cc425fc6 |
|
MD5 | dcbdbc9f91db888cdd585dd02562a120 |
|
BLAKE2b-256 | 8684e9c182d123463bc85308b14333131a5261b6e186918e8e78c5717f388225 |
File details
Details for the file zoobot-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: zoobot-2.0.1-py3-none-any.whl
- Upload date:
- Size: 120.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d962a9d02163a7b3856ad02d009698fd8b61175c1c970ddad53d92241fec5488 |
|
MD5 | 16ad1c6c4dce2805268ad3c711e72520 |
|
BLAKE2b-256 | 7e04ff2d2f371ac7ab229e9894ff41eb96f2ed1b48f2496fb28515c251e0e7d4 |