aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-event-dashboard/demo/index.html
blob: 34ad6a72630f8245349e8661bb8a31c4c0a90c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
  <head>
    <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
    <link rel="import" href="../tf-event-dashboard.html">
    <link rel="stylesheet" type="text/css" href="../../../lib/css/global.css">
    <title>Event Dashboard Demo Demo</title>
  </head>
  <body>
    <script>
      TF.Urls.runsUrl = function() {return "data/runs.json"};
      TF.Urls.scalarsUrl = function(tag, run) {return "data/" + run + "/" + tag + ".json";};
    </script>

    <tf-event-dashboard id="demo"></tf-event-dashboard>
  </body>
</html>