1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 11:10:20 +01:00
Files
coach/rl_coach/orchestrators/deploy.py
Ajay Deshpande 6b2de6ba6d Adding initial interface for backend and redis pubsub (#19)
* Adding initial interface for backend and redis pubsub

* Addressing comments, adding super in all memories

* Removing distributed experience replay
2018-10-23 16:51:48 -04:00

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