Browse Source

bug fixed

Jiaqi0602 3 years ago
parent
commit
b8dc458f1b
1 changed files with 0 additions and 2 deletions
  1. 0 2
      main.py

+ 0 - 2
main.py

@@ -67,8 +67,6 @@ def val_model(dataset, model, criterion):
             val_corrects += torch.sum(preds == labels.data)
             if (preds != labels.data): 
                 index_ls.append(batch_idx)
-            if batch_idx == 100:
-                break
 
         total_loss = val_loss / len(dataset) 
         total_acc = val_corrects.double() / len(dataset)