-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Doc] minor improvements: move base NCO classes out
- Loading branch information
Showing
6 changed files
with
48 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Model Zoo | ||
|
||
Models from the literature and contributions are contained in the Model Zoo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Improvement Methods | ||
|
||
These methods are trained to improve existing solutions iteratively, akin to local search algorithms. They focus on refining existing solutions rather than generating them from scratch. | ||
|
||
_coming soon!_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Transductive Methods | ||
|
||
These methods update policy parameters during online testing to improve the solutions of a specific instance. | ||
|
||
## Active Search (AS) | ||
|
||
```{eval-rst} | ||
.. automodule:: rl4co.models.zoo.active_search.search | ||
:members: | ||
:undoc-members: | ||
``` | ||
|
||
## Efficent Active Search (EAS) | ||
|
||
```{eval-rst} | ||
.. automodule:: rl4co.models.zoo.eas.search | ||
:members: | ||
:undoc-members: | ||
``` | ||
|
||
```{eval-rst} | ||
.. automodule:: rl4co.models.zoo.eas.decoder | ||
:members: | ||
:undoc-members: | ||
``` | ||
|
||
```{eval-rst} | ||
.. automodule:: rl4co.models.zoo.eas.nn | ||
:members: | ||
:undoc-members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters