From 9b10c3df6a65a00211c64a85f6e53cc58c9b6201 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 14 May 2026 20:53:17 +0100 Subject: [PATCH] Disable model.graph output by default Add `model_graph: false` to config/output.yaml to mirror the new flag in autofit/config/output.yaml (PyAutoFit PR #1264). Without this override the workspace's `default: true` falls through and the empty `model.graph` file is still written for every fit. With `model_graph: false` here, the file is no longer produced for ordinary PriorModel/Collection fits. Graphical-model users can opt in by setting it back to `true`. --- config/output.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/output.yaml b/config/output.yaml index fad529dd..e6f60b79 100644 --- a/config/output.yaml +++ b/config/output.yaml @@ -95,4 +95,6 @@ latent_results: true # Whether to output the `latent.results` file. # Other Files: -search_log: true # `search.log`: logging produced whilst running the fit method \ No newline at end of file +search_log: true # `search.log`: logging produced whilst running the fit method + +model_graph: false # `model.graph`: graphical-model factor graph summary. Only meaningful for graphical models (autofit.graphical); empty for ordinary PriorModel/Collection fits, so disabled by default. \ No newline at end of file