brainiak-tutorials
brainiak-tutorials copied to clipboard
Use round() instead of int()
In 03-data-handling and in utils.py
change
shift_size = int(vdc_hrf_lag / vdc_TR)
to
shift_size = round(vdc_hrf_lag / vdc_TR)