File size: 1,568 Bytes
e75d9c7 6c6f7cf 9261f1d 6c6f7cf e75d9c7 6c6f7cf 15974f3 6c6f7cf 15974f3 6c6f7cf 15974f3 3fda763 6c6f7cf 15974f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
language:
- en
library_name: tf-keras
license: wtfpl
pipeline_tag: image-segmentation
---
# *Cavity Detection Tool* (CADET)
[***CADET***](https://tomasplsek.github.io/CADET/) is a machine learning pipeline trained for identification of surface brightness depressions (so-called *X-ray cavities*) on noisy *Chandra* images of early-type galaxies and galaxy clusters. The pipeline consists of a convolutional neural network trained for producing pixel-wise cavity predictions and a DBSCAN clustering algorithm, which decomposes the predictions into individual cavities. The pipeline is further described in [Plšek et al. 2023](https://arxiv.org/abs/2304.05457).

## How to use
```python
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("Plsek/CADET-v1")
y_pred = model.predict(X.reshape(1,128,128,1))
```
## How to cite
The ***CADET*** pipeline was originally developed as a part of my [diploma thesis](https://is.muni.cz/th/x68od/?lang=en) and was further described in [Plšek et al. 2023](https://arxiv.org/abs/2304.05457). If you use the ***CADET*** pipeline in your research, please cite the following paper:
```
@misc{plšek2023cavity,
title={CAvity DEtection Tool (CADET): Pipeline for automatic detection of X-ray cavities in hot galactic and cluster atmospheres},
author={Tomáš Plšek and Norbert Werner and Martin Topinka and Aurora Simionescu},
year={2023},
eprint={2304.05457},
archivePrefix={arXiv},
primaryClass={astro-ph.HE}
}
``` |