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
4 changes: 2 additions & 2 deletions autolens/imaging/fit_imaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def galaxy_image_dict(self) -> Dict[ag.Galaxy, np.ndarray]:

return {**galaxy_image_2d_dict, **galaxy_linear_obj_image_dict}

@property
@cached_property
def galaxy_model_image_dict(self) -> Dict[ag.Galaxy, np.ndarray]:
"""
A dictionary which associates every galaxy in the tracer with its `model_image`.
Expand Down Expand Up @@ -268,7 +268,7 @@ def subtracted_signal_to_noise_maps_of_galaxies_dict(self) -> Dict[ag.Galaxy, np

return subtracted_signal_to_noise_maps_of_galaxies_dict

@property
@cached_property
def model_images_of_planes_list(self) -> List[aa.Array2D]:
"""
A list of every model image of every plane in the tracer.
Expand Down
Loading