Skip to content

Commit

Permalink
add host to 3d example
Browse files Browse the repository at this point in the history
  • Loading branch information
ssuwelack committed Oct 24, 2023
1 parent 816bcdf commit 5cf5bb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/tf_keras_3d.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
"from scipy import stats\n",
"import umap.umap_ as umap\n",
"\n",
"embedding_model = Model(input_geometry, head)\n",
"embedding_model = Model(input_geometry, x)\n",
"embeddings = embedding_model.predict(all_geometries)\n",
"predictions_softmax = model.predict(all_geometries)\n",
"predictions = np.argmax(predictions_softmax, axis=1)\n",
Expand Down Expand Up @@ -340,7 +340,7 @@
"from renumics import spotlight\n",
"\n",
"\n",
"spotlight.show(ds, port=8000, layout=\"3d_debug_layout.json\",dtype={'mesh': spotlight.Mesh, 'mesh_voxelized': spotlight.Mesh})"
"spotlight.show(ds, port=8000, host=\"0.0.0.0\", layout=\"3d_debug_layout.json\",dtype={'mesh': spotlight.Mesh, 'mesh_voxelized': spotlight.Mesh})"
]
},
{
Expand Down

0 comments on commit 5cf5bb5

Please sign in to comment.