bugfix random_seed

Random_seed was not passed to the alphafold model.
This bug only affects AlphaFold-multimer, since random_seed was being applied at the preprocessing step in AlphaFold.
But not within jax code (as required by AlphaFold-multimer).

```python
        processed_feature_dict = model_runner.process_features(
            feature_dict, random_seed=random_seed
        )
```
```python
        prediction_result, recycles = model_runner.predict(input_features, random_seed=random_seed)
```
skiptemplatesearch
Sergey O 2 years ago committed by GitHub
parent 275f535cd3
commit 48fa4ee503
1 changed files (64 KiB → 64 KiB)
  1. 2
      colabfold/batch.py
Loading…
Cancel
Save