comet-ml / issue-tracking

Questions, Help, and Issues for Comet ML
https://www.comet.ml
85 stars 9 forks source link

Cannot display points logged with log_points_3d #551

Closed kirilllzaitsev closed 1 week ago

kirilllzaitsev commented 3 weeks ago

Describe the Bug

A clear and concise description of what the bug is.

Expected behavior

A clear and concise description of what you expected to happen.

Where is the issue?

To Reproduce

Steps to reproduce the behavior:

pcl = np.random.rand(1000, 3)
exp.log_points_3d(scene_name="random_points", points=pcl)

Go to Assets and confirm it was logged: image

Go to Panels and try to add a 3D panel: image

There are no suggestions and typing 'random..' doesn't help, making it a problem to visualize the logged asset.

dsblank commented 1 week ago

I suspect that if you look in the comet.log file, you'll see a warning about the points are not a list or tuple. Try:

pcl = np.random.rand(1000, 3)
exp.log_points_3d(scene_name="random_points", points=pcl.tolist())
kirilllzaitsev commented 1 week ago

@dsblank I tried pcl.tolist() and it didn't have any effect. The original problem remains. Where can I find comet.log?