mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 11:10:20 +01:00
* Adding initial interface for backend and redis pubsub * Addressing comments, adding super in all memories * Removing distributed experience replay
20 lines
279 B
Python
20 lines
279 B
Python
|
|
|
|
|
|
class DeployParameters(object):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class Deploy(object):
|
|
|
|
def __init__(self, deploy_parameters):
|
|
self.deploy_parameters = deploy_parameters
|
|
|
|
def setup(self) -> bool:
|
|
pass
|
|
|
|
def deploy(self) -> bool:
|
|
pass
|