Kaiseem / PointNu-Net

PointNu-Net Project
MIT License
16 stars 1 forks source link

Question about the number of nuclei in the Kumar dataset. #8

Closed windygooo closed 11 months ago

windygooo commented 11 months ago

The number of nuclei in the downloaded Kumar dataset is 16966, which is different from the reported 21623 in some papers like Hover-net.

cell_count = 0
for root, _, files in os.walk('raw_data/kumar'):
    for file in files:
        if file.endswith('mat'):
            data = scipy.io.loadmat(os.path.join(root, file))
            cell_count += data['inst_map'].max()
print(cell_count)
Kaiseem commented 11 months ago

please check this, one of my issue. https://github.com/vqdang/hover_net/issues/86

please check if you have used correct dataset.

windygooo commented 11 months ago

please check this, one of my issue. vqdang/hover_net#86

please check if you have used correct dataset.

Thanks. But I'm more confused now. Is the statistical result of 21,623 presented in the Hover-Net paper incorrect? I get the result of 16,966 on the dataset directly downloaded from their provided url.

Kaiseem commented 11 months ago

For your reference, the kumar dataset i used has 9914 in train set and 7052 in test set. I don't want to comment. Good luck.

windygooo commented 11 months ago

For your reference, the kumar dataset i used has 9914 in train set and 7052 in test set. I don't want to comment. Good luck.

I get it. Thanks very much.