You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"# Unless required by applicable law or agreed to in writing, software\n",
42
+
"# distributed under the License is distributed on an \"AS IS\" BASIS,\n",
43
+
"# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
44
+
"# See the License for the specific language governing permissions and\n",
45
+
"# limitations under the License."
46
+
],
47
+
"execution_count": 0,
48
+
"outputs": []
49
+
},
50
+
{
51
+
"cell_type": "markdown",
52
+
"metadata": {
53
+
"id": "wNBP_f0QUTfO",
54
+
"colab_type": "text"
55
+
},
56
+
"source": [
57
+
"# Getting started with [TensorBoard.dev](https://tensorboard.dev)"
58
+
]
59
+
},
60
+
{
61
+
"cell_type": "markdown",
62
+
"metadata": {
63
+
"id": "DLXZ3t1PWdOp",
64
+
"colab_type": "text"
65
+
},
66
+
"source": [
67
+
"[TensorBoard.dev](https://tensorboard.dev) provides a managed [TensorBoard](https://tensorflow.org/tensorboard) experience that lets you upload and share your ML experiment results with everyone.\n",
68
+
"\n",
69
+
"This notebook trains a simple model and shows how to upload the logs to TensorBoard.dev."
70
+
]
71
+
},
72
+
{
73
+
"cell_type": "markdown",
74
+
"metadata": {
75
+
"id": "yjBn-ptXTppA",
76
+
"colab_type": "text"
77
+
},
78
+
"source": [
79
+
"### Setup and imports"
80
+
]
81
+
},
82
+
{
83
+
"cell_type": "code",
84
+
"metadata": {
85
+
"id": "5C8BOea_rF49",
86
+
"colab_type": "code",
87
+
"colab": {}
88
+
},
89
+
"source": [
90
+
"%tensorflow_version 2.x\n",
91
+
"!pip install -U tensorboard >piplog 2>&1"
92
+
],
93
+
"execution_count": 0,
94
+
"outputs": []
95
+
},
96
+
{
97
+
"cell_type": "code",
98
+
"metadata": {
99
+
"id": "L3ns52Luracm",
100
+
"colab_type": "code",
101
+
"colab": {}
102
+
},
103
+
"source": [
104
+
"import tensorflow as tf\n",
105
+
"import datetime"
106
+
],
107
+
"execution_count": 0,
108
+
"outputs": []
109
+
},
110
+
{
111
+
"cell_type": "markdown",
112
+
"metadata": {
113
+
"id": "GqUABmUTT1Cl",
114
+
"colab_type": "text"
115
+
},
116
+
"source": [
117
+
"### Train a simple model and create TensorBoard logs"
"Uploading the TensorBoard logs will give a link that can be shared with anyone. Note that uploaded TensorBoards are public. Do not upload sensitive data.\n",
179
+
"\n",
180
+
"The uploader will keep running until it is stopped, in order to read new data from the directory during ongoing training."
0 commit comments