Visualizing uploaded data from deeplake UI #2637
-
Hi, I am a new deeplake user. I am trying to upload my data from local machine to the Deeplake UI so that I can visualize the data easily from the UI. I am using the following code:
But I can not see any data in my homepage of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
hi there @snat1505027, we will look right into this! |
Beta Was this translation helpful? Give feedback.
-
@snat1505027 thanks for posing the question! You would need to create the dataset using hub path on the cloud. ds = deeplake.empty(f'hub://{username}/VCR', overwrite=True) otherwise if dataset has been already created locally you can also transfer it to the cloud. deeplake.deepcopy('./VCR', f'hub://{username}/VCR') |
Beta Was this translation helpful? Give feedback.
@snat1505027 thanks for posing the question! You would need to create the dataset using hub path on the cloud.
otherwise if dataset has been already created locally you can also transfer it to the cloud.