Update moppit.py
Browse files
moppit.py
CHANGED
|
@@ -154,7 +154,7 @@ for i in range(args.n_batches):
|
|
| 154 |
|
| 155 |
print(f"Sample: {input_seqs[0]}")
|
| 156 |
print(f"Scores: ")
|
| 157 |
-
for i, objective in args.objectives:
|
| 158 |
print(f"{objective}: {scores[i]:.4f}")
|
| 159 |
|
| 160 |
with open(args.output_file, 'a') as f:
|
|
|
|
| 154 |
|
| 155 |
print(f"Sample: {input_seqs[0]}")
|
| 156 |
print(f"Scores: ")
|
| 157 |
+
for i, objective in enumerate(args.objectives):
|
| 158 |
print(f"{objective}: {scores[i]:.4f}")
|
| 159 |
|
| 160 |
with open(args.output_file, 'a') as f:
|