当尝试使用Deepbrain库中的Etractor时,我收到此错误(如下):
警告:tensorflow:来自C:\ Users \ myname \ Anaconda3 \ lib \ site-packages \ deepbrain \ extractor.py:19:FastGFile。 init (来自tensorflow.python.platform.gfile )已弃用,并将在以后的版本中删除。 更新说明: 使用tf.gfile.GFile。
我正在使用旧版本的libray,是吗? 该怎么解决?
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)