-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to verify the performance of this model #7
Comments
How to test the effect of the model, such as the NCC score mentioned in the paper |
Sorry to bother you How to visualize the final segmentation result |
If you want to evaluate the pre-trained Semantic Genesis on NCC (or any other target task), you first need to load the pre-trained model and then fine-tune it on the target task. |
After you fine-tuned the pre-trained model on a segmentation target task, you can give the images as input to the target model and get the segmentation prediction; then visualize the segmentation prediction. |
Thank you very much for your answer, and thank you for your open source code |
when i use train_autoencoder.py with luna16,Loss has been stable and does not decline,Just like the following Epoch 00035: val_loss did not improve from 0.00045 Epoch 00036: val_loss did not improve from 0.00045 Epoch 00037: val_loss did not improve from 0.00045 Epoch 00038: val_loss did not improve from 0.00045 Epoch 00039: val_loss did not improve from 0.00045 Epoch 00040: val_loss did not improve from 0.00045 Epoch 00041: val_loss did not improve from 0.00045 Epoch 00042: val_loss improved from 0.00045 to 0.00045, saving model to Checkpoints/Autoencoder/Unet_autoencoder.h5 |
Whether I convert the data in luna16 into .npy or just still used directly,the loss does not decline with train_autoencoder.py and feature_extractor.py |
No. The loss should continuously decrease. For preprocessing, we resample data to [1.0, 1.0, 1.0] space. We clip the data at 1000 (max) and -1000 (min) thresholds and normalize the data as (x-min(x))/(max(x) - min (x)). |
No description provided.
The text was updated successfully, but these errors were encountered: