mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 19:20:19 +01:00
reenable redis; better error message
This commit is contained in:
@@ -30,4 +30,4 @@ RUN pip3 install -e .
|
||||
# RUN pip3 install rl_coach
|
||||
|
||||
# CMD ["coach", "-p", "CartPole_PG", "-e", "cartpole"]
|
||||
CMD python3 rl_coach/rollout_worker.py --preset CartPole_PG
|
||||
# CMD python3 rl_coach/rollout_worker.py --preset CartPole_DQN_distributed
|
||||
|
||||
@@ -26,6 +26,7 @@ endif
|
||||
build:
|
||||
${DOCKER} build -f=Dockerfile -t=${IMAGE} ${BUILD_ARGUMENTS} ${CONTEXT}
|
||||
mkdir -p /tmp/checkpoint
|
||||
rm -rf /tmp/checkpoint/*
|
||||
|
||||
shell: build
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} /bin/bash
|
||||
@@ -37,10 +38,10 @@ run: build
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE}
|
||||
|
||||
run_training_worker: build
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/training_worker.py --preset CartPole_PG
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/training_worker.py --preset CartPole_DQN_distributed
|
||||
|
||||
run_rollout_worker: build
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/rollout_worker.py --preset CartPole_PG
|
||||
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/rollout_worker.py --preset CartPole_DQN_distributed
|
||||
|
||||
push:
|
||||
docker push ${IMAGE}
|
||||
|
||||
Reference in New Issue
Block a user