Breakthrough Listen's first end-to-end production-grade deep learning pipeline for SETI @ scale
Aetherscan is a deep learning pipeline for detecting anomalies in radio spectrograms with technosignature-like characteristics. It combines a beta-VAE (for dimensionality reduction/feature extraction) with a Random Forest ensemble (for candidate detection), trained on ~30m unique cadence snippets using a composite loss that balances reconstruction, KL divergence, and true/false clustering. The pipeline is designed with performance in mind, by default running single-node distributed training & inference, using zero-copy parallelism during pre- and post-processing.
The model architecture is based on Ma et al. 2023 ("A deep-learning search for technosignatures from 820 unique stars"), extending the research prototype into a production-ready system capable of near real-time inference.
- Data-parallel distributed training/inference — Gradients synchronized via TensorFlow MirroredStrategy with NCCL AllReduce. Gradient accumulation allows for larger effective batch sizes under low VRAM constraints. Generator-based distributed datasets stream data from CPU to GPU on-demand, further lowering VRAM pressure.
- Cadence-aware clustering loss — The composite loss combines standard beta-VAE reconstruction and KL divergence (β-weighted), with true/false clustering (α-weighted) that encourages ON-ON and OFF-OFF proximity + ON-OFF separation for true signals, and uniform clustering for false signals. This implicitly teaches the model to mimic traditional signal locality filters.
- Curriculum-based training regime — Progressive SNR difficulty schedules paired with adaptive learning rates that decay on validation plateaus but reset each round, enabling aggressive fine-tuning within difficulty stages while preserving exploration capacity across rounds. Per-round checkpointing and automatic retry with constant backoff ensure graceful recovery from transient failures.
- Multiprocess-accelerated data pipelines with zero-copy parallelism — Preprocessing and data generation modules execute in parallel worker pools, while shared memory architecture enables inter-process communication without serialization overhead. Custom SIGTERM handlers in workers ensure proper resource cleanup even during interruptions.
- Infrastructure services — Thread-safe singletons for async database writes (queue-based SQLite), multiprocess logging (QueueListener pattern with Slack webhooks), background resource monitoring, and centralized resource lifecycle management with graceful shutdown handling.
Aetherscan supports two install paths off the same source tree. The NGC container is the canonical runtime on both clusters; the conda env is kept as an alternative for users who can't or don't want to use containers on Ampere.
NGC container (canonical, runs on both clusters)
- Ubuntu 24.04
- ≥1x NVIDIA GPU:
- Blackwell (sm_120, e.g. RTX PRO 6000) — driver ≥570 (native CUDA 12.8)
- Ampere (sm_86, e.g. RTX A4000) — driver ≥550 (host CUDA 12.3) via CUDA forward compatibility
- ≥12 GB combined VRAM (training) / ≥9 GB combined VRAM (inference)
- ≥150 GB RAM (training) / ≥100 GB RAM (inference)
- Apptainer 1.4+ or SingularityCE 4.1+ (Python 3.12 / TF 2.17 / CUDA 12.8 live inside the container)
- See
docs/GPU_RUNTIME_GUIDE.mdfor the full runbook
Conda env (alternative, Ampere only)
- Ubuntu 24.04
- ≥1x NVIDIA GPU:
- Ampere with CUDA 12.3+ driver
- VRAM / RAM same as above
- Python 3.10 / TF 2.17 (managed by conda)
Note
There are no plans to support non-Nvidia GPUs
Note
This is the canonical install path, and the only option for Blackwell clusters
1. Clone the repository
git clone https://github.com/zachtheyek/Aetherscan.git
cd Aetherscan2. Build the .sif image
The same aetherscan.def recipe builds with either runtime — use whichever is installed on the host. Build on the cluster you intend to run on so the resulting .sif is produced by that cluster's native runtime:
# SingularityCE (e.g. Blackwell cluster running 4.1.1)
singularity build aetherscan-ngc25.02.sif aetherscan.def
# Apptainer (e.g. Ampere cluster running v1.4.5)
apptainer build aetherscan-ngc25.02.sif aetherscan.defBuild takes ~9 minutes and produces a ~9 GB image. On hardened HPC nodes you may also need the --fakeroot flag, and to redirect SINGULARITY_TMPDIR / APPTAINER_TMPDIR and SINGULARITY_CACHEDIR / APPTAINER_CACHEDIR to scratch storage; the full troubleshooting walkthrough lives in docs/GPU_RUNTIME_GUIDE.md.
3. Set up monitoring dashboards in tmux (optional)
Tip
Subsequent pipeline runs may proceed from the current step (3) onward
The repo ships a convenience script that instantiates a four-window tmux session for monitoring system resources (htop + a CPU/MEM ticker), GPU state (watch nvidia-smi), shared memory buffers (watch ls /dev/shm), and models/outputs dirs (watch tree):
./utils/start_tmux_session.shIdempotent — re-running attaches to the existing session instead of recreating it.
4. Configure secrets and paths (optional)
Aetherscan reads secrets and path overrides from a .env file at the repo root. utils/run_container.sh auto-loads <repo>/.env into its own environment before launching the container and forwards the relevant keys via --env, so no source .env or inline prefix is needed.
# .env example
# If none specified, Slack integration is automatically disabled
SLACK_BOT_TOKEN=your-slack-bot-token
SLACK_CHANNEL=your-slack-channel
# If none specified, defaults to /datax/scratch/zachy/{data|models|outputs}/aetherscan
# Note, CLI flags (--data-path, --model-path, --output-path) override these
AETHERSCAN_DATA_PATH=/path/to/data
AETHERSCAN_MODEL_PATH=/path/to/models
AETHERSCAN_OUTPUT_PATH=/path/to/outputsTip
See SECURITY.md for best practices on managing .env files.
If you'd rather set them directly in your shell (skipping .env), export works equivalently and takes precedence over .env for any keys it sets — useful for one-off overrides:
export SLACK_BOT_TOKEN="your-slack-bot-token"
export SLACK_CHANNEL="your-slack-channel"
...
./utils/run_container.sh python -m aetherscan.main train ...The AETHERSCAN_* paths are bind-mounted 1:1 between host and container, so they must already exist on the host before the pipeline starts. The utils/run_container.sh wrapper forwards SLACK_* and AETHERSCAN_* into the container explicitly; if you need additional env vars on the container side, extend the wrapper's --env list.
5. Run pipeline
./utils/run_container.sh python -m aetherscan.main {train|inference} \
--save-tag final_v1The utils/run_container.sh wrapper auto-detects whether apptainer or singularity is on PATH (Apptainer wins when both are present), sets --nv for GPU passthrough, and binds the repo + AETHERSCAN_{DATA,MODEL,OUTPUT}_PATH 1:1 between host and container so absolute paths persisted in the DB stay valid across both. PYTHONPATH is set automatically inside the container — no inline prefix needed.
See the Usage Examples section below for further ways to invoke the Aetherscan pipeline.
Note
This is an alternative install path for Ampere clusters
1. Clone the repository
git clone https://github.com/zachtheyek/Aetherscan.git
cd Aetherscan2. Create conda environment
conda env create -f environment.yml
conda activate aetherscan3. Set up monitoring dashboards in tmux (optional)
Tip
Subsequent pipeline runs may proceed from the current step (3) onward
The repo ships a convenience script that instantiates a four-window tmux session for monitoring system resources (htop + a CPU/MEM ticker), GPU state (watch nvidia-smi), shared memory buffers (watch ls /dev/shm), and models/outputs dirs (watch tree):
./utils/start_tmux_session.shIdempotent — re-running attaches to the existing session instead of recreating it.
Note
If you skip the tmux helper, it's recommended to run these two exports manually before launching the pipeline — the script's pipeline pane sets them for you, and without them you may hit TF library-loading issues or noisy startup logs:
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
export TF_CPP_MIN_LOG_LEVEL=14. Configure secrets and paths (optional)
Same .env file format and precedence rules as Run From Container step 4. Two differences on this path:
<repo>/.envis loaded directly intoos.environat the top ofmain.pyvia python-dotenv — no wrapper script in the loop — so every key in.envis visible to the pipeline, not just the subset the container wrapper forwards via--env.- No host→container bind mounts, so
AETHERSCAN_*paths only need to exist when the pipeline actually accesses them, not at startup.
Multiprocess worker pools inherit the values via os.environ as usual.
5. Run pipeline
PYTHONPATH=src python -m aetherscan.main {train|inference} \
--save-tag final_v1PYTHONPATH=src makes the aetherscan package importable from src/ without a pip install -e . step. No inline KEY=VALUE prefix is needed for Slack credentials — the .env auto-load runs before any worker process is spawned, so os.environ inheritance to multiprocess pools is automatic.
See the Usage Examples section below for further ways to invoke the Aetherscan pipeline.
Note
main.py is the designated pipeline entry point.
Non-development workflows should avoid directly calling other scripts/modules.
Note
Each scenario below is shown twice — first with the container wrapper (canonical), then with the conda-env source invocation (alternative). CLI flags are identical between the two; only the launcher differs.
Tip
The examples below cover a small number of scenarios. For the full set of available flags, see Train Command Help.
Default training run
# Container (canonical)
./utils/run_container.sh python -m aetherscan.main train
# Source (Ampere conda env)
PYTHONPATH=src python -m aetherscan.main trainTraining with custom parameters
# Container
./utils/run_container.sh python -m aetherscan.main train \
--train-files real_filtered_LARGE_HIP110750.npy real_filtered_LARGE_HIP13402.npy real_filtered_LARGE_HIP8497.npy \
--num-training-rounds 20 \
--epochs-per-round 100 \
--curriculum-schedule exponential \
--save-tag test_v1
# Source
PYTHONPATH=src python -m aetherscan.main train \
--train-files real_filtered_LARGE_HIP110750.npy real_filtered_LARGE_HIP13402.npy real_filtered_LARGE_HIP8497.npy \
--num-training-rounds 20 \
--epochs-per-round 100 \
--curriculum-schedule exponential \
--save-tag test_v1Resume from checkpoint
# Container
./utils/run_container.sh python -m aetherscan.main train \
--load-dir checkpoints \
--load-tag round_10 \
--save-tag test_v1
# Source
PYTHONPATH=src python -m aetherscan.main train \
--load-dir checkpoints \
--load-tag round_10 \
--save-tag test_v1Training with an explicit per-GPU memory cap (e.g. on an older Ampere GPU with lower VRAM)
# Container
./utils/run_container.sh python -m aetherscan.main train \
--gpu-memory-limit-mb 14000 \
--save-tag test_v1
# Source
PYTHONPATH=src python -m aetherscan.main train \
--gpu-memory-limit-mb 14000 \
--save-tag test_v1Tip
The examples below cover a small number of scenarios. For the full set of available flags, see Inference Command Help.
Default inference run
# Container (canonical)
./utils/run_container.sh python -m aetherscan.main inference
# Source (Ampere conda env)
PYTHONPATH=src python -m aetherscan.main inferenceInference on a pre-processed .npy file
# Container
./utils/run_container.sh python -m aetherscan.main inference \
--test-files real_filtered_LARGE_test_HIP15638.npy \
--encoder-path /datax/scratch/zachy/models/aetherscan/vae_encoder_final_v1.keras \
--rf-path /datax/scratch/zachy/models/aetherscan/random_forest_final_v1.joblib \
--config-path /datax/scratch/zachy/models/aetherscan/config_final_v1.json \
--classification-threshold 0.99
# Source
PYTHONPATH=src python -m aetherscan.main inference \
--test-files real_filtered_LARGE_test_HIP15638.npy \
--encoder-path /datax/scratch/zachy/models/aetherscan/vae_encoder_final_v1.keras \
--rf-path /datax/scratch/zachy/models/aetherscan/random_forest_final_v1.joblib \
--config-path /datax/scratch/zachy/models/aetherscan/config_final_v1.json \
--classification-threshold 0.99Inference from raw .h5 files (invokes energy detection preprocessing)
# Container
./utils/run_container.sh python -m aetherscan.main inference \
--inference-files complete_cadences_catalog.csv \
--encoder-path /path/to/vae_encoder.keras \
--rf-path /path/to/random_forest.joblib \
--config-path /path/to/config.json \
--save-tag run_v1
# Source
PYTHONPATH=src python -m aetherscan.main inference \
--inference-files complete_cadences_catalog.csv \
--encoder-path /path/to/vae_encoder.keras \
--rf-path /path/to/random_forest.joblib \
--config-path /path/to/config.json \
--save-tag run_v1Inference with async-allocator fallbacks (e.g. on a 5-GPU Blackwell topology)
# Container
./utils/run_container.sh python -m aetherscan.main inference \
--no-async-allocator \
--save-tag run_v1
# Source
PYTHONPATH=src python -m aetherscan.main inference \
--no-async-allocator \
--save-tag run_v1Aetherscan uses a hierarchical configuration system with dataclass-based configs, whose state can be modified both at command time and runtime. At command time, the user can specify values via:
- Defaults - Defined in
src/aetherscan/config.py - Environment variables - For paths and secrets
- CLI flags - Override defaults & environment variables on startup
At runtime, the singleton Config instance can be accessed via get_config() and modified programmatically.
Read docs/CONFIG_AND_CLI.md to learn more.
Aetherscan dispatches to one of two subcommands via the first positional argument. Regenerate this output with ./utils/run_container.sh python utils/print_cli_help.py top (container) or PYTHONPATH=src python utils/print_cli_help.py top (source).
usage: [-h] {train,inference} ...
Aetherscan Pipeline -- Breakthrough Listen's first end-to-end production-grade
DL pipeline for SETI @ scale
positional arguments:
{train,inference} Command to execute
train Execute training pipeline
inference Execute inference pipeline
options:
-h, --help show this help message and exit
The Aetherscan training pipeline exposes the following CLI flags to the user. Regenerate this output with ./utils/run_container.sh python utils/print_cli_help.py train (container) or PYTHONPATH=src python utils/print_cli_help.py train (source).
usage: train [-h] [--data-path DATA_PATH] [--model-path MODEL_PATH]
[--output-path OUTPUT_PATH] [--vae-latent-dim VAE_LATENT_DIM]
[--vae-dense-layer-size VAE_DENSE_LAYER_SIZE]
[--vae-kernel-size VAE_KERNEL_SIZE VAE_KERNEL_SIZE]
[--vae-beta VAE_BETA] [--vae-alpha VAE_ALPHA]
[--rf-n-estimators RF_N_ESTIMATORS] [--rf-bootstrap RF_BOOTSTRAP]
[--rf-max-features RF_MAX_FEATURES] [--rf-n-jobs RF_N_JOBS]
[--rf-seed RF_SEED] [--num-replicas NUM_REPLICAS]
[--gpu-memory-limit-mb GPU_MEMORY_LIMIT_MB]
[--nccl-num-packs NCCL_NUM_PACKS]
[--async-allocator | --no-async-allocator]
[--num-observations NUM_OBSERVATIONS] [--width-bin WIDTH_BIN]
[--downsample-factor DOWNSAMPLE_FACTOR] [--time-bins TIME_BINS]
[--freq-resolution FREQ_RESOLUTION]
[--time-resolution TIME_RESOLUTION]
[--num-target-backgrounds NUM_TARGET_BACKGROUNDS]
[--background-load-chunk-size BACKGROUND_LOAD_CHUNK_SIZE]
[--max-chunks-per-file MAX_CHUNKS_PER_FILE]
[--train-files TRAIN_FILES [TRAIN_FILES ...]]
[--num-training-rounds NUM_TRAINING_ROUNDS]
[--epochs-per-round EPOCHS_PER_ROUND]
[--num-samples-beta-vae NUM_SAMPLES_BETA_VAE]
[--num-samples-rf NUM_SAMPLES_RF]
[--train-val-split TRAIN_VAL_SPLIT]
[--per-replica-batch-size PER_REPLICA_BATCH_SIZE]
[--effective-batch-size EFFECTIVE_BATCH_SIZE]
[--per-replica-val-batch-size PER_REPLICA_VAL_BATCH_SIZE]
[--signal-injection-chunk-size SIGNAL_INJECTION_CHUNK_SIZE]
[--plot-injection-subsampling-count PLOT_INJECTION_SUBSAMPLING_COUNT]
[--plot-injection-outlier-percentile PLOT_INJECTION_OUTLIER_PERCENTILE]
[--latent-viz-num-cadences-per-type LATENT_VIZ_NUM_CADENCES_PER_TYPE]
[--latent-viz-step-interval LATENT_VIZ_STEP_INTERVAL]
[--latent-viz-umap-fit-max-samples LATENT_VIZ_UMAP_FIT_MAX_SAMPLES]
[--latent-viz-umap-n-neighbors LATENT_VIZ_UMAP_N_NEIGHBORS [LATENT_VIZ_UMAP_N_NEIGHBORS ...]]
[--latent-viz-umap-min-dist LATENT_VIZ_UMAP_MIN_DIST [LATENT_VIZ_UMAP_MIN_DIST ...]]
[--latent-viz-gif-max-frames LATENT_VIZ_GIF_MAX_FRAMES]
[--latent-viz-gif-duration-ms LATENT_VIZ_GIF_DURATION_MS]
[--snr-base SNR_BASE] [--initial-snr-range INITIAL_SNR_RANGE]
[--final-snr-range FINAL_SNR_RANGE]
[--curriculum-schedule CURRICULUM_SCHEDULE]
[--exponential-decay-rate EXPONENTIAL_DECAY_RATE]
[--step-easy-rounds STEP_EASY_ROUNDS]
[--step-hard-rounds STEP_HARD_ROUNDS]
[--base-learning-rate BASE_LEARNING_RATE]
[--min-learning-rate MIN_LEARNING_RATE]
[--min-pct-improvement MIN_PCT_IMPROVEMENT]
[--patience-threshold PATIENCE_THRESHOLD]
[--lr-reduction-factor LR_REDUCTION_FACTOR]
[--max-retries MAX_RETRIES] [--retry-delay RETRY_DELAY]
[--load-dir LOAD_DIR] [--load-tag LOAD_TAG]
[--start-round START_ROUND] [--save-tag SAVE_TAG]
options:
-h, --help show this help message and exit
--data-path DATA_PATH
Path to data directory (overrides AETHERSCAN_DATA_PATH
environment variable)
--model-path MODEL_PATH
Path to model directory (overrides
AETHERSCAN_MODEL_PATH environment variable)
--output-path OUTPUT_PATH
Path to output directory (overrides
AETHERSCAN_OUTPUT_PATH environment variable)
--vae-latent-dim VAE_LATENT_DIM
Dimensionality of the VAE latent space (bottleneck
size)
--vae-dense-layer-size VAE_DENSE_LAYER_SIZE
Size of dense layer in VAE architecture (should match
frequency bins after downsampling)
--vae-kernel-size VAE_KERNEL_SIZE VAE_KERNEL_SIZE
Kernel size for Conv2D layers as two integers (e.g.,
--vae-kernel-size 3 3)
--vae-beta VAE_BETA Beta coefficient for KL divergence loss term in beta-
VAE (controls disentanglement)
--vae-alpha VAE_ALPHA
Alpha coefficient for clustering loss term in VAE
(controls cluster separation)
--rf-n-estimators RF_N_ESTIMATORS
Number of decision trees in the random forest ensemble
--rf-bootstrap RF_BOOTSTRAP
Whether to use bootstrap sampling when building trees
(enables bagging)
--rf-max-features RF_MAX_FEATURES
Number of features to consider for splits: 'sqrt',
'log2', or a float (fraction of features)
--rf-n-jobs RF_N_JOBS
Number of parallel jobs for random forest training (-1
uses all CPU cores)
--rf-seed RF_SEED Random seed for random forest reproducibility
--num-replicas NUM_REPLICAS
Number of GPUs to use for the distributed strategy. If
omitted, the strategy uses every GPU visible to TF;
otherwise it is restricted to the first N physical
GPUs and the rest are left untouched. Must be >= 1 and
<= the number of physical GPUs on your machine.
--gpu-memory-limit-mb GPU_MEMORY_LIMIT_MB
Per-GPU memory cap in MiB. Omit to use memory-growth-
only (recommended on Blackwell). Set for TF to
allocate a fixed logical device of a given size per
physical GPU (e.g. 14000)
--nccl-num-packs NCCL_NUM_PACKS
num_packs for NCCL/HierarchicalCopy all-reduce. Lower
values (e.g. 1) reduces tiny-tensor latency; higher
values (e.g. >=4) can help bandwidth on >4-GPU
topologies.
--async-allocator, --no-async-allocator
Toggle TF_GPU_ALLOCATOR=cuda_malloc_async (default:
enabled). Pass --no-async-allocator as a workaround
for NGC 25.02 multi-GPU OOM bugs.
--num-observations NUM_OBSERVATIONS
Number of observations per cadence snippet (e.g., 6
for 3 ON + 3 OFF)
--width-bin WIDTH_BIN
Number of frequency bins per observation (spectral
resolution)
--downsample-factor DOWNSAMPLE_FACTOR
Downsampling factor for frequency bins (reduces
spectral dimension)
--time-bins TIME_BINS
Number of time bins per observation (temporal
resolution)
--freq-resolution FREQ_RESOLUTION
Frequency resolution in Hz (determined by instrument)
--time-resolution TIME_RESOLUTION
Time resolution in seconds (determined by instrument)
--num-target-backgrounds NUM_TARGET_BACKGROUNDS
Number of background (noise-only) cadences to load for
training data generation
--background-load-chunk-size BACKGROUND_LOAD_CHUNK_SIZE
Maximum number of background cadences to process at
once during loading (memory management)
--max-chunks-per-file MAX_CHUNKS_PER_FILE
Maximum number of chunks to load from a single data
file (limits per-file contribution)
--train-files TRAIN_FILES [TRAIN_FILES ...]
Space-separated list of training data file names
(e.g., real_filtered_LARGE_HIP110750.npy)
--num-training-rounds NUM_TRAINING_ROUNDS
Total number of training rounds in curriculum learning
schedule
--epochs-per-round EPOCHS_PER_ROUND
Number of epochs to train the VAE per curriculum
learning round
--num-samples-beta-vae NUM_SAMPLES_BETA_VAE
Number of training samples to generate for beta-VAE
per round (must be divisible by 4)
--num-samples-rf NUM_SAMPLES_RF
Number of training samples to generate for random
forest (must be divisible by 4)
--train-val-split TRAIN_VAL_SPLIT
Fraction of data to use for training vs validation
(e.g., 0.8 = 80% train, 20% val)
--per-replica-batch-size PER_REPLICA_BATCH_SIZE
Batch size per GPU/device replica during training
--effective-batch-size EFFECTIVE_BATCH_SIZE
Effective batch size for gradient accumulation across
all replicas
--per-replica-val-batch-size PER_REPLICA_VAL_BATCH_SIZE
Batch size per GPU/device replica during validation
--signal-injection-chunk-size SIGNAL_INJECTION_CHUNK_SIZE
Maximum cadences to process at once during synthetic
signal injection (must be divisible by 4)
--plot-injection-subsampling-count PLOT_INJECTION_SUBSAMPLING_COUNT
Max points per stat name, per signal type, for A→B
intensity bias scatter plots. Outliers are
prioritized, with the difference made up from randomly
sampling without replacement the remaining points
--plot-injection-outlier-percentile PLOT_INJECTION_OUTLIER_PERCENTILE
Threshold for points to always be included in A→B
intensity bias scatter plots
--latent-viz-num-cadences-per-type LATENT_VIZ_NUM_CADENCES_PER_TYPE
Number of cadences per signal type for latent space
visualization batch (total points = 4× this value × 6
observations per cadence)
--latent-viz-step-interval LATENT_VIZ_STEP_INTERVAL
Capture a latent space snapshot every N training steps
(lower = more snapshots, more DB writes, and larger
storage costs)
--latent-viz-umap-fit-max-samples LATENT_VIZ_UMAP_FIT_MAX_SAMPLES
Maximum number of pooled latent vectors used to fit
the UMAP model (remaining vectors are projected via
transform; lower = faster, higher = more faithful
embedding)
--latent-viz-umap-n-neighbors LATENT_VIZ_UMAP_N_NEIGHBORS [LATENT_VIZ_UMAP_N_NEIGHBORS ...]
UMAP n_neighbors values to sweep for latent space
visualization (e.g., --latent-viz-umap-n-neighbors 5
15 30 50)
--latent-viz-umap-min-dist LATENT_VIZ_UMAP_MIN_DIST [LATENT_VIZ_UMAP_MIN_DIST ...]
UMAP min_dist values to sweep for latent space
visualization (e.g., --latent-viz-umap-min-dist 0.0
0.1 0.5)
--latent-viz-gif-max-frames LATENT_VIZ_GIF_MAX_FRAMES
Maximum number of frames in latent space GIF output
(snapshots beyond this limit are log-subsampled,
prioritizing earlier training steps)
--latent-viz-gif-duration-ms LATENT_VIZ_GIF_DURATION_MS
Milliseconds per frame in latent space GIF output
--snr-base SNR_BASE Base signal-to-noise ratio for curriculum learning
(minimum SNR difficulty level)
--initial-snr-range INITIAL_SNR_RANGE
SNR range for initial (easiest) training rounds
(signals sampled from snr_base to snr_base +
initial_snr_range)
--final-snr-range FINAL_SNR_RANGE
SNR range for final (hardest) training rounds (signals
sampled from snr_base to snr_base + final_snr_range).
Ignored if only training for 1 round
--curriculum-schedule CURRICULUM_SCHEDULE
Curriculum difficulty progression schedule: 'linear',
'exponential', or 'step'
--exponential-decay-rate EXPONENTIAL_DECAY_RATE
Decay rate for exponential curriculum schedule (must
be negative; more negative = faster difficulty
increase)
--step-easy-rounds STEP_EASY_ROUNDS
Number of rounds with easy signals when using step
curriculum schedule
--step-hard-rounds STEP_HARD_ROUNDS
Number of rounds with hard signals when using step
curriculum schedule
--base-learning-rate BASE_LEARNING_RATE
Initial learning rate for Adam optimizer
--min-learning-rate MIN_LEARNING_RATE
Learning rate floor for adaptive learning rate
reduction
--min-pct-improvement MIN_PCT_IMPROVEMENT
Minimum fractional validation loss improvement to
avoid LR reduction (e.g., 0.001 = 0.1%)
--patience-threshold PATIENCE_THRESHOLD
Number of consecutive epochs without minimum
improvement before reducing learning rate
--lr-reduction-factor LR_REDUCTION_FACTOR
Multiplicative factor for learning rate reduction
(e.g., 0.2 reduces LR by 20%)
--max-retries MAX_RETRIES
Maximum number of retry attempts when training fails
due to errors
--retry-delay RETRY_DELAY
Delay in seconds between retry attempts after training
failure
--load-dir LOAD_DIR Subdirectory for checkpoint loading (relative to
--model-path)
--load-tag LOAD_TAG Model tag for checkpoint loading. Accepted formats:
final_vX, round_XX, YYYYMMDD_HHMMSS, test_vX. If
round_XX format used, and --start-round not specified,
training will resume from round following loaded
checkpoint (i.e., XX + 1)
--start-round START_ROUND
Round to begin/resume training from
--save-tag SAVE_TAG Tag for current pipeline run. Accepted formats:
final_vX, round_XX, test_vX. Current timestamp used
(YYYYMMDD_HHMMSS) if none specified
The Aetherscan inference pipeline exposes the following CLI flags to the user. Regenerate this output with ./utils/run_container.sh python utils/print_cli_help.py inference (container) or PYTHONPATH=src python utils/print_cli_help.py inference (source).
usage: inference [-h] [--data-path DATA_PATH] [--model-path MODEL_PATH]
[--output-path OUTPUT_PATH] [--num-replicas NUM_REPLICAS]
[--gpu-memory-limit-mb GPU_MEMORY_LIMIT_MB]
[--async-allocator | --no-async-allocator]
[--test-files TEST_FILES [TEST_FILES ...]]
[--inference-files INFERENCE_FILES [INFERENCE_FILES ...]]
[--encoder-path ENCODER_PATH] [--rf-path RF_PATH]
[--config-path CONFIG_PATH]
[--per-replica-batch-size PER_REPLICA_BATCH_SIZE]
[--classification-threshold CLASSIFICATION_THRESHOLD]
[--cadence-group-by-cols CADENCE_GROUP_BY_COLS [CADENCE_GROUP_BY_COLS ...]]
[--cadence-h5-path-col CADENCE_H5_PATH_COL]
[--cadence-expected-obs CADENCE_EXPECTED_OBS]
[--coarse-channel-width COARSE_CHANNEL_WIDTH]
[--parallel-coarse-chans PARALLEL_COARSE_CHANS]
[--spline-order SPLINE_ORDER]
[--detection-window-size DETECTION_WINDOW_SIZE]
[--detection-step-size DETECTION_STEP_SIZE]
[--stat-threshold STAT_THRESHOLD] [--stamp-width STAMP_WIDTH]
[--overlap-search | --no-overlap-search]
[--overlap-fraction OVERLAP_FRACTION]
[--preprocess-output-dir PREPROCESS_OUTPUT_DIR]
[--max-retries MAX_RETRIES] [--retry-delay RETRY_DELAY]
[--save-tag SAVE_TAG]
options:
-h, --help show this help message and exit
--data-path DATA_PATH
Path to data directory (overrides AETHERSCAN_DATA_PATH
environment variable)
--model-path MODEL_PATH
Path to model directory (overrides
AETHERSCAN_MODEL_PATH environment variable)
--output-path OUTPUT_PATH
Path to output directory (overrides
AETHERSCAN_OUTPUT_PATH environment variable)
--num-replicas NUM_REPLICAS
Number of GPUs to use for the distributed strategy. If
omitted, the strategy uses every GPU visible to TF;
otherwise it is restricted to the first N physical
GPUs and the rest are left untouched. Must be >= 1 and
<= the number of physical GPUs on your machine.
--gpu-memory-limit-mb GPU_MEMORY_LIMIT_MB
Per-GPU memory cap in MiB. Omit to use memory-growth-
only (recommended on Blackwell). Set for TF to
allocate a fixed logical device of a given size per
physical GPU (e.g. 14000)
--async-allocator, --no-async-allocator
Toggle TF_GPU_ALLOCATOR=cuda_malloc_async (default:
enabled). Pass --no-async-allocator as a workaround
for NGC 25.02 multi-GPU OOM bugs.
--test-files TEST_FILES [TEST_FILES ...]
Space-separated list of testing data file names (e.g.,
real_filtered_LARGE_test_HIP15638.npy)
--inference-files INFERENCE_FILES [INFERENCE_FILES ...]
Space-separated list of inference catalog file names
(e.g. complete_cadences_catalog.csv). Expects .h5
filepaths to individual observations, and sufficient
metadata for recovering cadence groupings. If
provided, triggers the energy detection preprocessing
pipeline and takes precedence over --test-files
--encoder-path ENCODER_PATH
Path to trained VAE encoder model file (.keras)
--rf-path RF_PATH Path to trained Random Forest model file (.joblib)
--config-path CONFIG_PATH
Path to config file from corresponding training run
(.json)
--per-replica-batch-size PER_REPLICA_BATCH_SIZE
Batch size per GPU/device replica during inference
--classification-threshold CLASSIFICATION_THRESHOLD
Classification threshold for candidate detection
--cadence-group-by-cols CADENCE_GROUP_BY_COLS [CADENCE_GROUP_BY_COLS ...]
Space-separated list of CSV column names whose joint
value defines cadence membership (e.g., Target Session
Band 'Cadence ID' Frequency)
--cadence-h5-path-col CADENCE_H5_PATH_COL
CSV column containing the .h5 file path for each
observation (default: '.h5 path')
--cadence-expected-obs CADENCE_EXPECTED_OBS
Required number of observations per cadence (default:
6 for ABACAD)
--coarse-channel-width COARSE_CHANNEL_WIDTH
Number of fine channels per coarse channel (default:
1048576)
--parallel-coarse-chans PARALLEL_COARSE_CHANS
Number of coarse channels to process in parallel per
block (default: 28)
--spline-order SPLINE_ORDER
Spline order for bandpass fitting (default: 16)
--detection-window-size DETECTION_WINDOW_SIZE
Sliding window size in fine channels for normality
test (default: 256)
--detection-step-size DETECTION_STEP_SIZE
Step size in fine channels for sliding window
(default: 128)
--stat-threshold STAT_THRESHOLD
D'Agostino-Pearson statistic threshold for hit
detection (default: 2048.0)
--stamp-width STAMP_WIDTH
Width in fine channels of the extracted stamp around
each hit (default: 4096; must equal --width-bin)
--overlap-search, --no-overlap-search
Additionally extract stamps offset by
±overlap_fraction*stamp_width around each hit. Pass
--no-overlap-search to disable when the config default
is True.
--overlap-fraction OVERLAP_FRACTION
Fractional offset (relative to stamp_width) for
overlap-search stamps (default: 0.5)
--preprocess-output-dir PREPROCESS_OUTPUT_DIR
Directory for per-cadence .npy outputs from
preprocessing
--max-retries MAX_RETRIES
Maximum number of retry attempts for inference
(including preprocessing) on failure
--retry-delay RETRY_DELAY
Delay in seconds between inference retry attempts
--save-tag SAVE_TAG Tag for current pipeline run. Current timestamp used
(YYYYMMDD_HHMMSS) if none specified
For a list of known issues, limitations, and workarounds, see KNOWN_ISSUES.md.
Contributions are welcome! Quick start:
git clone https://github.com/zachtheyek/Aetherscan.git
cd Aetherscan
singularity build aetherscan-ngc25.02.sif aetherscan.def
# or:
apptainer build aetherscan-ngc25.02.sif aetherscan.def
./utils/start_tmux_session.sh
pre-commit install- PRs: Must be linked to an existing issue and pass all hooks
- Commits: Must carry a verified GPG signature — see Commit Signing (GPG)
- Branches: Use
feature/,hotfix/, ormisc/prefixes - Code style: PEP-8 with minor relaxations, enforced via ruff (see pyproject.toml)
See CONTRIBUTING.md for full guidelines on workflow, project structure, and testing.
If you use Aetherscan in your research, please cite it using GitHub's citations feature.
See CITATION.cff for details
Aetherscan is committed to responsible disclosure. Quick reference:
- Report vulnerabilities: Open a GitHub Discussion with the "security" label (non-critical) or contact @zachtheyek on Slack (critical; expect a response within 48-72h)
- Incident response: Contain compromised credentials immediately, then assess scope, notify affected parties, remediate, and document
- Secrets: Never commit tokens; use
.envfiles (gitignored). Rotate immediately if compromised - Automated scanning: gitleaks pre-commit hook blocks accidental secret commits; GitHub Dependabot monitors for vulnerable dependencies
See SECURITY.md for more details.
Aetherscan is distributed under the BSD-3-Clause license, a permissive license that allows commercial use, modification, and distribution with minimal restrictions. See LICENSE for details. All contributions to the project are assumed to be licensed under the same terms.

