Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion autolens/point/model/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def __init__(
cosmology: ag.cosmo.LensingCosmology = None,
title_prefix: str = None,
use_jax: bool = True,
**kwargs,
):
"""
Fits a lens model to a point source dataset (e.g. positions, fluxes, time delays) via a non-linear search.
Expand Down Expand Up @@ -77,7 +78,7 @@ def __init__(
A string that is added before the title of all figures output by visualization, for example to
put the name of the dataset and galaxy in the title.
"""
super().__init__(cosmology=cosmology, use_jax=use_jax)
super().__init__(cosmology=cosmology, use_jax=use_jax, **kwargs)

AnalysisLens.__init__(self=self, cosmology=cosmology, use_jax=use_jax)

Expand Down
Loading