Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions autofit/mapper/prior_model/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -1778,11 +1778,6 @@ def info(self) -> str:
parameter of the overall model.
This information is extracted from each priors *model_info* property.
"""
from autofit.non_linear.test_mode import test_mode_level

if test_mode_level() >= 2:
return f"Total Free Parameters = {self.prior_count}\n\n[test mode — info skipped]"

formatter = TextFormatter(line_length=info_whitespace())

for t in find_groups(
Expand Down
3 changes: 3 additions & 0 deletions autofit/non_linear/search/abstract_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,9 @@ class represented by model M and gives a score for their fitness.
model=model,
info=info,
)
else:
if hasattr(self.paths, '_save_model_info'):
self.paths._save_model_info(model=model)

if not self.paths.is_complete:
result = self.start_resume_fit(
Expand Down
Loading