Skip to content

Commit

Permalink
Merge branch 'main' into feat/gilpin-flows-system/lauren
Browse files Browse the repository at this point in the history
  • Loading branch information
lmclane04 authored Aug 8, 2024
2 parents a69d562 + a330ccb commit fe01f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ Adding new models is simple with DynaDojo. The developer simply needs to impleme
```python
import numpy as np

from dynadojo.abstractions import AbstractModel
from dynadojo.abstractions import AbstractAlgorithm


class MyModel(AbstractModel):
class MyModel(AbstractAlgorithm):
def __init__(self, embed_dim: int, timesteps: int, max_control_cost: float, **kwargs):
super().__init__(embed_dim, timesteps, max_control_cost, **kwargs)

Expand Down

0 comments on commit fe01f68

Please sign in to comment.