如何首次使用tensorflow_datasets加载数据集?

时间:2020-08-08 16:57:24

标签: python tensorflow tensorflow-datasets

我想加载kitti数据集,并且正在执行以下操作:

@Override
public void onPause() {
    super.onPause();
    scannerView.stopCamera();
    scannerView.stopCameraPreview();
}

但是我遇到了以下错误:

import tensorflow_datasets as tfds

train,test = tfds.load("kitti", split=["train", "test"], shuffle_files=True)


for t in train :
    print (t["image"])

我收到“打开文件太多”的错误。哪些文件已打开,为什么会打开?该如何解决?

0 个答案:

没有答案