(self, batch)
| 140 | return pred_score, score_norm |
| 141 | |
| 142 | def target(self, batch): |
| 143 | protein = batch["graph"] |
| 144 | target_score = batch['score'] # Move to protein attribute |
| 145 | target_score = target_score * protein.chi_mask |
| 146 | return target_score |
| 147 | |
| 148 | def evaluate(self, pred, target): |
| 149 | metric = {} |