You can extend TensorBoard to show custom visualizations and connect to custom backends by writing a custom plugin. Clone and tinker with one of the examples, or learn about the plugin system by following the ADDING_A_PLUGIN guide. Custom plugins can be published on PyPI to be shared with the community.
Developing a custom plugin does not require Bazel or building TensorBoard.
TensorBoard at HEAD relies on the nightly installation of TensorFlow: this allows plugin authors to use the latest features of TensorFlow, but it means release versions of TensorFlow may not suffice for development. We recommend installing TensorFlow nightly in a Python virtualenv, and then running your modified development copy of TensorBoard within that virtualenv. To install TensorFlow nightly within the virtualenv, as well as TensorBoard's runtime and tooling dependencies, you can run:
$ virtualenv -p python3 tf
$ source tf/bin/activate
(tf)$ pip install --upgrade pip
(tf)$ pip install tf-nightly -r tensorboard/pip_package/requirements.txt -r tensorboard/pip_package/requirements_dev.txt
TensorBoard builds are done with Bazel, so you may need to install Bazel. The Bazel build will automatically "vulcanize" all the HTML files and generate a "binary" launcher script. When HTML is vulcanized, it means all the script tags and HTML imports are inlined into one big HTML file. Then the Bazel build puts that index.html file inside a static assets zip. The python HTTP server then reads static assets from that zip while serving.
You can build and run TensorBoard via Bazel (from within the TensorFlow nightly virtualenv) as follows:
(tf)$ bazel run //tensorboard -- --logdir /path/to/logs
For any changes to the frontend, you’ll need to install Yarn to lint your code (yarn lint
, yarn fix-lint
). You’ll also need Yarn to add or remove any NPM dependencies.
For any changes to the backend, you’ll need to install Black to lint your code (run black .
). Our black
version is specified in requirements_dev.txt
in this repository. Black only runs on Python 3.6 or higher, so you may want to install it into a separate virtual environment and use a wrapper script to invoke it from any environment.
You may wish to configure your editor to automatically run Prettier and Black on save.
To generate fake log data for a plugin, run its demo script. For instance, this command generates fake scalar data in /tmp/scalars_demo
:
(tf)$ bazel run //tensorboard/plugins/scalar:scalars_demo
If you have Bazel≥0.16 and want to build any commit of TensorBoard prior to 2018-08-07, then you must first cherry-pick pull request #1334 onto your working tree:
$ git cherry-pick bc4e7a6e5517daf918433a8f5983fc6bd239358f
You may find the following optional tips useful for development.
git config blame.ignoreRevsFile .git-blame-ignore-revs # requires Git >= 2.23
We maintain a list of commits with large diffs that are known to not have any
semantic effect, like mass code reformattings. As of Git 2.23, you can configure
Git to ignore these commits in the output of git blame
, so that lines are
blamed to the most recent “real” change. Set the blame.ignoreRevsFile
Git
config option to .git-blame-ignore-revs
to enable this by default, or pass
--ignore-revs-file .git-blame-ignore-revs
to enable it for a single command.
When enabled by default, this also works with editor plugins like
vim-fugitive. See git help blame
and git help config
for more details.
To make the devleopment faster, we can use run TensorBoard on dev target with iBazel.
(tf)$ ibazel run tensorboard:dev -- \
--logdir path/to/logs \
[--bind_all] \
[--port PORT_NUMBER]
ibazel
: Bazel is capable of performing incremental builds where it builds only the subset of files that are impacted by file changes. However, it does not come with a file watcher. For an improved developer experience, start TensorBoard withibazel
instead ofbazel
which will automatically re-build and start the server when files change.:dev
: A target to bundle all dev assets with no vulcanization, which makes the build faster.--bind_all
: Used to view the running TensorBoard over the network than fromlocalhost
, necessary when running at a remote machine and accessing the server from your local chrome browser.
Access your server at http://<YOUR_SERVER_ADDRESS>:<PORT_NUMBER>/
if you are
running TensorBoard at a remote machine. Otherwise localhost:<PORT_NUMBER>
should
work.
If you do not have the ibazel binary on your system, you can use the command below.
# Optionally run `yarn` to keep `node_modules` up-to-date.
yarn run ibazel run tensorboard:dev -- -- --logdir path/to/logs
Our UI tests (e.g., //tensorboard/components/vz_sorting/test) for our polymer code base
use HTML import which is now deprecated from all browsers (Chrome 79- had the native
support)and is run without any polyfills. In order to debug tests, you may want to
run a a Chromium used by our CI that supports HTML import. It can be found in
./bazel-bin/third_party/chromium/chromium.out
(exact path to binary will
differ by OS you are on; for Linux, the full path is
./bazel-bin/third_party/chromium/chromium.out/chrome-linux/chrome
).
For example of the vz_sorting test,
# Run the debug instance of the test. It should run a web server at a dynamic
# port.
bazel run tensorboard/components/vz_sorting/test:test_web_library
# In another tab:
# Fetch, if missing, the Chromium
bazel build third_party/chromium
./bazel-bin/third_party/chromium/chromium.out/chrome-linux/chrome
# Lastly, put the address returnd by the web server into the Chromium.
Here is a short summary of the various commands and their primary function. Please see below for more details. We recommand using ibazle test
for regular work and bazel run
for deep dive debugging.
bazel test/run
: runs tests once and done.ibazel test
: supports file watching.ibazle run
: provides karma console breakpoint debugging; does not support file watching.- Both
ibazel test
andibazel run
supportsconsole.log
andfit/fdescribe
, which are used to narrow down the test amount.
-
Just run all webapp tests. The job stops after finished.
console.log
is not supported. Not handy on debugging.(tf)$ bazel test //tensorboard/webapp/...
-
Using
ibazel
to auto detect the file changes and use targetkarma_test_chromium-local
for running on webapp tests.(tf)$ ibazel test //tensorboard/webapp/... --test_output=all
--test_output=all
: for displaying number of tests if using 'fit
'.
-
To run on a specific test, we can change the target (with
chromium-local
suffix). For example,// Run webapp tests on `karma_test` target (tf)$ ibazel test //tensorboard/webapp:karma_test_chromium-local // Run notification center tests on `notification_center_test` target (tf)$ ibazel test //tensorboard/webapp/notification_center:notification_center_test_chromium-local
-
For running a karma console to set break points for debugging purpose, use
bazel run
. Access the karma console at port9876
(For example,http://<YOUR_SERVER_ADDRESS>:9876/
) and click 'DEBUG' button, it pops up another page, where you have to use browser developer console for better debugging.(tf)$ bazel run //tensorboard/webapp:karma_test_chromium-local
However, you cannot use
ibazel run
in this case. The file watcher is glitchy on running the tests when detecting changes. It shows 'a broken pipe
' in terminal. We need to terminate and restart the program manually.