Skip to content

Commit

Permalink
Simplify deploy and rename .yml -> .yaml for consistency.
Browse files Browse the repository at this point in the history
In models.py update the on_delete constraint in region
for frame deletion to null. Further simplify deployment.

Soon:

- YFCC processing and preparation scripts to VDN.

- Export trained approximators as zip file.

Next:

- Implement pre-condition checks, failed to launch error
messages for processes. Rollback created models on failure to launch.

- Add location net, fine-tuning / training face recognition models
  • Loading branch information
akshay bhat committed Jun 17, 2018
1 parent c2cef4b commit 76f3204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/compose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def start_docker_compose(deployment_type, gpu_count, init_process, init_models,
print "Starting deploy/compose/{}".format(fname)
try:
# Fixed to dev since deployment directory does not matters for checking if docker-compose exists.
subprocess.check_call(["docker-compose", 'ps','-f','docker-compose-dev.yaml'],
subprocess.check_call(["docker-compose", '--help'],
cwd=os.path.join(os.path.dirname(os.path.curdir), 'deploy/compose/'))
except:
raise SystemError("Docker-compose is not available")
Expand Down

0 comments on commit 76f3204

Please sign in to comment.