dcos-tensorflow

SDK framework to run TensorFlow on DC/OS.

DC/OS 1.10

If you are using DC/OS 1.10:

  1. Uninstall the service. From the DC/OS CLI, enter dcos package uninstall --app-id=<instancename> beta-tensorflow.

For example, to uninstall a TensorFlow instance named tensorflow-dev, run:

$ dcos package uninstall --app-id=tensorflow-dev beta-tensorflow

Older versions

If you are running DC/OS 1.9 or older, follow these steps:

  1. Stop the service. From the DC/OS CLI, enter dcos package uninstall --app-id=<instancename> beta-tensorflow. For example, dcos package uninstall --app-id=tensorflow-dev beta-tensorflow.
  2. Clean up remaining reserved resources with the framework cleaner script, janitor.py. See DC/OS documentation for more information about the framework cleaner script.

For example, to uninstall a TensorFlow instance named tensorflow-dev, run:

$ MY_SERVICE_NAME=tensorflow-dev
$ dcos package uninstall --app-id=$MY_SERVICE_NAME beta-tensorflow`.
$ dcos node ssh --master-proxy --leader "docker run mesosphere/janitor /janitor.py \
    -r $MY_SERVICE_NAME-role \
    -p $MY_SERVICE_NAME-principal \
    -z dcos-service-$MY_SERVICE_NAME"