leafy's blog

Archives · 2023

Home

About

Archives

Datawhale-Related

Baseline阅读与修改

Baseline部分数据集处理数据分析sizeSet = set() for path in trainPath: image = nib.load(path) imgShape = image.dataobj.shape if imgShape not in sizeSet: sizeSet.add(imgShape) print(sizeSet) 可以发现数据中尺寸总体只有以下几种形式: {(168, 168, 82, 1), (128, 128, 47, 1), (256, 256, 207, 1), (256, 256, 81, 1), (400, 400, 109, 1), (128, 128, 540, 1), (128, 128, 63, 1), (1..

Read more