Kilonova surrogate modelling via cVAE
Project description
KilonovaNet: Kilonova Surrogate Modelling
A conditional variational autoencoder (cVAE) framework for producing continuous surrogate spectra for kilonova models.
This package provides the interface to predict spectra. It does not provide an interface to do the data prep for training and training itself. The currently trained and provided models are:
This work requires the use of pyphot; pyphot requires hdf5. See their installation intructions to see how to install that for your system. Then, if you install KilonovaNet via pip, dependencies (including pyphot) should install properly.
Installation
Install via pip:
pip install kilonovanet
Usage
In order to produce surrogate spectra, you will need to specify the model and torch files. These are not included in this package, you must download them separately from the KilonovaNet github from data and model folders.
After you have the files in your system, you can produce spectra with the following:
import kilonovanet
import numpy as np
metadata_file = "data/metadata_bulla_bns.json"
torch_file = "models/bulla-bns-latent-20-hidden-1000-CV-4-2021-04-21-epoch-200.pt"
times = np.array([1.2, 2.2])
physical_parameters = np.array([1.0e-2, 9.0e-2, 3.0e1, 3.0e-1])
model = kilonovanet.Model(metadata_file, torch_file)
spectra = model.predict_spectra(physical_parameters, times)
In order to produce some photometric observations, the following have to be specified:
- the model
- the corresponding parameters of the model (see their papers, repositories, etc.)
- the times post-merger to produce the observations
- the filters in which to produce the observations
I have specified some filters in the github folder filter_data, but any filter transmission curves should work properly.
After you have filter profiles, use the following to produce synthetic photometric observations:
import kilonovanet
import numpy as np
metadata_file = "data/metadata_bulla_bns.json"
torch_file = "models/bulla-bns-latent-20-hidden-1000-CV-4-2021-04-21-epoch-200.pt"
filter_lib = "data/filter_data"
times = np.array([1.2, 1.2, 1.2, 2.2, 2.2, 2.2, 2.2])
filters = np.array(["LSST_u", "LSST_z", "LSST_y", "LSST_u", "LSST_z", "LSST_y"])
distance = 40.0 * 10 ** 6 * 3.086e18 # 40 Mpc in cm
physical_parameters = np.array([1.0e-2, 9.0e-2, 3.0e1, 3.0e-1])
model = kilonovanet.Model(metadata_file, torch_file, filter_library_path=filter_lib)
mags = model.predict_magnitudes(physical_parameters, times=times, filters=filters,
distance=distance)
If you intend to use the same set of observations often, e.g. when doing an
MCMC-based fit, you can specify all of them in an Observations
object and
then simply call model.predict_magnitudes(physical_parameters)
.
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 kilonovanet-0.1.1.tar.gz
.
File metadata
- Download URL: kilonovanet-0.1.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdcf330c33a807a511522244acf6ede48a2edf024f4f0fc0d111587d33e28042 |
|
MD5 | b71ea9cd0ea7cb2226f0e34b79d44330 |
|
BLAKE2b-256 | 3fdd7a062a375cf51586d947b6dedcbab4d70a1e1caaa5dad62d93d867eb0232 |
File details
Details for the file kilonovanet-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: kilonovanet-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7833b896a324592e2c7be48cd2653859af61fce437b52e3745ce0bf726f4d7a0 |
|
MD5 | ce5a1acc23912655c542587add3354ad |
|
BLAKE2b-256 | b984be8bcc1114feb08b74a03697a85209764fcbb8545ea8e5b251766bd9de13 |