-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] ds.visualize not working in jupyter notebook for local dataset #2622
Comments
hi @journey-wang ! thanks for reporting this. We will investigate and get back to you if this is an expected behavior. |
hi @journey-wang is your environment is clean ubuntu or you use WSL ? |
Hi @zapredelom I ran it in the docker environment, like docker run -it --name ubuntu --privileged --net host [image name] |
@journey-wang but what is the operating system of your host machine ? is it ubuntu , mac or windows wsl ? |
@zapredelom one more report with a more detailed info on os - #2663 (comment). Feel free to ask more questions! |
Hello, I also encountered the same problem. Now the dataset is stored locally, and then I create an iframe using the URL below, but no image is displayed. Our public network port 38885 is open, and I can get response from Internet using the link below. When I check the request call chain from chrome, I find that some calls failed. Is there a way to display the local dataset in the local Jupyter notebook? Python Version OS IDE Packages |
Hi there @fan-chao. Thanks for in detail message. We've addressed it here #2663 (comment). Please note that local dataset visualization in notebook may be considered for inclusion in the list of enterprise features. Would you be interested in it in that case? |
If visualizing local datasets in a notebook can enhance our work efficiency and help us better understand the data, I would be very interested. |
Happy to talk a bit more about your use case to see how we can be helpful! Do you mind booking a quick introductory call via cal.com/db? |
Severity
P1 - Urgent, but non-breaking
Current Behavior
Hello everyone, I tried ds.visualize with dataset like 'hub://activeloop/animal10n-train', it worked in jupyter notebook. But with local dataset like './animal10n-train', ds.visualized showed nothing.
Steps to Reproduce
`import deeplake
it worked with remote dataset
dataset_path = 'hub://activeloop/animal10n-train'
ds = deeplake.load(dataset_path) # Returns a Deep Lake Dataset but does not download data locally
ds.summary()
ds.visualize()
`
`
copy to local
deeplake.copy('hub://activeloop/animal10n-train', './animal10n-train', num_workers=10)
it not worked
dataset_path = './animal10n-train'
ds = deeplake.load(dataset_path) # Returns a Deep Lake Dataset but does not download data locally
ds.summary()
ds.visualize()
`
Expected/Desired Behavior
ds.visualize worked with local dataset
Python Version
python3.10
OS
Ubuntu 18.04
IDE
Jupyter
Packages
deeplake 3.7.1
Additional Context
No response
Possible Solution
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: