-
Notifications
You must be signed in to change notification settings - Fork 38
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
Reproducibility: the tree_search generates too small tree #13
Comments
Can you send me your demo-config.json? |
{ p = [0.0000, 0.4803, 0.1104, 0.0576, 0.0373, 0.0265, 0.0211, 0.0170, 0.0135, Some explanation: draft_time is the time for one draft model's forward pass. target_time is the time for one draft model's forward pass corresponding to the valid budget. |
Thanks for the fast reply and the explanation! The {
"acceptance_rate_vector": "acceptance-rate-vector.pt",
"max_depth": 10,
"max_budget": 128,
"draft_time": 0.38,
"valid_budget": [1, 2, 4, 8, 16, 32, 64],
"target_time":[10, 10, 10, 12, 14, 18, 27],
"dst": "demo_tree.pt"
} The time above was assumed to be in the unit of acceptance_rate_vector: I can first try your |
Here is some updates. I tried your From the ablation test, it looks like the target time By the way, is it true that the generated tree sizes can only be numbers from "valid_budget": [1, 2, 4, 8, 16, 32, 64] ? And to allow for more tree size numbers, in the config.json, the data points of more valid_budgets have to be provided there? |
Yes, the generated tree sizes can only be numbers from "valid_budget". |
How to determine the optimal depth and budget? Can you share the |
Is there a typo here? Shouldn't |
I have the same question.
What is the unit of this value? I don't think any model can complete the forward pass within 0.0003 seconds? |
Hi,
I was trying to reproduce the numbers in the paper, but with the
demo-config.json
, plus the acceptance vector in the repo or the acceptance vector I tested myself, the generated trees are all very small and somewaht fixed:But on the other hand, the growmaps in the two folders are generally very large, typically of size 128, 64, 32. Do you know what the possible reason is that the tree I generated is small and how to reproduce the growmaps in those two folders?
Thank you!
The text was updated successfully, but these errors were encountered: