| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-10-17 | 812 Bytes | |
| v0.2.0 source code.tar.gz | 2025-10-17 | 1.2 MB | |
| v0.2.0 source code.zip | 2025-10-17 | 1.2 MB | |
| Totals: 3 Items | 2.4 MB | 1 | |
This release includes a major update on the TreeQuest interface (#14).
Ask-Tell Interface
We added ask-tell interface, where users run ask or ask_batch to get the parent state and action of the next node to expand in the search tree. Using the returned Trial object, users run generate_fn to calculate the score and state of the expanded node, and update the search tree with tell interface.
This new interface enables us to
- Perform multiple AB-MCTS sampling steps in parallel by
ask_batch. - Run multiple generation processes in parallel and run
tellonce an evaluation process finishes.
so that now both TreeQuest itself and users can leverage more cpu resource to speed up the tree search.
For the performance for different batch sizes, please see docs/PROFILING.md.