Welcome to Fulu
Fulu is a python library of methods for astronomical light curves approximation based on machine learning. It was named after the variable star Zeta Cassiopeiae 590 light-years from the Sun and officially named Fulu.
Cassiopeia constellation [source]
The library contains our implementation of light curve approximation method based on Gaussian Processes described in [1], and several other methods based on Normalizing Flows, Shallow and Bayesian Neural Networks considered in [2].
- [1] K. Boone. “Avocado: Photometric Classification of Astronomical Transients with Gaussian Process Augmentation.” The Astronomical Journal (2019). [journal][arxiv]
- [2] M. Demianenko, E. Samorodova, M. Sysak, A. Shiriaev, K. Malanchev, D. Derkach, M. Hushchyn. "Supernova Light Curves Approximation based on Neural Network Models." ArXiv abs/2206.13306 (2022). [arxiv]
Install
pip install fulu
or
python3 -m pip install git+https://github.com/HSE-LAMBDA/fulu
Basic usage
import numpy as np
import fulu
# generate a light curve
passband2lam = {'u': np.log10(3751.36), 'g': np.log10(4741.64), 'r': np.log10(6173.23)}
n_per_band = 10
n = n_per_band * len(passband2lam)
t = np.linspace(0.0, n-1, n)
flux = 10.0 + np.sin(2*t) + np.random.normal(0, 0.1, len(t))
flux_err = 0.1 * np.ones_like(flux)
passbands = np.tile(list(passband2lam), n_per_band)
# approximation
aug = fulu.GaussianProcessesAugmentation(passband2lam)
aug.fit(t, flux, flux_err, passbands)
# augmentation
t_aug, flux_aug, flux_err_aug, passband_aug = aug.augmentation(t.min(), t.max(), 100)
# visualization
plotic = fulu.LcPlotter(passband2lam)
plotic.plot_one_graph_all(t=t, flux=flux, flux_err=flux_err, passbands=passbands,
t_approx=t_aug, flux_approx=flux_aug,
flux_err_approx=flux_err_aug, passband_approx=passband_aug)
Please find a plotting example in notebooks_examples/plotting.ipynb
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fulu-0.1.2.tar.gz
(15.0 kB
view details)
File details
Details for the file fulu-0.1.2.tar.gz.
File metadata
- Download URL: fulu-0.1.2.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e19ab15dc679f523a70a7bf9680689ffe4f8cf7356d2e73c80cfdace714ad40
|
|
| MD5 |
acfc62da73c8a13f9c3a28ea02b1324b
|
|
| BLAKE2b-256 |
bfec493f8bad5c482114cb1ac1bd67321589ca47be3612649731f09736efa345
|