MCPcopy Create free account
hub / github.com/tensorflow/tensorboard / text_route

Method text_route

tensorboard/plugins/text/text_plugin.py:275–283  ·  view source on GitHub ↗
(self, request)

Source from the content-addressed store, hash-verified

273
274 @wrappers.Request.application
275 def text_route(self, request):
276 ctx = plugin_util.context(request.environ)
277 experiment = plugin_util.experiment_id(request.environ)
278 run = request.args.get("run")
279 tag = request.args.get("tag")
280 markdown_arg = request.args.get("markdown")
281 enable_markdown = markdown_arg != "false" # Default to enabled.
282 response = self.text_impl(ctx, run, tag, experiment, enable_markdown)
283 return http_util.Respond(request, response, "application/json")
284
285 def get_plugin_apps(self):
286 return {

Callers

nothing calls this directly

Calls 2

text_implMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected