Skip to content

Commit

Permalink
Followup to fix a few more README.md broken links (tensorflow#19)
Browse files Browse the repository at this point in the history
This converts them to relative links in the mold of tensorflow#16.
  • Loading branch information
nfelt authored Oct 5, 2017
1 parent e4e142f commit 8ba1f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ Next, we dive in with setting up a standard dashboard layout. Here is an overvie
Once you have a plugin (or, more realistically, as you are developing it), you will want to use it inside TensorBoard. To do that, we recommend you fork [this repository](https://github.com/tensorflow/tensorboard-plugin-example); it has everything set up for you.

Basically, the way you integrate a new plugin is by creating a custom TensorBoard build. The custom build needs to change two things:
1. It needs to use its own [`main.py`](https://github.com/tensorflow/tensorboard-plugin-example/blob/greeter_tensorboard/main.py) file, which imports the standard TensorBoard plugins, and adds a new one on the backend.
2. It needs to provide its own [`index.html`](https://github.com/tensorflow/tensorboard-plugin-example/blob/greeter_tensorboard/index.html) file, which imports the new TensorBoard plugin frontend, and registers it as a dashboard.
1. It needs to use its own [`main.py`](greeter_tensorboard/main.py) file, which imports the standard TensorBoard plugins, and adds a new one on the backend.
2. It needs to provide its own [`index.html`](greeter_tensorboard/index.html) file, which imports the new TensorBoard plugin frontend, and registers it as a dashboard.

If you want to really understand what’s going on with the integration, you’ll need to understand Bazel, our build system. You can read the [Bazel docs](https://bazel.build/) and also our compilation of [useful tips](bazel_tips.md).

Expand Down

0 comments on commit 8ba1f93

Please sign in to comment.