Skip to content

Commit 53a35b1

Browse files
authored
Delete tqdm in multilayer_perceptron_classifier_from_scratch.py
1 parent d02e27b commit 53a35b1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

machine_learning/multilayer_perceptron_classifier_from_scratch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import numpy as np
2-
from tqdm import tqdm
32

43

54
class Dataloader:
@@ -474,7 +473,7 @@ def train(self) -> None:
474473

475474
batch_size = 1
476475

477-
for _j in tqdm(range(self.epoch)):
476+
for _j in range(self.epoch):
478477
for k in range(0, train_data.shape[0], batch_size): # retrieve every image
479478
batch_imgs = train_data[k : k + batch_size]
480479
batch_labels = train_labels[k : k + batch_size]

0 commit comments

Comments
 (0)