Skip to content

Commit

Permalink
Rename AbstractModel -> AbstractAlgorithm in README
Browse files Browse the repository at this point in the history
AbstractModel was renamed to AbstractAlgorithm in b9031d8. The name should be updated in the README.
  • Loading branch information
nadesai authored Aug 6, 2024
1 parent 7abcbfc commit 4f2d74a
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 4f2d74a

Please sign in to comment.