Closed rohitrango closed 3 months ago
Could you provide some visualizations of the moving, fixed, and aligned images with overlaid keypoints? You can produce these with the --visualize
argument.
here are some visualizations
Can you also post your training curves? I suspect you could train for longer, because the keypoints aren't spread out very well and some keypoints are off the brain, which is weird. Usually, I train for at least 5000 epochs. Each epoch by default in the code is 32 steps.
Are there any tensorboard logs / files that store the training curves? I couldnt find anything in the save dirs.
You can --use_wandb
log to wandb.
Okay will do!
Hi,
Thank you for releasing your code -- great work! 🤩
I'm trying to do deformable registration by training on the OASIS dataset. I've compiled my CSV file by taking all possible pairs from the training set. The first few rows look as follows:
I'm using the following script to train:
But I get a validation Dice score of around 0.65 on the validation set:
which is not so good. I've verified that there are 36 labeled classes in the segmentation (1st channel is background and is ignored).
Training with the dice loss (
--loss_fn dice
) does not help either.Have you tried training with the OASIS dataset and have seen different results? Sharing the training scripts / pretrained models would be immensely useful.
Let me know if I'm missing something. Thanks again!