Skip to content

Commit

Permalink
Bug fix in models.py (#545)
Browse files Browse the repository at this point in the history
alphamold2_multimer_v3 is written as alphamold2_multimer_3 in line 27.
  • Loading branch information
mjag1898 authored Dec 28, 2023
1 parent c490e54 commit ea50984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colabfold/alphafold/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_model_haiku_params(
file = f"params_model_{model_number}_multimer.npz"
elif model_type == "alphafold2_multimer_v2":
file = f"params_model_{model_number}_multimer_v2.npz"
elif model_type == "alphafold2_multimer_3":
elif model_type == "alphafold2_multimer_v3":
file = f"params_model_{model_number}_multimer_v3.npz"
elif model_type == "alphafold2_ptm":
file = f"params_model_{model_number}_ptm.npz"
Expand Down

0 comments on commit ea50984

Please sign in to comment.