celldetection icon indicating copy to clipboard operation
celldetection copied to clipboard

Trained weights?

Open fipeop opened this issue 1 year ago • 1 comments

Hi,

Nice model! Would it be possible to share the trained weights here: ginoro_CpnResNeXt101UNet-fbe875f1a3e5ce2c?

Thank you!

fipeop avatar Aug 25 '23 20:08 fipeop

Thanks! Sure, you can either download it automatically via Python

import celldetection as cd

model_name = 'ginoro_CpnResNeXt101UNet-fbe875f1a3e5ce2c'

model = cd.fetch_model(model_name, check_hash=True)  # either plain torch
lit_model = cd.models.LitCpn(model_name)  # or lightning

or download it manually here. I also just added the download link to the main readme.

ericup avatar Aug 26 '23 14:08 ericup