dont use jupyter for wut-worker.py

master
ml server 2020-01-17 18:31:20 -07:00
parent 70f952efa1
commit 5724c3f9df
2 changed files with 0 additions and 136 deletions

View File

@ -1,128 +0,0 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# wut-worker --- Runs on worker nodes\n",
"#\n",
"#"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import os"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Cluster\n",
"from __future__ import absolute_import, division, print_function, unicode_literals\n",
"import tensorflow as tf\n",
"import simplejson as json"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# The script wut-worker launches this python script.\n",
"# It is better to do in the shell script, because the index has to be\n",
"# unique for each hostname.\n",
"#\n",
"# It has a line like:\n",
"# TF_CONFIG='{\"cluster\": {\"worker\": [\"ml1:2222\", \"ml2:2222\", \"ml3:2222\", \"ml4:2222\", \"ml5:2222\"]}, \"task\": {\"index\": 0, \"type\": \"worker\"}}' python3 wut-worker.py"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#os.environ[\"TF_CONFIG\"] = json.dumps({\n",
"# \"cluster\": {\n",
"# \"worker\": [ \"ml1:2222\", \"ml2:2222\", \"ml3:2222\", \"ml4:2222\", \"ml5:2222\" ]\n",
"# },\n",
"# \"task\": {\"type\": \"worker\", \"index\": 1},\n",
"# \"num_workers\": 5\n",
"#})"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}

View File

@ -1,17 +1,9 @@
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
# wut-worker --- Runs on worker nodes
#
#
# In[14]:
from __future__ import absolute_import, division, print_function, unicode_literals
import tensorflow as tf
import simplejson as json