Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Adjust comments
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelfneumann committed Oct 21, 2021
1 parent ee38930 commit e19b581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions agent/RegisteredTypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ const (
GaussianActorCriticLinear Type = "GaussianActorCritic-Linear"

// Deep methods
// Policy learning methods
CategoricalVanillaPGMLP Type = "CategoricalVanillaPG-MLP"
GaussianVanillaPGTreeMLP Type = "GaussianVanillaPG-TreeMLP"

GaussianVanillaACTreeMLP Type = "GaussianVanillaAC-TreeMLP"
CategoricalVanillaACMLP Type = "CategoricalVanillaAC-MLP"

// Value-based methods
EGreedyDeepQMLP Type = "EGreedyDeepQ-MLP"
)

Expand Down
1 change: 0 additions & 1 deletion agent/nonlinear/discrete/deepq/Config.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ func (c Config) Type() agent.Type {
// DeepQ agent.
func (c Config) Validate() error {
// Error checking

if len(c.Layers) != len(c.Biases) {
msg := fmt.Sprintf("new: invalid number of biases\n\twant(%v)"+
"\n\thave(%v)", len(c.Layers), len(c.Biases))
Expand Down

0 comments on commit e19b581

Please sign in to comment.