You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: autofit/config/general.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
+
jax:
2
+
use_jax: false # If True, PyAutoFit uses JAX internally, whereas False uses normal Numpy.
1
3
analysis:
2
4
n_cores: 1# The number of cores a parallelized sum of Analysis classes uses by default.
3
5
hpc:
4
6
hpc_mode: false # If True, use HPC mode, which disables GUI visualization, logging to screen and other settings which are not suited to running on a super computer.
5
7
iterations_per_update: 5000# The number of iterations between every update (visualization, results output, etc) in HPC mode.
6
8
inversion:
7
9
check_reconstruction: true # If True, the inversion's reconstruction is checked to ensure the solution of a meshs's mapper is not an invalid solution where the values are all the same.
8
-
reconstruction_vmax_factor: 0.5# Plots of an Inversion's reconstruction use the reconstructed data's bright value multiplied by this factor.
9
-
model:
10
-
ignore_prior_limits: false # If ``True`` the limits applied to priors will be ignored, where limits set upper / lower limits. This stops PriorLimitException's from being raised.
10
+
reconstruction_vmax_factor: 0.5# Plots of an Inversion's reconstruction use the reconstructed data's bright value multiplied by this factor.
11
11
output:
12
12
force_pickle_overwrite: false # If True pickle files output by a search (e.g. samples.pickle) are recreated when a new model-fit is performed.
13
13
force_visualize_overwrite: false # If True, visualization images output by a search (e.g. subplots of the fit) are recreated when a new model-fit is performed.
Copy file name to clipboardExpand all lines: autofit/config/output.yaml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,8 +86,10 @@ start_point: true
86
86
# manually after completing a successful model-fit. This will save computational run time by not computing latent
87
87
# variables during a any model-fit which is unsuccessful.
88
88
89
-
latent_during_fit: true# Whether to output the `latent.csv`, `latent.results` and `latent_summary.json` files during the fit when it performs on-the-fly output.
89
+
latent_during_fit: false# Whether to output the `latent.csv`, `latent.results` and `latent_summary.json` files during the fit when it performs on-the-fly output.
90
90
latent_after_fit: true # If `latent_during_fit` is False, whether to output the `latent.csv`, `latent.results` and `latent_summary.json` files after the fit is complete.
91
+
latent_draw_via_pdf : true # Whether to draw latent variable values via the PDF of every sample, which uses fewer samples to estimate latent variable errors. If False, latent variable values are drawn from every sample.
92
+
latent_draw_via_pdf_size : 100# The number of samples drawn to estimate latent variable errors if `latent_draw_via_pdf` is True.
91
93
latent_csv: true # Whether to ouptut the `latent.csv` file.
92
94
latent_results: true # Whether to output the `latent.results` file.
0 commit comments