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: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ In this section we will demonstrate how to run diffusion.
126
126
127
127
128
128
### Running the diffusion script
129
-
The actual script you will execute is called `run_inference.py`. There are many ways to run it, governed by hydra configs.
129
+
The actual script you will execute is called `scripts/run_inference.py`. There are many ways to run it, governed by hydra configs.
130
130
[Hydra configs](https://hydra.cc/docs/configure_hydra/intro/) are a nice way of being able to specify many different options, with sensible defaults drawn *directly* from the model checkpoint, so inference should always, by default, match training.
131
131
What this means is that the default values in `config/inference/base.yml` might not match the actual values used during inference, with a specific checkpoint. This is all handled under the hood.
132
132
@@ -141,7 +141,7 @@ For this, we just need to specify three things:
This will generate 100 residue long binders to residues 1-100 of chain B. You can find another example of
@@ -315,7 +315,7 @@ or e.g. 2:
315
315
This will process either a single pdb, or a folder of pdbs, and output a secondary structure and adjacency pytorch file, ready to go into the model. For now (although this might not be necessary), you should also generate these files for the target protein (if you're doing PPI), and provide this to the model. You can then use these at inference as follows:
Here, we've specified a different `config` file (with `--config-name symmetry`). Because symmetric diffusion is quite different from the diffusion described above, we packaged a whole load of symmetry-related configs into a new file (see `configs/inference/symmetry.yml`). Using this config file now puts diffusion in `symmetry-mode`.
0 commit comments