Skip to content

Commit 8959293

Browse files
mebelztysam-code
authored andcommitted
Fix printing of Mean and Variance
1 parent e44a18d commit 8959293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,4 +639,4 @@ def main():
639639
acc_list = []
640640
for run_num in range(25):
641641
acc_list.append(torch.tensor(main()))
642-
print("Mean and variance:", (torch.mean(torch.stack(acc_list)), torch.var(torch.stack(acc_list)).item()).item())
642+
print("Mean and variance:", (torch.mean(torch.stack(acc_list)).item(), torch.var(torch.stack(acc_list)).item()))

0 commit comments

Comments
 (0)