You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result is just a little different here, but I have seen vastly different results as well.
I would have expected them to both produce the same output since the points are the same.
I would normally add points incrementally when I am working on it interactively. But if I want to reload those points at a later time, its much easier to go with the second option and load all of them together, rather than iterating through and adding one more point to the list each time.
I guess I am wondering if this difference in behavior is expected? And I am also wondering if it will be much slower to load points incrementally for a large number of points?
The text was updated successfully, but these errors were encountered:
This is to be expected due to the way the prompts are fed into the model. If multiple clicks are given into the model at the same time, they are processed together and produce a single prompt token that is stored statically in the memory buffer. Alternatively, if prompts are given one after the other, each prompt produces a separate prompt token added to the memory.
In the video predictor, if I add one point on a frame, and then add a second point,
Versus just loading both points at once
I get different outputs!
The result is just a little different here, but I have seen vastly different results as well.
I would have expected them to both produce the same output since the points are the same.
I would normally add points incrementally when I am working on it interactively. But if I want to reload those points at a later time, its much easier to go with the second option and load all of them together, rather than iterating through and adding one more point to the list each time.
I guess I am wondering if this difference in behavior is expected? And I am also wondering if it will be much slower to load points incrementally for a large number of points?
The text was updated successfully, but these errors were encountered: