YinggangZhang

Results 3 comments of YinggangZhang

我也遇到了这个问题,不知道您现在是否解决了,还请不吝赐教

这个问题我也遇到了。我是这么解决的: 首先我这边出现这个问题的原因是运行代码后报错,报错信息为zip() 没有len属性。定位错误发生在filternyt.py文件的25、28行。这是python2->python3的原因。将其修改为: def __init__(self, root_path, train=True): if train: path = os.path.join(root_path, 'train/') print('loading train data') else: path = os.path.join(root_path, 'test/') print('loading test data') self.labels = np.load(path + 'labels.npy') self.x...

In my opinon. lock in share mode is necessary for consistency. Suppose the follow scene: In the transaction commit phase of MySQL, it will serially executed the following things: ```...