You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have noticed the class LIPParsingEdgeDateset in datasets.py is implemented by following method:
self.img_ids = [i_id.strip().split() for i_id in open (list_path)]
if not max_iters==None:
self.img_ids = self.img_ids * int(np.ceil(float(max_iters) / len(self.img_ids)))
max_iters=batch_size*total_iters which means if there are 1000 images in the whole dataset, it's going to be max_iters images now, so if I change the batch_size, the total number of images to be trained will be different. Am I right?
The text was updated successfully, but these errors were encountered:
Hi, I have noticed the class LIPParsingEdgeDateset in datasets.py is implemented by following method:
max_iters=batch_size*total_iters which means if there are 1000 images in the whole dataset, it's going to be max_iters images now, so if I change the batch_size, the total number of images to be trained will be different. Am I right?
The text was updated successfully, but these errors were encountered: