Improve the predict output file options
See original GitHub issueIssue description
Currently, predict/deepreg_predict
saves input images/labels for different label pairs, with both png and nifti file formats. This leads to sizable written files.
1 - Add options that can turn off the following for space-saving/speed:
- Save input images/labels (useful for debugging or research);
- Save png files
- Save nifti files (is this useful to be able to turn off?)
2 - Avoid saving the same input files multiple times.
Type of Issue
- New feature request
- Documentation update
- Test request
What’s the expected result?
What’s the actual result?
Additional details / screenshot
-
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
How to Make Predictions with Keras - Machine Learning Mastery
We can predict the class for new data instances using our finalized classification model in Keras using the predict_classes() function. Note ...
Read more >Using machine learning to predict what file you need next
As we laid out in our blog post introducing DBXi, Dropbox is building features to help users stay focused on what matters.
Read more >How to use a model to do predictions with Keras - ActiveState
Specifies what layers the model contains, and how they are connected. Weights. Input parameters that influence output in a Keras model.
Read more >Prediction output options: DataRobot docs
Learn how to program your batch prediction job's output. You can use local file streaming, S3 scoring, an AI Catalog dataset, JDBC, Snowflake,...
Read more >Reading the Batch Prediction Output Files - Amazon Machine ...
Locate the batch prediction manifest file. · Read the manifest file to determine the locations of output files. · Retrieve the output files...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Also, I was reviewing this for the edu challenge and at this line we call:
Which I found quite confusing: the warped image is called pred_fixed_image, which I associated to the fixed image. I would suggest renaming this and the save file for clarity to warped_moving_image, or something along the lines?
@YipengHu @mathpluscode @s-sd
so ideally, the output should be like following (this has been discussed before lol)
then for the following items we can choose to save or not
@YipengHu what do you think?