Yibei Chen

Results 21 comments of Yibei Chen

hello, I had the similar error `module 'pandas' has no attribute 'Panel'` (my conda env is python 3.7) when using `from brainiak.isc import isc` so I uninstalled `pandas` in my...

okay, I found the solution, create the new conda env with pandas 0.24 specified, then install brainiak ``` conda create -n brainiak pandas=0.24 conda activate brainiak conda install -c brainiak...

Thank you all! @CameronTEllis yes, I have too many voxels. I tried it on a small set. It worked. What do you mean **Are all voxels for a given TR...

oh yeah, `assert voxel_iscs.shape[0] == voxel_iscs.shape[1]` only checks the shape, but `force='tomatrix'` actually returns you a matrix. But I thought a matrix is default if the input is in the...

Spatial Normalization to MNI (ANTs) requires: - `niworkflows.interfaces.reportlets.registration.SpatialNormalizationRPT` - python, integrate ants. Registration interface (nipype) - `templateflow.api.get` Calculate air mask above the nasial-cerebelum plane – `airmsk_wf()` requires: - `mriqc.interfaces.RotationMask` -...

@djarecka thank you! so I create a local branch for `pydra`, used your code. then run pytest in `pydra-fsl` on `cluster.py`, but my `task.cmdline` still changed after `task.run()`. Here is...

@djarecka thank you! I'll try it today and let you now

@djarecka this change is specific for a list of `pandas.Dataframe` as inputs, correct? my notebook works fine with or without this change because I'm using python 3.7? If this can...

hello! I encountered a similar issue with both `RMSExtractor` (requires `librosa`) and `FaceRecognitionFaceLocationsExtractor` (requires `face_recognition`). (I also encountered the broken wheel issue mentioned above). I managed to install `librosa` and...

hello, I did ``` from pliers.utils import attempt_to_import librosa = attempt_to_import('librosa') face_recognition = attempt_to_import('face_recognition') ``` and got ``` ``` seems reasonable. Then I got different errors for ``` from pliers.stimuli...