#Data preprocessing
-
dwi values are int16, so it should be normalized, either by:
- using the b0 <-
- do we just divide by the b0 (element-wise)?
- using the int16.max()
- using the b0 <-
-
if using original hcp data, we should perform a top-up
-
streamlines
- resample streamlines so they have 100 points each.
#LSTM - regression
Diffusion weights in all available direction
- Direction to follow
- as-is
- normalized
- Continue or stop (using the binary cross-entropy)
- Since it will be higly unbalanced, when the target is "stop" multiply the cost by the number of "continue" for a given streamline.
#LSTM - classification
Diffusion weights in all available direction
- Softmax of the direction (something about softmax of gaussians)
- Continue or not (using the binary cross-entropy)
- Since it will be higly unbalanced, when the target is "stop" multiply the cost by the number of "continue" for a given streamline.