def trainEpoch(self):
if len(self.curChoices) == 0:
self.curChoices = copy.copy(self.choices)
np.random.shuffle(self.curChoices)
self.curTrial += 1
choice = self.curChoices.pop()
self.pieMenu.highlight(choice, style='pop')
self.src.setMarker(self.choices.index(choice)+1.0)
wx.CallLater(1000.0*self.trainTrialSecs, self.trainClearTrial)
评论列表
文章目录