Skip to content

Commit e8ce1a7

Browse files
authored
Merge pull request CSAILVision#34 from MarcoForte/master
typos
2 parents c362287 + 89b7b9f commit e8ce1a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def evaluate(segmentation_module, loader, args):
9292
print('class [{}], IoU: {}'.format(i, _iou))
9393

9494
print('[Eval Summary]:')
95-
print('Mean IoU: {:.4}, Accurarcy: {:.2f}%'
95+
print('Mean IoU: {:.4}, Accuracy: {:.2f}%'
9696
.format(iou.mean(), acc_meter.average()*100))
9797

9898

train.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def train(segmentation_module, iterator, optimizers, history, epoch, args):
5555
if i % args.disp_iter == 0:
5656
print('Epoch: [{}][{}/{}], Time: {:.2f}, Data: {:.2f}, '
5757
'lr_encoder: {:.6f}, lr_decoder: {:.6f}, '
58-
'Accurarcy: {:4.2f}, Loss: {:.6f}'
58+
'Accuracy: {:4.2f}, Loss: {:.6f}'
5959
.format(epoch, i, args.epoch_iters,
6060
batch_time.average(), data_time.average(),
6161
args.running_lr_encoder, args.running_lr_decoder,

0 commit comments

Comments
 (0)