Skip to content

Commit

Permalink
Make ESMFold predictor more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
amorehead committed Dec 21, 2024
1 parent 462d160 commit 330f02b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ def run(args: argparse.Namespace):
num_completed = 0
num_sequences = len(all_sequences)
for headers, sequences in batched_sequences:
logger.info(
f"Predicting structures for {len(sequences)} sequences of {headers} with total length {sum(len(seq) for seq in sequences)}"
)
start = timer()
try:
output = model.infer(sequences, num_recycles=args.num_recycles)
Expand Down

0 comments on commit 330f02b

Please sign in to comment.