Skip to content
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

Can't show all the data points that have been tracked! #3241

Open
ArkiZh opened this issue Nov 1, 2024 · 2 comments
Open

Can't show all the data points that have been tracked! #3241

ArkiZh opened this issue Nov 1, 2024 · 2 comments
Labels
help wanted Extra attention is needed type / bug Issue type: something isn't working

Comments

@ArkiZh
Copy link

ArkiZh commented Nov 1, 2024

🐛 Bug

Can't show all the data points that have been tracked!

To reproduce

from aim import Run

import random

run = Run(experiment="aim_bug")

for i in range(1000):
    value = random.normalvariate(100, 10) if i%100==0 else 0
    run.track(value, name="value", step=i)

Expected behavior

Show all the data points, but now only some of them are sampled!

PixPin_2024-11-01_21-30-08

Environment

  • Aim Version 3.25.0
  • Python version 3.11
  • pip version 24.2
  • OS Mac
@ArkiZh ArkiZh added help wanted Extra attention is needed type / bug Issue type: something isn't working labels Nov 1, 2024
@mihran113
Copy link
Contributor

Hey @ArkiZh! Thanks for reaching out. This is done by design considering performance limitations of rendering charts on browsers for providing smooth experience.
We're showing maximum 500 randomly uniform sampled data points and it's natural that some of them didn't make it.
Can you describe what has driven you to open this issue and also the use case where all the data points are essential in the charts?

@dmacd
Copy link

dmacd commented Dec 18, 2024

I'm attempting to use aim to debug and gain insight about some complicated internal dynamics of novel attention mechanisms I'm exploring. Not being able to see all the points collected even when zoomed in is a dealbreaker for research use cases. Shame, its otherwise a pretty great tool.

@mihran113 Can you point me in the direction of what needs to be hacked/tweaked to enable this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed type / bug Issue type: something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants