-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #739 from Gaurav17Joshi/features/GPtool
Gaussian Processes Tool
- Loading branch information
Showing
5 changed files
with
1,340 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
This is a JAX implementation of the GP tool by `Hubener et al <https://arxiv.org/pdf/2205.12716.pdf#:~:text=ABSTRACT%20Analyses%20of%20quasi%2Dperiodic,flares%20and%20fast%20radio%20bursts.>`_ | ||
for QPO detection and parameter analysis. | ||
|
||
This feature makes use of tinygp library for Gaussian Processes implementation, and jaxns for nested sampling, | ||
and is kept in the stingray.modeling.gpmodeling module. | ||
|
||
Main features of the module are: | ||
|
||
- get_prior: This function makes the prior function for a specified prior dictionary. | ||
- get_likelihood: This function makes the log_likelihood function for the given Kernel, Mean model and lightcurve. | ||
- GPResult class: The class which takes a Lightcurve, and performs Nested Sampling for a given prior and likelihood. | ||
|
||
The additional Dependencies for the code | ||
- jax | ||
- tinygp | ||
- jaxns | ||
- etils | ||
- tensorflow_probability | ||
- typing_extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.