-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: enhance the current documentation + gather baselines in separat…
…e folder (#57) Clean docs - udpate css and create baseline folder in qdax Co-authored-by: Thomas <t.pierrot@instadeep.com>
- Loading branch information
1 parent
8aafcb3
commit a950722
Showing
41 changed files
with
311 additions
and
244 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,5 @@ | ||
# Covariance Matrix Adaptation MAP-Elites via Gradient Arborescence (CMA-MEGA) | ||
|
||
To create an instance of CMA-MEGA, one need to use an instance of [MAP-Elites](map_elites.md) with the CMAMEGAEmitter, detailed below. | ||
|
||
::: qdax.core.emitters.cma_mega_emitter.CMAMEGAEmitter |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# DADS class | ||
|
||
::: qdax.core.dads.DADS | ||
::: qdax.baselines.dads.DADS |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# DIAYN class | ||
|
||
::: qdax.core.diayn.DIAYN | ||
::: qdax.baselines.diayn.DIAYN |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Genetic Algorithm class | ||
|
||
::: qdax.core.genetic_algorithm.GeneticAlgorithm | ||
::: qdax.baselines.genetic_algorithm.GeneticAlgorithm |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# MAP Elites class | ||
|
||
This class implement the base mechanism of MAP-Elites. It must be used with an emitter. To get the usual MAP-Elites algorithm, one must use the [mixing emitter](emitters.md#qdax.core.emitters.standard_emitters.MixingEmitter). | ||
|
||
The MAP-Elites class can be used with other emitters to create variants, like [PGAME](pgame.md), [CMA-MEGA](cma_mega.md) and [OMG-MEGA](omg_mega.md). | ||
|
||
::: qdax.core.map_elites.MAPElites |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# NSGA2 class | ||
|
||
::: qdax.core.nsga2.NSGA2 | ||
::: qdax.baselines.nsga2.NSGA2 |
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 @@ | ||
# Objective and Measure Gradient MAP-Elites via Gradient Arborescence (OMGMEGA) | ||
|
||
To create an instance of OMGMEGA, one need to use an instance of [MAP-Elites](map_elites.md) with the OMGMEGAEmitter, detailed below. | ||
|
||
::: qdax.core.emitters.omg_mega_emitter.OMGMEGAEmitter |
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 @@ | ||
# Policy Gradient Assisted MAP Elites (PGAME) | ||
|
||
To create an instance of PGAME, one need to use an instance of [MAP-Elites](map_elites.md) with the PGAMEEmitter, detailed below. | ||
|
||
::: qdax.core.emitters.pga_me_emitter.PGAMEEmitter |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# SAC class | ||
|
||
::: qdax.core.sac.SAC | ||
::: qdax.baselines.sac.SAC |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SMERL classes for DIAYN and DADS | ||
|
||
::: qdax.core.diayn_smerl.DIAYNSMERL | ||
::: qdax.baselines.diayn_smerl.DIAYNSMERL | ||
|
||
::: qdax.core.dads_smerl.DADSSMERL | ||
::: qdax.baselines.dads_smerl.DADSSMERL |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# SPEA2 class | ||
|
||
::: qdax.core.spea2.SPEA2 | ||
::: qdax.baselines.spea2.SPEA2 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# TD3 class | ||
|
||
::: qdax.core.td3.TD3 | ||
::: qdax.baselines.td3.TD3 |
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,37 @@ | ||
.field-list { | ||
margin-left: 2% !important; | ||
padding: 4% !important; | ||
border-left-style: solid !important; | ||
border-left-color: #2980B9 !important; | ||
} | ||
|
||
.doc-method { | ||
margin-top: 5%; | ||
padding-top: 5%; | ||
border-top-style: solid !important; | ||
border-top-color: #c9c9c9 !important; | ||
} | ||
|
||
.doc-children { | ||
margin-left: 2% !important; | ||
} | ||
|
||
.doc-class, | ||
.doc-function { | ||
margin-bottom: 10% !important; | ||
padding-bottom: 5%; | ||
border-bottom-style: solid !important; | ||
border-bottom-color: #4e4a4a !important; | ||
} | ||
|
||
.doc-attribute { | ||
margin-bottom: 5% !important; | ||
} | ||
|
||
details.quote { | ||
margin-top: 2%; | ||
} | ||
|
||
.wy-nav-content { | ||
max-width: 1000px !important; | ||
} |
Oops, something went wrong.