Skip to content

Commit 4e0e4b3

Browse files
authored
Merge pull request #37 from PyAutoLabs/feature/gated-readme-drift
docs: fix README drift
2 parents f4ca1c2 + a337a54 commit 4e0e4b3

8 files changed

Lines changed: 20 additions & 17 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ they are concise, API-focused, and assume the concepts taught in **HowToFit** as
2525
interpret the results of a fit.
2626
- `chapter_2_scientific_workflow` — Reserved for future material on building a full scientific
2727
model-fitting workflow. Currently a stub; the corresponding overview lives in
28-
`autofit_workspace/scripts/overview/overview_2_science_workflow.py`.
28+
`autofit_workspace/scripts/overview/overview_2_scientific_workflow.py`.
2929
- `chapter_3_graphical_models` — Fitting many datasets simultaneously with graphical models,
3030
hierarchical models, and Expectation Propagation.
3131

config/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
The `config` folder contains configuration files which customize default **PyAutoLens**.
1+
The `config` folder contains configuration files which customize default **PyAutoFit**.
22

33
# Folders
44

5+
- `non_linear`: Configs for default non-linear search (e.g. MCMC, nested sampling) settings.
56
- `priors`: Configs defining default priors assumed on every model component and set of parameters.
7+
- `visualize`: Configs defining what images are output by a model fit.
8+
- `build`: Configs used by the automated build and test system (not relevant to normal use).
69

710
# Files
811

9-
- `general.yaml`: Customizes general **PyAutoLens** settings.
10-
- `non-linear.yaml`: Configs for default non-linear search (e.g. MCMC, nested sampling) settings.
11-
- `logging.yaml`: Customizes the logging behaviour of **PyAutoLens**.
12-
- `visualize.yaml`: Configs defining what images are output by a lens model fit.
13-
- `notation.yaml`: Configs defining labels and formatting of model parameters when used for visualization.
12+
- `general.yaml`: Customizes general **PyAutoFit** settings.
13+
- `logging.yaml`: Customizes the logging behaviour of **PyAutoFit**.
14+
- `notation.yaml`: Defines labels and formatting of model parameters when used for visualization.
15+
- `output.yaml`: Customizes what a model-fit writes to the output folder.

config/non_linear/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
The `non_linear` folder contains configuration files which customize the default behaviour of non-linear searches in
2-
**PyAutoLens**.
1+
The `non_linear` folder contains configuration files which customize the default behaviour of non-linear
2+
searches in **PyAutoFit**.
3+
4+
Defaults for individual searches (e.g. Nautilus, Emcee, LBFGS) ship with **PyAutoFit** itself; this folder
5+
holds only the workspace-level overrides.
36

47
# Files
58

6-
- `mcmc.yaml`: Settings default behaviour of MCMC non-linear searches (e.g. Emcee).
7-
- `nest.yaml`: Settings default behaviour of nested sampler non-linear searches (e.g. Dynesty).
8-
- `mle.yaml`: Settings default behaviour of maximum likelihood estimator (mle) searches (e.g. LBFGS).
9+
- `GridSearch.yaml`: Settings for the non-linear search grid search.

config/visualize/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The `config` folder contains configuration files which customize default **PyAutoLens**.
1+
The `visualize` folder contains configuration files which customize what a model-fit outputs.
22

33
# Files
44

notebooks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The `scripts` folder contains **HowToFit** lectures, which teach a new user how
33
# Folders
44

55
- `chapter_1_introduction`: Introduction lectures describing how to compose and fit models in **PyAutoFit**.
6-
- `chapter_2_scientific_workflow`: Reserved stub for future material on building a full scientific model-fitting workflow. The equivalent overview currently lives in `autofit_workspace/scripts/overview/overview_2_science_workflow.py`.
6+
- `chapter_2_scientific_workflow`: Reserved stub for future material on building a full scientific model-fitting workflow. The equivalent overview currently lives in `autofit_workspace/scripts/overview/overview_2_scientific_workflow.py`.
77
- `chapter_3_graphical_models`: How to compose and fit graphical models which fit many datasets simultaneously, including hierarchical models and Expectation Propagation.
88
- `simulators`: Simulator scripts that generate the tutorial 1D datasets at runtime.
99

notebooks/chapter_2_scientific_workflow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ how to build a scientific workflow. However, the chapter is not written yet.
44
The functionality required to develop a scientific workflow is fully supported in autofit and described in the
55
following overview example:
66

7-
`autofit_workspace/*/overview/overview_2_science_workflow.py`
7+
`autofit_workspace/*/overview/overview_2_scientific_workflow.py`
88

99
If you are a confident model-fitting practitioner, you should be able to follow this example to perform the tasks
1010
required to build a scientific workflow.

scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The `scripts` folder contains **HowToFit** lectures, which teach a new user how
33
# Folders
44

55
- `chapter_1_introduction`: Introduction lectures describing how to compose and fit models in **PyAutoFit**.
6-
- `chapter_2_scientific_workflow`: Reserved stub for future material on building a full scientific model-fitting workflow. The equivalent overview currently lives in `autofit_workspace/scripts/overview/overview_2_science_workflow.py`.
6+
- `chapter_2_scientific_workflow`: Reserved stub for future material on building a full scientific model-fitting workflow. The equivalent overview currently lives in `autofit_workspace/scripts/overview/overview_2_scientific_workflow.py`.
77
- `chapter_3_graphical_models`: How to compose and fit graphical models which fit many datasets simultaneously, including hierarchical models and Expectation Propagation.
88
- `simulators`: Simulator scripts that generate the tutorial 1D datasets at runtime.
99

scripts/chapter_2_scientific_workflow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ how to build a scientific workflow. However, the chapter is not written yet.
44
The functionality required to develop a scientific workflow is fully supported in autofit and described in the
55
following overview example:
66

7-
`autofit_workspace/*/overview/overview_2_science_workflow.py`
7+
`autofit_workspace/*/overview/overview_2_scientific_workflow.py`
88

99
If you are a confident model-fitting practitioner, you should be able to follow this example to perform the tasks
1010
required to build a scientific workflow.

0 commit comments

Comments
 (0)