Published November 17, 2024 | Version v1

Real-bogus scores for active anomaly detection

Description

Data description for Semenikhin et al., 2024

The dataset consists of the following files:

feature_snad4_r_100.dat contains light curve feature data for objects, where each object is represented by 54 feature values. These values are encoded as little-endian single-precision IEEE-754 floating-point numbers (32-bit floats). Feature names are listed in the plain text file feature_snad4_r_100.name, with one name per line.
sid_snad4_r_100.dat contains ZTF DR object identifiers, encoded as little-endian 64-bit unsigned integers.

exp_feature_snad4_r_100.dat contains the same features as feature_snad4_r_100.dat, but with an additional column representing the real-bogus classifier prediction. Each object in this file corresponds to 55 features: the original 54 features plus 1 additional feature. Feature names for this file are provided in exp_feature_snad4_r_100.name.

The files sid_snad4_r_100.dat, feature_snad4_r_100.dat, and exp_feature_snad4_r_100.dat share the same object order.


Below is a sample Python script for accessing the data using NumPy:

import numpy as np

# Load object IDs
oid     =  np.memmap('sid_snad4_r_100.dat', mode='c', dtype=np.uint64)

# Load features and reshape
feature = np.memmap('feature_snad4_r_100.dat', mode='c', dtype=np.float32).reshape(oid.shape[0], -1)

# Print dataset information
print(f'Number of objects: {len(oid)}')
print(f'Features shape: {feature.shape}')

Files

Files (29.9 GB)

Name Size
md5:d750f35d29c28d5fd52cf73232932d43
14.8 GB Download
md5:0869bd0fd296f85f9df7d6b8ea9033d6
1.3 kB Download
md5:65d55c42548651e29e9460bba125418b
14.6 GB Download
md5:8ea7920d6f0f963da8b15d22ead2bfe5
1.3 kB Download
md5:2cd3f4f43f5a14434c41374169381888
539.0 MB Download

Additional details

Related works

Is described by
arXiv:2409.10256 (arXiv)

Funding

Russian Science Foundation
Two Extremes: Fast and Slow Transients in the Zwicky Transient Facility Survey 24-22-00233

Software