Skip to content

Commit

Permalink
feat: 🔖 upgrade to 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
chaofengc committed Aug 12, 2024
1 parent 5ee50c0 commit 2c1de94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.11
0.1.12
6 changes: 4 additions & 2 deletions pyiqa/pyiqa_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def main():
for target in target_list:
score = func(target).item()
tmp_result.append(score)
all_results[target] = score
if args.verbose:
all_results[target] = score

pbar.update(1)
pbar.set_description(f'Testing {metric} with input {target:>20}')
Expand All @@ -74,7 +75,8 @@ def main():
for target, ref in zip(target_list, ref_list):
score = func(target, ref).item()
tmp_result.append(score)
all_results[f"{target} | {ref}"] = score
if args.verbose:
all_results[f"{target} | {ref}"] = score

pbar.update(1)
pbar.set_description(f'Testing {metric} with input {target:>20}')
Expand Down

0 comments on commit 2c1de94

Please sign in to comment.