Closed SinDongHwan closed 5 years ago
- Fix bug when dataset loads, there is problem.
video = self.data_file['video_'+str(index.item())]
index variable is int datatype, but this code tries to get a value using item(). so i edit following
video = self.data_file['video_'+str(index)]
- Add making directory i faced error, because directories(save directory, score directory) don't exist. So i tried to add making directory, if not exist.
Thank you so much!
video = self.data_file['video_'+str(index.item())]
index variable is int datatype, but this code tries to get a value using item(). so i edit following
video = self.data_file['video_'+str(index)]