I receive this error (as follow) when trying to use Etractor from deepbrain library:
WARNING:tensorflow:From C:\Users\myname\Anaconda3\lib\site-packages\deepbrain\extractor.py:19: FastGFile.init (from tensorflow.python.platform.gfile) is deprecated and will be removed in a future version. Instructions for updating: Use tf.gfile.GFile.
I am using a old version of the libray, yes? How to solve that?
import nibabel as nb
from deepbrain import Extractor as ext
img = nb.load("imgpath").get_fdata()
# `prob` will be a 3d numpy image containing probability
# of being brain tissue for each of the voxels in `img`
prob = ext.run(img)