MkvBrk
MkvBrk

Reputation: 23

How to install coco dataset in colab?

I have coco dataset(19 gb), the dataset upload googledrive but colab is not find this data despite use this code import sys sys.path.insert(0, 'content/gdrive/My Drive/caption').How can I find this file?

import sys sys.path.insert(0, 'content/gdrive/My Drive/caption')

Upvotes: 1

Views: 1723

Answers (1)

Bob Smith
Bob Smith

Reputation: 38579

I suspect you need a leading / in your path. (Typically, the Drive FUSE mount path is /content/...)

Upvotes: 1

Related Questions