Ariel Rokem, University of Washington eScience Institute
Follow along at:
Brain connections change with development
Individual differences account for differences in behaviour
Adapt with learning
This has clinical significance
Neural activity: functional MRI
Anatomy: structural MRI
...
Brain connectivity: diffusion MRI
Started in 2009 by Eleftherios Garyfallidis
Contributors from at least six different countries and many different labs
gtab = gradient_table(...)
model = ReconstModel(gtab, ...)
fit = model.fit(data, ...) # => ReconstFit
prediction = fit.predict(gtab, ...)
model = dti.TensorModel(gtab)
fit = model.fit(data1)
prediction = fit.predict(gtab)
RMSE = np.sqrt(\
np.mean((prediction - data2) ** 2), -1))
rRMSE = RMSE / np.sqrt(\
np.mean((data1 - data2) ** 2), -1))
# Use a k of 2
dti_pred = kfold_xval(dti_model, data, 2)
csd_pred = kfold_xval(csd_model, data, 2)
Forward model from the tracks to the measured signal
>>> X.shape
(10e8, 10e6)
fiber_model = life.FiberModel(gtab)
fit = fiber_model.fit(data, tracks)
prediction = fit.predict(gtab)
optimized_tracks = tracks[fit.beta>0]
AFQ: Automated Fiber Quantification
AFQ-browser (with Adam Richie-Halford, Josh Smith)