From 7c937e72d58c23b4dde73e8f48683bb7b445714f Mon Sep 17 00:00:00 2001 From: Stephan Lee Date: Mon, 6 May 2019 16:05:28 -0700 Subject: [PATCH] Move content from mesh_visualizer to mesh At PR #2168, it was recommended to call mesh_visualizer plugin a mesh plugin. As a result, the Python code lives in tensorboard/plugins/mesh while the frontend lives in tensorboard/plugins/mesh_visualizer. This change moves frontend code into t/p/mesh. --- tensorboard/components/tf_tensorboard/BUILD | 2 +- .../plugins/{mesh_visualizer => mesh}/tf_mesh_dashboard/BUILD | 0 .../{mesh_visualizer => mesh}/tf_mesh_dashboard/mesh-loader.js | 0 .../tf_mesh_dashboard/tf-mesh-dashboard.html | 0 .../tf_mesh_dashboard/tf-mesh-loader.html | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename tensorboard/plugins/{mesh_visualizer => mesh}/tf_mesh_dashboard/BUILD (100%) rename tensorboard/plugins/{mesh_visualizer => mesh}/tf_mesh_dashboard/mesh-loader.js (100%) rename tensorboard/plugins/{mesh_visualizer => mesh}/tf_mesh_dashboard/tf-mesh-dashboard.html (100%) rename tensorboard/plugins/{mesh_visualizer => mesh}/tf_mesh_dashboard/tf-mesh-loader.html (100%) diff --git a/tensorboard/components/tf_tensorboard/BUILD b/tensorboard/components/tf_tensorboard/BUILD index 1ab6139b411..1bcebd86062 100644 --- a/tensorboard/components/tf_tensorboard/BUILD +++ b/tensorboard/components/tf_tensorboard/BUILD @@ -75,7 +75,7 @@ tf_web_library( "//tensorboard/plugins/hparams/tf_hparams_dashboard", "//tensorboard/plugins/image/tf_image_dashboard", "//tensorboard/plugins/interactive_inference/tf_interactive_inference_dashboard", - "//tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard", + "//tensorboard/plugins/mesh/tf_mesh_dashboard", "//tensorboard/plugins/pr_curve/tf_pr_curve_dashboard", "//tensorboard/plugins/profile/tf_profile_dashboard", "//tensorboard/plugins/projector/vz_projector", diff --git a/tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/BUILD b/tensorboard/plugins/mesh/tf_mesh_dashboard/BUILD similarity index 100% rename from tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/BUILD rename to tensorboard/plugins/mesh/tf_mesh_dashboard/BUILD diff --git a/tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/mesh-loader.js b/tensorboard/plugins/mesh/tf_mesh_dashboard/mesh-loader.js similarity index 100% rename from tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/mesh-loader.js rename to tensorboard/plugins/mesh/tf_mesh_dashboard/mesh-loader.js diff --git a/tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/tf-mesh-dashboard.html b/tensorboard/plugins/mesh/tf_mesh_dashboard/tf-mesh-dashboard.html similarity index 100% rename from tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/tf-mesh-dashboard.html rename to tensorboard/plugins/mesh/tf_mesh_dashboard/tf-mesh-dashboard.html diff --git a/tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/tf-mesh-loader.html b/tensorboard/plugins/mesh/tf_mesh_dashboard/tf-mesh-loader.html similarity index 100% rename from tensorboard/plugins/mesh_visualizer/tf_mesh_dashboard/tf-mesh-loader.html rename to tensorboard/plugins/mesh/tf_mesh_dashboard/tf-mesh-loader.html