Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
ce194e3
Update (base update)
Aug 4, 2024
ed88a63
Update
Aug 4, 2024
ee591d0
Update (base update)
Oct 14, 2024
051eea5
Update
Oct 14, 2024
5969289
Update (base update)
Oct 15, 2024
20d685f
Update
Oct 15, 2024
ed56798
Update (base update)
Oct 26, 2024
944ecb4
Update
Oct 26, 2024
df8ae0e
Update (base update)
Oct 26, 2024
3f1aadc
Update
Oct 26, 2024
6b45e9b
Update (base update)
Nov 4, 2024
09bc3af
Update
Nov 4, 2024
f5c13b1
Update (base update)
Nov 8, 2024
1224f40
Update
Nov 8, 2024
b8a3823
Update (base update)
Nov 8, 2024
bdc54d2
Update
Nov 8, 2024
f716c65
Update (base update)
Nov 8, 2024
2cc62a3
Update
Nov 8, 2024
0d5a06d
Update (base update)
Nov 8, 2024
e1f098f
Update
Nov 8, 2024
7a44821
Update (base update)
Nov 8, 2024
08969c3
Update
Nov 8, 2024
b1ece3a
Update (base update)
Nov 18, 2024
7d923a3
Update
Nov 18, 2024
459fd50
Update (base update)
Nov 18, 2024
31f7de0
Update
Nov 18, 2024
5a59f00
Update
Nov 18, 2024
441fa9a
Added EXP3 scoring function
ParamThakkar123 Jun 18, 2025
bc32e0e
Add EXP3 scoring function
ParamThakkar123 Jun 18, 2025
4de024a
Update scores.py
ParamThakkar123 Jun 20, 2025
73952ee
Update scores.py
ParamThakkar123 Jun 20, 2025
57e3940
Added tests
ParamThakkar123 Jun 20, 2025
168c293
Updates
ParamThakkar123 Jun 20, 2025
578ba4b
Added UCB-1 Tuned
ParamThakkar123 Jun 23, 2025
e29f6d8
Added Docstrings
ParamThakkar123 Jun 23, 2025
bfb0f72
Merge branch 'main' of https://github.com/pytorch/rl into continue-pr…
ParamThakkar123 Jan 11, 2026
c846df6
Added docstrings
ParamThakkar123 Jan 11, 2026
a3ca7ae
Squashed commits from continue-pr-2358
vmoens Jan 23, 2026
dcf763b
Modified docs
ParamThakkar123 Jan 23, 2026
d286217
Merge remote-tracking branch 'origin/main' into continue-pr-2358
vmoens Jan 23, 2026
7344bcb
linter
vmoens Jan 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/reference/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Documentation Sections
modules_actors
modules_exploration
modules_critics
modules_mcts
modules_models
modules_distributions
modules_utils
19 changes: 19 additions & 0 deletions docs/source/reference/modules_mcts.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.. currentmodule:: torchrl.modules.mcts

torchrl.modules.mcts package
============================

This module provides Monte Carlo Tree Search (MCTS) components, including score computation modules for balancing exploration and exploitation in tree search algorithms.

MCTS Scores
-----------

.. autosummary::
:toctree: generated/

MCTSScore
PUCTScore
UCBScore
EXP3Score
UCB1TunedScore
MCTSScores
Loading
Loading