Some question of data diagnosis #393
Replies: 2 comments 1 reply
-
Can you please rephrase this as a question. |
Beta Was this translation helpful? Give feedback.
-
Hi @qiudashuai1, you correctly assessed that your dataset has low network detection. The fact that it is absent in the spatial diagnosis and has low Dice index are essentially the same thing. I cannot tell you necessarily what the cause is, but the most common culprit in my experience is that anesthesia levels are too high, thus inhibiting network activity. Another reason can be a faulty scanner sequence. This is something that can only be properly tested at acquisition. |
Beta Was this translation helpful? Give feedback.
-
Hi, I have running steps of preprocessing, cofounding correction, and data diagnosis in following code:
sudo docker run -it --rm --user $(id -u)
-v $PWD/input_BIDS:/input_BIDS:ro
-v $PWD/preprocess_outputs:/preprocess_outputs/
ghcr.io/cobralab/rabies:latest -p MultiProc preprocess /input_BIDS/ /preprocess_outputs/ --apply_STC --TR 2 --bold_autobox --commonspace_reg masking=true,brain_extraction=false,template_registration=SyN,fast_commonspace=false
sudo docker run -it --rm --user $(id -u)
-v $PWD/input_BIDS:/input_BIDS:ro
-v $PWD/preprocess_outputs:/preprocess_outputs/
-v $PWD/confound_correction_outputs:/confound_correction_outputs/
ghcr.io/cobralab/rabies:latest -p MultiProc confound_correction /preprocess_outputs/ /confound_correction_outputs/ --conf_list WM_signal CSF_signal vascular_signal mot_6 --smoothing_filter 0.3
sudo docker run -it --rm --user $(id -u)
-v $PWD/input_BIDS:/input_BIDS:ro
-v $PWD/preprocess_outputs:/preprocess_outputs/
-v $PWD/confound_correction_outputs:/confound_correction_outputs/
-v $PWD/analysis_outputs:/analysis_outputs/
ghcr.io/cobralab/rabies:latest -p MultiProc analysis /confound_correction_outputs /analysis_outputs/
--prior_maps "/home/mambauser/.local/share/rabies/melodic_IC.nii.gz"
--data_diagnosis
But the spatial diagnosis seems according with absent category:
The temporal diagnosis seems fine with no obvuous spike:
However, the dice index lower than 0.4, what should I do to improve the quality?
Beta Was this translation helpful? Give feedback.
All reactions