tensorbored 2.21.0rc1769983804__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (271) hide show
  1. tensorbored/__init__.py +112 -0
  2. tensorbored/_vendor/__init__.py +0 -0
  3. tensorbored/_vendor/bleach/__init__.py +125 -0
  4. tensorbored/_vendor/bleach/_vendor/__init__.py +0 -0
  5. tensorbored/_vendor/bleach/_vendor/html5lib/__init__.py +35 -0
  6. tensorbored/_vendor/bleach/_vendor/html5lib/_ihatexml.py +289 -0
  7. tensorbored/_vendor/bleach/_vendor/html5lib/_inputstream.py +918 -0
  8. tensorbored/_vendor/bleach/_vendor/html5lib/_tokenizer.py +1735 -0
  9. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/__init__.py +5 -0
  10. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/_base.py +40 -0
  11. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/py.py +67 -0
  12. tensorbored/_vendor/bleach/_vendor/html5lib/_utils.py +159 -0
  13. tensorbored/_vendor/bleach/_vendor/html5lib/constants.py +2946 -0
  14. tensorbored/_vendor/bleach/_vendor/html5lib/filters/__init__.py +0 -0
  15. tensorbored/_vendor/bleach/_vendor/html5lib/filters/alphabeticalattributes.py +29 -0
  16. tensorbored/_vendor/bleach/_vendor/html5lib/filters/base.py +12 -0
  17. tensorbored/_vendor/bleach/_vendor/html5lib/filters/inject_meta_charset.py +73 -0
  18. tensorbored/_vendor/bleach/_vendor/html5lib/filters/lint.py +93 -0
  19. tensorbored/_vendor/bleach/_vendor/html5lib/filters/optionaltags.py +207 -0
  20. tensorbored/_vendor/bleach/_vendor/html5lib/filters/sanitizer.py +916 -0
  21. tensorbored/_vendor/bleach/_vendor/html5lib/filters/whitespace.py +38 -0
  22. tensorbored/_vendor/bleach/_vendor/html5lib/html5parser.py +2795 -0
  23. tensorbored/_vendor/bleach/_vendor/html5lib/serializer.py +409 -0
  24. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/__init__.py +30 -0
  25. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/genshi.py +54 -0
  26. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/sax.py +50 -0
  27. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/__init__.py +88 -0
  28. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/base.py +417 -0
  29. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/dom.py +239 -0
  30. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree.py +343 -0
  31. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree_lxml.py +392 -0
  32. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/__init__.py +154 -0
  33. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/base.py +252 -0
  34. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/dom.py +43 -0
  35. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree.py +131 -0
  36. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree_lxml.py +215 -0
  37. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/genshi.py +69 -0
  38. tensorbored/_vendor/bleach/_vendor/parse.py +1078 -0
  39. tensorbored/_vendor/bleach/callbacks.py +32 -0
  40. tensorbored/_vendor/bleach/html5lib_shim.py +757 -0
  41. tensorbored/_vendor/bleach/linkifier.py +633 -0
  42. tensorbored/_vendor/bleach/parse_shim.py +1 -0
  43. tensorbored/_vendor/bleach/sanitizer.py +638 -0
  44. tensorbored/_vendor/bleach/six_shim.py +19 -0
  45. tensorbored/_vendor/webencodings/__init__.py +342 -0
  46. tensorbored/_vendor/webencodings/labels.py +231 -0
  47. tensorbored/_vendor/webencodings/mklabels.py +59 -0
  48. tensorbored/_vendor/webencodings/x_user_defined.py +325 -0
  49. tensorbored/assets.py +36 -0
  50. tensorbored/auth.py +102 -0
  51. tensorbored/backend/__init__.py +0 -0
  52. tensorbored/backend/application.py +604 -0
  53. tensorbored/backend/auth_context_middleware.py +38 -0
  54. tensorbored/backend/client_feature_flags.py +113 -0
  55. tensorbored/backend/empty_path_redirect.py +46 -0
  56. tensorbored/backend/event_processing/__init__.py +0 -0
  57. tensorbored/backend/event_processing/data_ingester.py +276 -0
  58. tensorbored/backend/event_processing/data_provider.py +535 -0
  59. tensorbored/backend/event_processing/directory_loader.py +142 -0
  60. tensorbored/backend/event_processing/directory_watcher.py +272 -0
  61. tensorbored/backend/event_processing/event_accumulator.py +950 -0
  62. tensorbored/backend/event_processing/event_file_inspector.py +463 -0
  63. tensorbored/backend/event_processing/event_file_loader.py +292 -0
  64. tensorbored/backend/event_processing/event_multiplexer.py +521 -0
  65. tensorbored/backend/event_processing/event_util.py +68 -0
  66. tensorbored/backend/event_processing/io_wrapper.py +223 -0
  67. tensorbored/backend/event_processing/plugin_asset_util.py +104 -0
  68. tensorbored/backend/event_processing/plugin_event_accumulator.py +721 -0
  69. tensorbored/backend/event_processing/plugin_event_multiplexer.py +522 -0
  70. tensorbored/backend/event_processing/reservoir.py +266 -0
  71. tensorbored/backend/event_processing/tag_types.py +29 -0
  72. tensorbored/backend/experiment_id.py +71 -0
  73. tensorbored/backend/experimental_plugin.py +51 -0
  74. tensorbored/backend/http_util.py +263 -0
  75. tensorbored/backend/json_util.py +70 -0
  76. tensorbored/backend/path_prefix.py +67 -0
  77. tensorbored/backend/process_graph.py +74 -0
  78. tensorbored/backend/security_validator.py +202 -0
  79. tensorbored/compat/__init__.py +69 -0
  80. tensorbored/compat/proto/__init__.py +0 -0
  81. tensorbored/compat/proto/allocation_description_pb2.py +35 -0
  82. tensorbored/compat/proto/api_def_pb2.py +82 -0
  83. tensorbored/compat/proto/attr_value_pb2.py +80 -0
  84. tensorbored/compat/proto/cluster_pb2.py +58 -0
  85. tensorbored/compat/proto/config_pb2.py +271 -0
  86. tensorbored/compat/proto/coordination_config_pb2.py +45 -0
  87. tensorbored/compat/proto/cost_graph_pb2.py +87 -0
  88. tensorbored/compat/proto/cpp_shape_inference_pb2.py +70 -0
  89. tensorbored/compat/proto/debug_pb2.py +65 -0
  90. tensorbored/compat/proto/event_pb2.py +149 -0
  91. tensorbored/compat/proto/full_type_pb2.py +74 -0
  92. tensorbored/compat/proto/function_pb2.py +157 -0
  93. tensorbored/compat/proto/graph_debug_info_pb2.py +111 -0
  94. tensorbored/compat/proto/graph_pb2.py +41 -0
  95. tensorbored/compat/proto/histogram_pb2.py +39 -0
  96. tensorbored/compat/proto/meta_graph_pb2.py +254 -0
  97. tensorbored/compat/proto/node_def_pb2.py +61 -0
  98. tensorbored/compat/proto/op_def_pb2.py +81 -0
  99. tensorbored/compat/proto/resource_handle_pb2.py +48 -0
  100. tensorbored/compat/proto/rewriter_config_pb2.py +93 -0
  101. tensorbored/compat/proto/rpc_options_pb2.py +35 -0
  102. tensorbored/compat/proto/saved_object_graph_pb2.py +193 -0
  103. tensorbored/compat/proto/saver_pb2.py +38 -0
  104. tensorbored/compat/proto/step_stats_pb2.py +116 -0
  105. tensorbored/compat/proto/struct_pb2.py +144 -0
  106. tensorbored/compat/proto/summary_pb2.py +111 -0
  107. tensorbored/compat/proto/tensor_description_pb2.py +38 -0
  108. tensorbored/compat/proto/tensor_pb2.py +68 -0
  109. tensorbored/compat/proto/tensor_shape_pb2.py +46 -0
  110. tensorbored/compat/proto/tfprof_log_pb2.py +307 -0
  111. tensorbored/compat/proto/trackable_object_graph_pb2.py +90 -0
  112. tensorbored/compat/proto/types_pb2.py +105 -0
  113. tensorbored/compat/proto/variable_pb2.py +62 -0
  114. tensorbored/compat/proto/verifier_config_pb2.py +38 -0
  115. tensorbored/compat/proto/versions_pb2.py +35 -0
  116. tensorbored/compat/tensorflow_stub/__init__.py +38 -0
  117. tensorbored/compat/tensorflow_stub/app.py +124 -0
  118. tensorbored/compat/tensorflow_stub/compat/__init__.py +131 -0
  119. tensorbored/compat/tensorflow_stub/compat/v1/__init__.py +20 -0
  120. tensorbored/compat/tensorflow_stub/dtypes.py +692 -0
  121. tensorbored/compat/tensorflow_stub/error_codes.py +169 -0
  122. tensorbored/compat/tensorflow_stub/errors.py +507 -0
  123. tensorbored/compat/tensorflow_stub/flags.py +124 -0
  124. tensorbored/compat/tensorflow_stub/io/__init__.py +17 -0
  125. tensorbored/compat/tensorflow_stub/io/gfile.py +1011 -0
  126. tensorbored/compat/tensorflow_stub/pywrap_tensorflow.py +285 -0
  127. tensorbored/compat/tensorflow_stub/tensor_shape.py +1035 -0
  128. tensorbored/context.py +129 -0
  129. tensorbored/data/__init__.py +0 -0
  130. tensorbored/data/grpc_provider.py +365 -0
  131. tensorbored/data/ingester.py +46 -0
  132. tensorbored/data/proto/__init__.py +0 -0
  133. tensorbored/data/proto/data_provider_pb2.py +517 -0
  134. tensorbored/data/proto/data_provider_pb2_grpc.py +374 -0
  135. tensorbored/data/provider.py +1365 -0
  136. tensorbored/data/server_ingester.py +301 -0
  137. tensorbored/data_compat.py +159 -0
  138. tensorbored/dataclass_compat.py +224 -0
  139. tensorbored/default.py +124 -0
  140. tensorbored/errors.py +130 -0
  141. tensorbored/lazy.py +99 -0
  142. tensorbored/main.py +48 -0
  143. tensorbored/main_lib.py +62 -0
  144. tensorbored/manager.py +487 -0
  145. tensorbored/notebook.py +441 -0
  146. tensorbored/plugin_util.py +266 -0
  147. tensorbored/plugins/__init__.py +0 -0
  148. tensorbored/plugins/audio/__init__.py +0 -0
  149. tensorbored/plugins/audio/audio_plugin.py +229 -0
  150. tensorbored/plugins/audio/metadata.py +69 -0
  151. tensorbored/plugins/audio/plugin_data_pb2.py +37 -0
  152. tensorbored/plugins/audio/summary.py +230 -0
  153. tensorbored/plugins/audio/summary_v2.py +124 -0
  154. tensorbored/plugins/base_plugin.py +367 -0
  155. tensorbored/plugins/core/__init__.py +0 -0
  156. tensorbored/plugins/core/core_plugin.py +981 -0
  157. tensorbored/plugins/custom_scalar/__init__.py +0 -0
  158. tensorbored/plugins/custom_scalar/custom_scalars_plugin.py +320 -0
  159. tensorbored/plugins/custom_scalar/layout_pb2.py +85 -0
  160. tensorbored/plugins/custom_scalar/metadata.py +35 -0
  161. tensorbored/plugins/custom_scalar/summary.py +79 -0
  162. tensorbored/plugins/debugger_v2/__init__.py +0 -0
  163. tensorbored/plugins/debugger_v2/debug_data_multiplexer.py +631 -0
  164. tensorbored/plugins/debugger_v2/debug_data_provider.py +634 -0
  165. tensorbored/plugins/debugger_v2/debugger_v2_plugin.py +504 -0
  166. tensorbored/plugins/distribution/__init__.py +0 -0
  167. tensorbored/plugins/distribution/compressor.py +158 -0
  168. tensorbored/plugins/distribution/distributions_plugin.py +116 -0
  169. tensorbored/plugins/distribution/metadata.py +19 -0
  170. tensorbored/plugins/graph/__init__.py +0 -0
  171. tensorbored/plugins/graph/graph_util.py +129 -0
  172. tensorbored/plugins/graph/graphs_plugin.py +336 -0
  173. tensorbored/plugins/graph/keras_util.py +328 -0
  174. tensorbored/plugins/graph/metadata.py +42 -0
  175. tensorbored/plugins/histogram/__init__.py +0 -0
  176. tensorbored/plugins/histogram/histograms_plugin.py +144 -0
  177. tensorbored/plugins/histogram/metadata.py +63 -0
  178. tensorbored/plugins/histogram/plugin_data_pb2.py +34 -0
  179. tensorbored/plugins/histogram/summary.py +234 -0
  180. tensorbored/plugins/histogram/summary_v2.py +292 -0
  181. tensorbored/plugins/hparams/__init__.py +14 -0
  182. tensorbored/plugins/hparams/_keras.py +93 -0
  183. tensorbored/plugins/hparams/api.py +130 -0
  184. tensorbored/plugins/hparams/api_pb2.py +208 -0
  185. tensorbored/plugins/hparams/backend_context.py +606 -0
  186. tensorbored/plugins/hparams/download_data.py +158 -0
  187. tensorbored/plugins/hparams/error.py +26 -0
  188. tensorbored/plugins/hparams/get_experiment.py +71 -0
  189. tensorbored/plugins/hparams/hparams_plugin.py +206 -0
  190. tensorbored/plugins/hparams/hparams_util_pb2.py +69 -0
  191. tensorbored/plugins/hparams/json_format_compat.py +38 -0
  192. tensorbored/plugins/hparams/list_metric_evals.py +57 -0
  193. tensorbored/plugins/hparams/list_session_groups.py +1040 -0
  194. tensorbored/plugins/hparams/metadata.py +125 -0
  195. tensorbored/plugins/hparams/metrics.py +41 -0
  196. tensorbored/plugins/hparams/plugin_data_pb2.py +69 -0
  197. tensorbored/plugins/hparams/summary.py +205 -0
  198. tensorbored/plugins/hparams/summary_v2.py +597 -0
  199. tensorbored/plugins/image/__init__.py +0 -0
  200. tensorbored/plugins/image/images_plugin.py +232 -0
  201. tensorbored/plugins/image/metadata.py +65 -0
  202. tensorbored/plugins/image/plugin_data_pb2.py +34 -0
  203. tensorbored/plugins/image/summary.py +159 -0
  204. tensorbored/plugins/image/summary_v2.py +130 -0
  205. tensorbored/plugins/mesh/__init__.py +14 -0
  206. tensorbored/plugins/mesh/mesh_plugin.py +292 -0
  207. tensorbored/plugins/mesh/metadata.py +152 -0
  208. tensorbored/plugins/mesh/plugin_data_pb2.py +37 -0
  209. tensorbored/plugins/mesh/summary.py +251 -0
  210. tensorbored/plugins/mesh/summary_v2.py +214 -0
  211. tensorbored/plugins/metrics/__init__.py +0 -0
  212. tensorbored/plugins/metrics/metadata.py +17 -0
  213. tensorbored/plugins/metrics/metrics_plugin.py +623 -0
  214. tensorbored/plugins/pr_curve/__init__.py +0 -0
  215. tensorbored/plugins/pr_curve/metadata.py +75 -0
  216. tensorbored/plugins/pr_curve/plugin_data_pb2.py +34 -0
  217. tensorbored/plugins/pr_curve/pr_curves_plugin.py +241 -0
  218. tensorbored/plugins/pr_curve/summary.py +574 -0
  219. tensorbored/plugins/profile_redirect/__init__.py +0 -0
  220. tensorbored/plugins/profile_redirect/profile_redirect_plugin.py +49 -0
  221. tensorbored/plugins/projector/__init__.py +67 -0
  222. tensorbored/plugins/projector/metadata.py +26 -0
  223. tensorbored/plugins/projector/projector_config_pb2.py +54 -0
  224. tensorbored/plugins/projector/projector_plugin.py +795 -0
  225. tensorbored/plugins/projector/tf_projector_plugin/index.js +32 -0
  226. tensorbored/plugins/projector/tf_projector_plugin/projector_binary.html +524 -0
  227. tensorbored/plugins/projector/tf_projector_plugin/projector_binary.js +15536 -0
  228. tensorbored/plugins/scalar/__init__.py +0 -0
  229. tensorbored/plugins/scalar/metadata.py +60 -0
  230. tensorbored/plugins/scalar/plugin_data_pb2.py +34 -0
  231. tensorbored/plugins/scalar/scalars_plugin.py +181 -0
  232. tensorbored/plugins/scalar/summary.py +109 -0
  233. tensorbored/plugins/scalar/summary_v2.py +124 -0
  234. tensorbored/plugins/text/__init__.py +0 -0
  235. tensorbored/plugins/text/metadata.py +62 -0
  236. tensorbored/plugins/text/plugin_data_pb2.py +34 -0
  237. tensorbored/plugins/text/summary.py +114 -0
  238. tensorbored/plugins/text/summary_v2.py +124 -0
  239. tensorbored/plugins/text/text_plugin.py +288 -0
  240. tensorbored/plugins/wit_redirect/__init__.py +0 -0
  241. tensorbored/plugins/wit_redirect/wit_redirect_plugin.py +49 -0
  242. tensorbored/program.py +910 -0
  243. tensorbored/summary/__init__.py +35 -0
  244. tensorbored/summary/_output.py +124 -0
  245. tensorbored/summary/_tf/__init__.py +14 -0
  246. tensorbored/summary/_tf/summary/__init__.py +178 -0
  247. tensorbored/summary/_writer.py +105 -0
  248. tensorbored/summary/v1.py +51 -0
  249. tensorbored/summary/v2.py +25 -0
  250. tensorbored/summary/writer/__init__.py +13 -0
  251. tensorbored/summary/writer/event_file_writer.py +291 -0
  252. tensorbored/summary/writer/record_writer.py +50 -0
  253. tensorbored/util/__init__.py +0 -0
  254. tensorbored/util/encoder.py +116 -0
  255. tensorbored/util/grpc_util.py +311 -0
  256. tensorbored/util/img_mime_type_detector.py +40 -0
  257. tensorbored/util/io_util.py +20 -0
  258. tensorbored/util/lazy_tensor_creator.py +110 -0
  259. tensorbored/util/op_evaluator.py +104 -0
  260. tensorbored/util/platform_util.py +20 -0
  261. tensorbored/util/tb_logging.py +24 -0
  262. tensorbored/util/tensor_util.py +617 -0
  263. tensorbored/util/timing.py +122 -0
  264. tensorbored/version.py +21 -0
  265. tensorbored/webfiles.zip +0 -0
  266. tensorbored-2.21.0rc1769983804.dist-info/METADATA +49 -0
  267. tensorbored-2.21.0rc1769983804.dist-info/RECORD +271 -0
  268. tensorbored-2.21.0rc1769983804.dist-info/WHEEL +5 -0
  269. tensorbored-2.21.0rc1769983804.dist-info/entry_points.txt +6 -0
  270. tensorbored-2.21.0rc1769983804.dist-info/licenses/LICENSE +739 -0
  271. tensorbored-2.21.0rc1769983804.dist-info/top_level.txt +1 -0
@@ -0,0 +1,122 @@
1
+ # Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Utilities for measuring elapsed time."""
16
+
17
+ import contextlib
18
+ import logging
19
+ import threading
20
+ import time
21
+
22
+ from tensorbored.util import tb_logging
23
+
24
+ logger = tb_logging.get_logger()
25
+
26
+
27
+ def log_latency(region_name_or_function_to_decorate, log_level=None):
28
+ """Log latency in a function or region.
29
+
30
+ Three usages are supported. As a decorator:
31
+
32
+ >>> @log_latency
33
+ ... def function_1():
34
+ ... pass
35
+ ...
36
+
37
+
38
+ As a decorator with a custom label for the region:
39
+
40
+ >>> @log_latency("custom_label")
41
+ ... def function_2():
42
+ ... pass
43
+ ...
44
+
45
+ As a context manager:
46
+
47
+ >>> def function_3():
48
+ ... with log_latency("region_within_function"):
49
+ ... pass
50
+ ...
51
+
52
+ Args:
53
+ region_name_or_function_to_decorate: Either: a `str`, in which
54
+ case the result of this function may be used as either a
55
+ decorator or a context manager; or a callable, in which case
56
+ the result of this function is a decorated version of that
57
+ callable.
58
+ log_level: Optional integer logging level constant. Defaults to
59
+ `logging.INFO`.
60
+
61
+ Returns:
62
+ A decorated version of the input callable, or a dual
63
+ decorator/context manager with the input region name.
64
+ """
65
+
66
+ if log_level is None:
67
+ log_level = logging.INFO
68
+
69
+ if isinstance(region_name_or_function_to_decorate, str):
70
+ region_name = region_name_or_function_to_decorate
71
+ return _log_latency(region_name, log_level)
72
+ else:
73
+ function_to_decorate = region_name_or_function_to_decorate
74
+ qualname = getattr(function_to_decorate, "__qualname__", None)
75
+ if qualname is None:
76
+ qualname = str(function_to_decorate)
77
+ decorator = _log_latency(qualname, log_level)
78
+ return decorator(function_to_decorate)
79
+
80
+
81
+ class _ThreadLocalStore(threading.local):
82
+ def __init__(self):
83
+ self.nesting_level = 0
84
+
85
+
86
+ _store = _ThreadLocalStore()
87
+
88
+
89
+ @contextlib.contextmanager
90
+ def _log_latency(name, log_level):
91
+ if not logger.isEnabledFor(log_level):
92
+ yield
93
+ return
94
+
95
+ start_level = _store.nesting_level
96
+ try:
97
+ started = time.time()
98
+ _store.nesting_level = start_level + 1
99
+ indent = (" " * 2) * start_level
100
+ thread = threading.current_thread()
101
+ prefix = "%s[%x]%s" % (thread.name, thread.ident, indent)
102
+ _log(log_level, "%s ENTER %s", prefix, name)
103
+ yield
104
+ finally:
105
+ _store.nesting_level = start_level
106
+ elapsed = time.time() - started
107
+ _log(
108
+ log_level,
109
+ "%s LEAVE %s - %0.6fs elapsed",
110
+ prefix,
111
+ name,
112
+ elapsed,
113
+ )
114
+
115
+
116
+ def _log(log_level, msg, *args):
117
+ # Forwarding method to ensure that all logging statements
118
+ # originating in this module have the same line number; if the
119
+ # "ENTER" log is on a line with 2-digit number and the "LEAVE" log
120
+ # is on a line with 3-digit number, the logs are misaligned and
121
+ # harder to read.
122
+ logger.log(log_level, msg, *args)
tensorbored/version.py ADDED
@@ -0,0 +1,21 @@
1
+ # Copyright 2017 The TensorFlow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Contains the version string."""
17
+
18
+ VERSION = "2.21.0rc1769983804"
19
+
20
+ if __name__ == "__main__":
21
+ print(VERSION)
Binary file
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: tensorbored
3
+ Version: 2.21.0rc1769983804
4
+ Summary: TensorBored: a PyTorch-first TensorBoard fork
5
+ Home-page: https://github.com/Demonstrandum/tensorbored
6
+ Author: TensorBored authors
7
+ Author-email:
8
+ License: Apache 2.0
9
+ Keywords: pytorch tensorboard tensor machine learning visualizer
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Software Development :: Libraries
23
+ Requires-Python: >=3.9
24
+ License-File: LICENSE
25
+ Requires-Dist: absl-py>=0.4
26
+ Requires-Dist: grpcio>=1.48.2
27
+ Requires-Dist: markdown>=2.6.8
28
+ Requires-Dist: numpy>=1.12.0
29
+ Requires-Dist: packaging
30
+ Requires-Dist: pillow
31
+ Requires-Dist: protobuf!=4.24.0,>=3.19.6
32
+ Requires-Dist: setuptools>=41.0.0
33
+ Requires-Dist: tensorboard-data-server<0.8.0,>=0.7.0
34
+ Requires-Dist: werkzeug>=1.0.1
35
+ Dynamic: author
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: home-page
39
+ Dynamic: keywords
40
+ Dynamic: license
41
+ Dynamic: license-file
42
+ Dynamic: requires-dist
43
+ Dynamic: requires-python
44
+ Dynamic: summary
45
+
46
+ TensorBored is a suite of web applications for inspecting and understanding
47
+ your training runs and graphs, with a focus on PyTorch compatibility.
48
+
49
+ This is a fork of TensorBoard. Install with ``pip install tensorbored``.
@@ -0,0 +1,271 @@
1
+ tensorbored/__init__.py,sha256=K0AdC3ojO86pc6yCEuleTpJ2xRKY5rIqZtPFSS3y18k,3996
2
+ tensorbored/assets.py,sha256=L3EUPob7TrPSId11yLDLalK-N_7nxUwI0vvBblJ9ufg,1360
3
+ tensorbored/auth.py,sha256=D76t4TXDsIy79cr5ItRHhrDg-x4I_AQ9Ylsiyeyl5Ho,3768
4
+ tensorbored/context.py,sha256=1pYso1opXsHLTol6JpP6Z8SGOO8gxRVBaUOL5_MkZT0,4440
5
+ tensorbored/data_compat.py,sha256=C2JO5Fdnsg_rgd0N5nC-iOc8E4F6j955Rls_0QE5oIo,6455
6
+ tensorbored/dataclass_compat.py,sha256=6F0lP2iOh4FZTrxlb3SjlKZdlsbzgmCAhdrjEQbtTd8,8609
7
+ tensorbored/default.py,sha256=IH5az2yxc9NNCBkyOW-D2uvGq9H9FqQG4xvA9yOEmoY,4450
8
+ tensorbored/errors.py,sha256=q1RDtjWw8FnyeGwfL7HNM_qDjcO0jjJewtVuuuHYmBY,4358
9
+ tensorbored/lazy.py,sha256=lLC527v9Du03M3d909QQRF-PAW7oxUEzhOf4QSJRmmU,3554
10
+ tensorbored/main.py,sha256=EhLqE4foPZYNyLZL3MDQ3WPogpQpgzJW3n2IakC9KTY,1667
11
+ tensorbored/main_lib.py,sha256=ttD3RusQv13frtC-ysRc3XrSQIJ2TjlGnXktxWRsHwY,2528
12
+ tensorbored/manager.py,sha256=6LKijMpiKUtPTpApEJnQby113MXM55-G_guhulGQsdA,16300
13
+ tensorbored/notebook.py,sha256=zO8ruL979Lc1a6mGOW0J-o97RjbmIZ2nWci3l0y1wLA,14698
14
+ tensorbored/plugin_util.py,sha256=DLJzEy9_50Iq-o14JGz1Q0DwaND9b64Q7BmDROyqZyQ,8376
15
+ tensorbored/program.py,sha256=GHDG5FqtdJtAknzQekWGTYFXwpEnHXWHlAZoidN8Kmo,35500
16
+ tensorbored/version.py,sha256=jGIZsHbZ4-9YSz7vW8fLeaU8DVt9J43xwez-mFf-khY,804
17
+ tensorbored/webfiles.zip,sha256=1bIiTAQHXahMebNZdnQdctde_hd9Ws8oF69o-dFT_1g,4999505
18
+ tensorbored/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ tensorbored/_vendor/bleach/__init__.py,sha256=T_iQHpeDCQpz55IVNEsktpOzw3QHvwj7rfTj34bWWKc,3689
20
+ tensorbored/_vendor/bleach/callbacks.py,sha256=JNTGiM5_3bKsGltpR9ZYEz_C_b7-vfDlTTdQCirbdyc,752
21
+ tensorbored/_vendor/bleach/html5lib_shim.py,sha256=ItRMClvoxd8ukJ3MklnXL2vOuNHrHZyI2HLc4OoXX9g,23839
22
+ tensorbored/_vendor/bleach/linkifier.py,sha256=DEQy_lwgkMT_GPhuqfQl5x1iArvtCCFheoavQJpRCJA,22415
23
+ tensorbored/_vendor/bleach/parse_shim.py,sha256=8pwCp4eQdGfrs3wdCqxdFFoh343_vhi8Y6F78m_qs8k,70
24
+ tensorbored/_vendor/bleach/sanitizer.py,sha256=-_w8KdYI9e2sVaVolrdQsPNGRwlEwQ3xYQ-QQcutGqQ,21974
25
+ tensorbored/_vendor/bleach/six_shim.py,sha256=4nLv5WcDyCYaYEpQVuI9I_3t06VMUBr_n4CJAn4nQwQ,305
26
+ tensorbored/_vendor/bleach/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ tensorbored/_vendor/bleach/_vendor/parse.py,sha256=Rq-WbjO2JHrh1X2UWRFaPrRs2p-AnJ8U4FKrwv6NrLI,39023
28
+ tensorbored/_vendor/bleach/_vendor/html5lib/__init__.py,sha256=pWnYcfZ69wNLrdQL7bpr49FUi8O8w0KhKCOHsyRgYGQ,1143
29
+ tensorbored/_vendor/bleach/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728
30
+ tensorbored/_vendor/bleach/_vendor/html5lib/_inputstream.py,sha256=vo-NihVXM2DMeyjS-3BU-QbTKyzUaJl0qZyS5Awb-gQ,32383
31
+ tensorbored/_vendor/bleach/_vendor/html5lib/_tokenizer.py,sha256=keRtVhM-syfEEghZkWs-oa2ieF579Cbc-qx_O5JNp0w,77060
32
+ tensorbored/_vendor/bleach/_vendor/html5lib/_utils.py,sha256=Lazjtn7w4yC8qvLK0HVI9VLFS7elTTz0KlhxB2xCFYc,4951
33
+ tensorbored/_vendor/bleach/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464
34
+ tensorbored/_vendor/bleach/_vendor/html5lib/html5parser.py,sha256=KZPNWeKFqlzkDWa4GQ_D8dEEax252oku53tZJiNJpXo,117184
35
+ tensorbored/_vendor/bleach/_vendor/html5lib/serializer.py,sha256=inpQLRV_2LV-RXClhiDPlIGM-n2xFtIIL_3PVY9QZz4,15779
36
+ tensorbored/_vendor/bleach/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109
37
+ tensorbored/_vendor/bleach/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013
38
+ tensorbored/_vendor/bleach/_vendor/html5lib/_trie/py.py,sha256=g6sCjxp9yj-moir6SYZKXqTbOLl3KVVSww22V4I9w00,1795
39
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919
41
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286
42
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945
43
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/lint.py,sha256=70_EM5jyy-taxcK9Ipyasxr0BcFMDYRUrluJcw83YEM,3663
44
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588
45
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/sanitizer.py,sha256=8g8mr6CvaTx_GT7euSMo0yEBHrzGNAlD_UijAX2j8KM,26911
46
+ tensorbored/_vendor/bleach/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214
47
+ tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/__init__.py,sha256=18hyI-at2aBsdKzpwRwa5lGF1ipgctaTYXoU9En2ZQg,650
48
+ tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715
49
+ tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776
50
+ tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592
51
+ tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/base.py,sha256=li582hGppExONRs1ADvpCGm7uLuhXejjRrSWsdQvyqo,14585
52
+ tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925
53
+ tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree.py,sha256=0TjmoSlxGiLnR0Z_RIRA0BA6o1FSRqSs04yDq47h9WA,12856
54
+ tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=f4JPvl39d8tKXHR6h0-csZLsop8pkNrQheDS33hfxoE,14786
55
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719
56
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476
57
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413
58
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree.py,sha256=_db2KKBPlrAEPKtA3ggtskLS9uY0BJIDTzz7Up8RqrI,4571
59
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=gx8OYaMADn-oLOyTASojQhXbVtIr4gEyQ5olauWsz2A,6377
60
+ tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309
61
+ tensorbored/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579
62
+ tensorbored/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979
63
+ tensorbored/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305
64
+ tensorbored/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307
65
+ tensorbored/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ tensorbored/backend/application.py,sha256=4XTA1ZDdE0VEDuWwknG7E9msi0R4ZXTCJkTXPBl0a3o,23569
67
+ tensorbored/backend/auth_context_middleware.py,sha256=91MQVPygkLKwH0I2FzZLCsnGiycYqOLeMSKOVwRt7AY,1561
68
+ tensorbored/backend/client_feature_flags.py,sha256=bR0kyT_-B5H_UU-4G_2fWwFfMXtT_4v3HuP2mpxWs1o,4156
69
+ tensorbored/backend/empty_path_redirect.py,sha256=rtmSxB8VCBlFtDr0Mp-0FPLgJLvIuCtKzEeOq-jvbDE,1932
70
+ tensorbored/backend/experiment_id.py,sha256=yVlYqTvgX0XKLKRxFAAGqnSk_el-fjJEn3z4rEg9i5Y,2801
71
+ tensorbored/backend/experimental_plugin.py,sha256=a_f54YMhXfvSg45iOl16ulIXOcAtvuMbGiJoJ_I8FuI,1797
72
+ tensorbored/backend/http_util.py,sha256=3PV8eJVe1ld_09VQBbcGotd2mHYmXhhyowO2M0AHYi4,10021
73
+ tensorbored/backend/json_util.py,sha256=Ku_MEL9Bbx_HB9scuZtBEzfrnnXpnL1RE6n-MRBBTuk,2415
74
+ tensorbored/backend/path_prefix.py,sha256=ZTaF5GffzqWZP5_eysaF0G0tLGQ4W4vcN1X-kvNtjqM,2733
75
+ tensorbored/backend/process_graph.py,sha256=b9myucHthXF1RDCv_0-BNJtIN97wPrmWxbO-vC-8K2M,3037
76
+ tensorbored/backend/security_validator.py,sha256=bDthUSGXREXUZEhIiwXWvKC_OW2hR1gDfzc_f32Gwc0,6697
77
+ tensorbored/backend/event_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ tensorbored/backend/event_processing/data_ingester.py,sha256=q5DmZV10OXav9bi4pp50GGZftx1Vw_T6-mTU2N06abI,10699
79
+ tensorbored/backend/event_processing/data_provider.py,sha256=PhHwIlsAQcYkdnc-n3_wk19upvH9OEtuss5EiOL4Qhk,19849
80
+ tensorbored/backend/event_processing/directory_loader.py,sha256=JOkeim9OWRjhjZnypx6fwSAdq1xN6QvLelgWusSB3y8,5647
81
+ tensorbored/backend/event_processing/directory_watcher.py,sha256=7yx2O7xmnGYgd3FghWK9Ao7W3JAR6wnVHqskT4Xogic,10477
82
+ tensorbored/backend/event_processing/event_accumulator.py,sha256=RtXMy0Ti0qtya2aEGCgbMKHkbRvNx9dpofv-vva0UXQ,34743
83
+ tensorbored/backend/event_processing/event_file_inspector.py,sha256=uGM7v96JhjE3bf2P5M-wTyj0DVAdjfNDrzchq9A1-xc,15506
84
+ tensorbored/backend/event_processing/event_file_loader.py,sha256=bHqR526bx7_fHAUicP-Knz-rg6eYdAYGr5luVt4qvyU,11830
85
+ tensorbored/backend/event_processing/event_multiplexer.py,sha256=ZEzprX7ZpLpMS8V9qJ7tv7tE8UP2sfwKDRAhrDQeBYc,18809
86
+ tensorbored/backend/event_processing/event_util.py,sha256=MCKVW9-ikXs96O4xqYcvLMZ5tCkFW7KIJfbB-3lrwrI,2209
87
+ tensorbored/backend/event_processing/io_wrapper.py,sha256=Y5-6YYaWHqRLFwng314N2bL8CgUGH-W4BAP8Iv3K-0w,7861
88
+ tensorbored/backend/event_processing/plugin_asset_util.py,sha256=_I-iZVTZvzqmLrtGkUIaHfZXy9BSXhB5g77kT6dmNwo,3554
89
+ tensorbored/backend/event_processing/plugin_event_accumulator.py,sha256=VNr9iVgafCbMLManhQn4WwQ4Bl_N94uDgyaJlXF09I0,29127
90
+ tensorbored/backend/event_processing/plugin_event_multiplexer.py,sha256=KGXD0RTqS2GBi7g9GQR1Mia04KWAPTTmWR9koAHBUgk,19702
91
+ tensorbored/backend/event_processing/reservoir.py,sha256=47E6-AH8QrscTcwOJ7HSCPOuYJGAKK5ZkYqg1xSzuEA,10448
92
+ tensorbored/backend/event_processing/tag_types.py,sha256=ppSaIjQ7kT-waHa-gIElZkUO25AS0S6Gpcr5_fsFaO8,1107
93
+ tensorbored/compat/__init__.py,sha256=PovLtK4gT6TMUT6blUw9bROuvppZK-qKCbnrMqQGO1Y,2399
94
+ tensorbored/compat/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ tensorbored/compat/proto/allocation_description_pb2.py,sha256=mjcCZ15kWLLCjLZR5zF3BwDrWDz0nNPKp40A0W3JDCo,2061
96
+ tensorbored/compat/proto/api_def_pb2.py,sha256=sYfcH2AkREkxlKYXywyNMbV9YsGTphWhMNia7Eywggw,4939
97
+ tensorbored/compat/proto/attr_value_pb2.py,sha256=oBlPxNa3H6qfw9TCeX8mqdyIKXSvh2pKzgi3XwwSG-w,5435
98
+ tensorbored/compat/proto/cluster_pb2.py,sha256=Vyzsl_jx1TNczReYbrlhgQg1sB7CmiCu7sWBnb4LhlI,2787
99
+ tensorbored/compat/proto/config_pb2.py,sha256=XeioQNdKPN20nNw_YPslCXsPTOJr80FKpDzk9i2w-pk,24356
100
+ tensorbored/compat/proto/coordination_config_pb2.py,sha256=suSe7TyFSpClWnEmP7fF42gpR86pXT9vgFA3S__Pclo,2950
101
+ tensorbored/compat/proto/cost_graph_pb2.py,sha256=wsp0dN1VXZq1xjPuG9zZV0Z8g6Zo_307ZF5g7BVKWzY,6073
102
+ tensorbored/compat/proto/cpp_shape_inference_pb2.py,sha256=qDvC_qHBy5xQvp_4pa1iQy4zsIwt64WhAQszdL0nVjY,4762
103
+ tensorbored/compat/proto/debug_pb2.py,sha256=ozSeQ9j0HsXJUGyg9xvMVYqnSixM7-9OJ3t7M-69pbE,3843
104
+ tensorbored/compat/proto/event_pb2.py,sha256=u5hxZCQreizQr37zVpbjZQ_KcvfPc8arKIJeCi2q4kM,9390
105
+ tensorbored/compat/proto/full_type_pb2.py,sha256=qxhU5UOpwkCHPIHLR9jiWPQRkPqipetMNCTfKZOx2DA,3849
106
+ tensorbored/compat/proto/function_pb2.py,sha256=WmYzXfVAwfUhYx5wFqYnWx7f_Rql3bie0L1gjgT9DPQ,9752
107
+ tensorbored/compat/proto/graph_debug_info_pb2.py,sha256=VCoy3LyELeA3DXvDrNqvZ5Q3L4Pkr8V_DEcTWQmhvJY,7014
108
+ tensorbored/compat/proto/graph_pb2.py,sha256=w6K3B4WUewjwEOCoiyX_mZaNCDbL_QJLMshmgzzL5mo,2608
109
+ tensorbored/compat/proto/histogram_pb2.py,sha256=Y0lFovCE91g28NFcON6n-3bg7f8CNaRNG1TGWJE2mAs,2121
110
+ tensorbored/compat/proto/meta_graph_pb2.py,sha256=RX4qJROY4WdnTEtmStVH05FGm7FcCfYqsWdIfZk97P0,17143
111
+ tensorbored/compat/proto/node_def_pb2.py,sha256=gbZhPh4AAgUnKqVsV_h8NoshoOawnoZWTz-QbZ43930,3626
112
+ tensorbored/compat/proto/op_def_pb2.py,sha256=e7XHIg5uVOzKz-sIxHlLnnmq_6_NQQeHu6zmc6lx7a0,5565
113
+ tensorbored/compat/proto/resource_handle_pb2.py,sha256=iitjb25lCkmMwnouyFs7c6TbxBXIFrjTBR8_jpHJSPs,3076
114
+ tensorbored/compat/proto/rewriter_config_pb2.py,sha256=b7Y7DKi0aDDikrmcsvJHnWQ_KUPsdb-_FW4QmznWt6w,9706
115
+ tensorbored/compat/proto/rpc_options_pb2.py,sha256=NDYBN6oyzqLI4pSTNDzmeD_1TEKvjF1mMrvgnJF0aF4,1744
116
+ tensorbored/compat/proto/saved_object_graph_pb2.py,sha256=wPxSMw5kxs6MomCwXWnoWKV4i6r85vZK8SWWB38Kr5U,14216
117
+ tensorbored/compat/proto/saver_pb2.py,sha256=i4gVXN7tzfsOMSTxBNJxtizX_uQbCSVg3Bxo4w7988Y,2220
118
+ tensorbored/compat/proto/step_stats_pb2.py,sha256=sjDdeqw2hEFEfD28x7VjlRb7hRtXMHNBkgqZvoQcD4A,8301
119
+ tensorbored/compat/proto/struct_pb2.py,sha256=t0mu_mg9VmwrebfNjZ8ZeKkJ4jjPIgTTNr30gLLKJeM,9904
120
+ tensorbored/compat/proto/summary_pb2.py,sha256=A3MAm9J29Jprzo6SqDjwR1AOcri0Z0iG6mHpoS84DAM,6728
121
+ tensorbored/compat/proto/tensor_description_pb2.py,sha256=HtUs9mVFM6WPY1UpHsdG60baC1j98rZzz_3Xp6ac2fI,2439
122
+ tensorbored/compat/proto/tensor_pb2.py,sha256=IhTCMujaUQc1n30VjH_T01-7p1pnn2gOwvbHnw6YsFY,5150
123
+ tensorbored/compat/proto/tensor_shape_pb2.py,sha256=v9GUaOKR2RigpU_WPQzEuxp-QkbTB-T7dMaxd7MNQH0,2336
124
+ tensorbored/compat/proto/tfprof_log_pb2.py,sha256=leQC8s1o0s9f8HBa99o8RfOhaEwsvuhPg6rC-yVqWeY,19519
125
+ tensorbored/compat/proto/trackable_object_graph_pb2.py,sha256=YZALmyuygTnqiycz__nqqStW00qZemO2IH6Vffworcs,6359
126
+ tensorbored/compat/proto/types_pb2.py,sha256=Xp_K2yIKcyYFd79SyGilRyk9YxwAJ7f4qtj_vOWvm-4,5358
127
+ tensorbored/compat/proto/variable_pb2.py,sha256=hSj9-9PDSRe7SGknB0_9XMx2WYcA8MSu8UqaMYq5yOs,4046
128
+ tensorbored/compat/proto/verifier_config_pb2.py,sha256=yTannvK3919WwywczYYv7jEhxQqFfFdQHLwvDMsTtSo,2070
129
+ tensorbored/compat/proto/versions_pb2.py,sha256=Sw5RNxja14jkjxb6DDyGe1twHK49PlGB-L7lj6tOU_U,1694
130
+ tensorbored/compat/tensorflow_stub/__init__.py,sha256=SikI7lq_dVEaqK-_5ZpaE8duK3wtW0WMGIxF6DNjV90,1485
131
+ tensorbored/compat/tensorflow_stub/app.py,sha256=q2ecxZOXJ1GU5X1KnOabnhpBfLpnK9Rn7P1DPE7EYSQ,3681
132
+ tensorbored/compat/tensorflow_stub/dtypes.py,sha256=A56TWU0PKGuxU68TO9941rqJkrnJyJ4-QwkJBbDxTGQ,24058
133
+ tensorbored/compat/tensorflow_stub/error_codes.py,sha256=YhU5SzVJVB1kFpdUzM7CCwMeSi6k-P8yLGT0LlClT8g,5809
134
+ tensorbored/compat/tensorflow_stub/errors.py,sha256=DvkaZG-JRK1be0BYq2KXlBh9k0so9MUSvBO6zbZJeyQ,17210
135
+ tensorbored/compat/tensorflow_stub/flags.py,sha256=LIGlgC1wHIQWv8ngaH8VhThFuDy0XS-pFcKDka3CQd8,4271
136
+ tensorbored/compat/tensorflow_stub/pywrap_tensorflow.py,sha256=VxuC_s0L4td9k9yvOVoO7xuF2gzlUUpvK7wOCvew9S4,10122
137
+ tensorbored/compat/tensorflow_stub/tensor_shape.py,sha256=Yc1Z5IIGexk9VyeK69OLiAdLzWhoDtGU_LtlXcFiZaY,34475
138
+ tensorbored/compat/tensorflow_stub/compat/__init__.py,sha256=-UT7Y68SxqFziYfc4TVRFJIZS4q_ecdWjgryi5GoWvY,3976
139
+ tensorbored/compat/tensorflow_stub/compat/v1/__init__.py,sha256=rBFBVFVkw4yC1n76omCAcLxW2sE2dBw5u_Ez0xnS8Xo,865
140
+ tensorbored/compat/tensorflow_stub/io/__init__.py,sha256=xruUqaG7h8Ti-wj5C5VEOTnwpeCYX5jlzSvM221T-1o,719
141
+ tensorbored/compat/tensorflow_stub/io/gfile.py,sha256=AeP2tpaIyff6lUtgf6Ut-bWFgph58BoZWvWup8MVx4U,36144
142
+ tensorbored/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
+ tensorbored/data/grpc_provider.py,sha256=ZtGoyiwWbHqVJDMka3hIME5LFItfNf070MmZRzSyNA0,14591
144
+ tensorbored/data/ingester.py,sha256=YTR2QY74NvB8ZzVPCt_eKJrSB0RXAaofx9zsQ84PUoI,1488
145
+ tensorbored/data/provider.py,sha256=eYjZdVKnz9SUoTMrShJCvNvWsWzFFfp_O1ZlPgk8yGM,48579
146
+ tensorbored/data/server_ingester.py,sha256=p1PJKQgq3SyfbXOCJdyg7vfGxbu8Jog_jz0EQlZ-lJA,10830
147
+ tensorbored/data/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ tensorbored/data/proto/data_provider_pb2.py,sha256=VCju0EduEp3JKEr4W1WYDvdUEyysH6KTGZGg5RnVQI0,33443
149
+ tensorbored/data/proto/data_provider_pb2_grpc.py,sha256=3Pzf6F3zgIL7zFHAjgYUVD60Qr6kAMOTRJ3zm7915AA,19406
150
+ tensorbored/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
+ tensorbored/plugins/base_plugin.py,sha256=a_iROdHLct09Nhsoe9_eXofWuiFqjn9-lP6F7vH6Xac,13543
152
+ tensorbored/plugins/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ tensorbored/plugins/audio/audio_plugin.py,sha256=D1wnvDhegOZXJTpnWYki-4pfejDHWxVZqxBDLvilqgY,8728
154
+ tensorbored/plugins/audio/metadata.py,sha256=dVEx1GKQhJiz0RqUgkhCPfZxVIEID-9pcNlWRFdrK2Q,2313
155
+ tensorbored/plugins/audio/plugin_data_pb2.py,sha256=YwUPbBSQhslWWQKbUINEX8PSitC5Z4TxkyItNQsrg5c,1721
156
+ tensorbored/plugins/audio/summary.py,sha256=w1xrRP-GFXWzgrY1MS9xxKWiAD0tBe8xYWZZ7dXM7A8,8572
157
+ tensorbored/plugins/audio/summary_v2.py,sha256=LxtBrrU3qvHjmD7UjylFTIZHhcaSNrkdhzL9LaZX3oY,5453
158
+ tensorbored/plugins/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ tensorbored/plugins/core/core_plugin.py,sha256=ID72vqZrJ--Ww8MIH4jHmJdWFQt1lxC7QAyQbKHG9Ag,35920
160
+ tensorbored/plugins/custom_scalar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ tensorbored/plugins/custom_scalar/custom_scalars_plugin.py,sha256=vMJS3hBPBXxpd5zw4-LS1HxkHgB12-18cHZf3TXKmuM,11753
162
+ tensorbored/plugins/custom_scalar/layout_pb2.py,sha256=9VfNLBWhLxEQvoOS-r0hgc9VabMBMr4hPiy1oVqwJgE,4340
163
+ tensorbored/plugins/custom_scalar/metadata.py,sha256=i1rHxFUuGQdM3Ubf_m37-vDQ2EglFgwJoCWHZIT3ADk,1268
164
+ tensorbored/plugins/custom_scalar/summary.py,sha256=I9KS7atuk8QxMGJzBFZ82VbSMt4nHyDsYK1c2qzYDc0,2885
165
+ tensorbored/plugins/debugger_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ tensorbored/plugins/debugger_v2/debug_data_multiplexer.py,sha256=cwKnrCtr5NStnr4ajaAIZB-e0uWtbRc2ovDwdaQjHkA,24902
167
+ tensorbored/plugins/debugger_v2/debug_data_provider.py,sha256=m0bTDFaOP3nXB0zMSuLHcY6cnFINn3ISsIMhZRfrCBg,21600
168
+ tensorbored/plugins/debugger_v2/debugger_v2_plugin.py,sha256=GISb0BbUR6g3RGEXAQ2KphMXjBCrtFuHYq4sUxEcRks,20675
169
+ tensorbored/plugins/distribution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ tensorbored/plugins/distribution/compressor.py,sha256=CzFAqTOiy-2MeiXPcwG1QiCmzbvO24kooB_CoeGfeaQ,5962
171
+ tensorbored/plugins/distribution/distributions_plugin.py,sha256=hveAcEU6ydbsVHNThkpuB2LnDGyZynbsJuutGpKjK64,4295
172
+ tensorbored/plugins/distribution/metadata.py,sha256=rko_Wm7avps2Jv-kcpna0B22-s0mSujhCca8BwtRoGM,855
173
+ tensorbored/plugins/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
+ tensorbored/plugins/graph/graph_util.py,sha256=2Dn6YKFBGwgvYrw6oJ0c1tFM-FTzU7oARXU1CrhX_pA,4791
175
+ tensorbored/plugins/graph/graphs_plugin.py,sha256=FQEBLhJVXjp5rUgM0VuCxylqAeh5DHUIrmXDnuBrTi8,12703
176
+ tensorbored/plugins/graph/keras_util.py,sha256=vhP7_TGlg6cdXmqHgSbQRWvRydw1yuiV_O7Tvk8C2p8,13228
177
+ tensorbored/plugins/graph/metadata.py,sha256=QU-6-rFavCWGTcAMU4Z0SdDsuSueAj1juplQVpeGPcg,2501
178
+ tensorbored/plugins/histogram/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
+ tensorbored/plugins/histogram/histograms_plugin.py,sha256=hsvVSYQK0XA93XOa-PM3yFlMTe-Yi9_FFHSAFgTKcjo,5474
180
+ tensorbored/plugins/histogram/metadata.py,sha256=_a7Z4_IvZS7oI_2BXh9YsKXhVU5ByiKuQCIYBZZq9aI,2287
181
+ tensorbored/plugins/histogram/plugin_data_pb2.py,sha256=rvhBP5caYqcKXCy11uYdhtRe09gURMI84jA7q_GKB64,1376
182
+ tensorbored/plugins/histogram/summary.py,sha256=9q9s7_uZQ1Vdh2T-m2PimRBivbvHDnRmKCdT4TGVC2M,9270
183
+ tensorbored/plugins/histogram/summary_v2.py,sha256=wUo62R6ZKuN3J6DIaMVpC0D8_4ON6Sk_b9GUf-YDxys,12856
184
+ tensorbored/plugins/hparams/__init__.py,sha256=nxhM3rvGukp5ZXNRrf2sIpdE6z0_03tR8ds56y_SVgs,689
185
+ tensorbored/plugins/hparams/_keras.py,sha256=t8lqOYoy6XOMyInwTpZWhVbfoW2yfzmZYUFcqBdN_4Q,3828
186
+ tensorbored/plugins/hparams/api.py,sha256=W24UdAm4Z_HuImZR2Do0KLrk2X5E9sa3vILfZjhrdec,4511
187
+ tensorbored/plugins/hparams/api_pb2.py,sha256=AwncFby7mGDpcJUSnijr7HZjKzZisOLPinPY51W8HNU,13975
188
+ tensorbored/plugins/hparams/backend_context.py,sha256=YsjUO3DEHwnKs2VNGLUiVU8IoJ7rzcq7EcpGJPA2aMY,23834
189
+ tensorbored/plugins/hparams/download_data.py,sha256=prQXJKPrrHAYIyfd628QVU2mnyIr53luFbWVzYT3Lss,5768
190
+ tensorbored/plugins/hparams/error.py,sha256=4DTSb9sb2nz_pCAOvkMeOOxiQ_3Lgu7-N9MdbcOH-h0,1057
191
+ tensorbored/plugins/hparams/get_experiment.py,sha256=TsWlnENziRC9l99qA4SAekrOVIFIneK0P80zKYZYN_Y,2550
192
+ tensorbored/plugins/hparams/hparams_plugin.py,sha256=5F3WD1TF0v6ox56RiydHJQ9DVrWuA7WV_FBkGf63n0E,7765
193
+ tensorbored/plugins/hparams/hparams_util_pb2.py,sha256=cCyMveTKlDmMuX72ZkrlA7-8t0dzEe5hx5IUkB3RhOk,3483
194
+ tensorbored/plugins/hparams/json_format_compat.py,sha256=zDuN8G7xSE1-LHNSNC6pUJD5BYy8b7mZB4lu3n5F8Qo,1352
195
+ tensorbored/plugins/hparams/list_metric_evals.py,sha256=oqr0B651BADI9rH8OHO5sydd3tU5U4eWejwdwcekHrs,2131
196
+ tensorbored/plugins/hparams/list_session_groups.py,sha256=crcZvIl9baPXGglIJBeCDcO2aZPHEOiHnH9MelYYReU,38964
197
+ tensorbored/plugins/hparams/metadata.py,sha256=Vh4oIj_hHp9a7H7QE8rZXv5KiGKjVjyAXHiBgamLP4M,4729
198
+ tensorbored/plugins/hparams/metrics.py,sha256=EVzOdbS8SLqRM8DvQOY9j-vwtPIJBCCGKS24SkzvFCM,1508
199
+ tensorbored/plugins/hparams/plugin_data_pb2.py,sha256=d0q7qbsPhyWSrbIY86dnZLcDiLkauGtWwZG_p8f1tvA,4124
200
+ tensorbored/plugins/hparams/summary.py,sha256=TsGWABwvgo20TE1uZ4sIdhF_tI-OpiEhFGm7golC0UM,8457
201
+ tensorbored/plugins/hparams/summary_v2.py,sha256=cBnE8x7zG9c53EPE77eewp7kdFL9Yo-7zFjbeZtFzJw,20208
202
+ tensorbored/plugins/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
+ tensorbored/plugins/image/images_plugin.py,sha256=ijDO8pySou3ZhmnxHpyhs_t584OLgDdl6sojySrdwwk,8625
204
+ tensorbored/plugins/image/metadata.py,sha256=yvLCuou6YR1a7Z6huduFWYenfPYFV0VaKva1Ya1rQYg,2209
205
+ tensorbored/plugins/image/plugin_data_pb2.py,sha256=3imZSlTpvzJfmmYekinsMgDdqBD4Ai9vnTsQkw7SRvI,1378
206
+ tensorbored/plugins/image/summary.py,sha256=czqfb_puekAONvuQJ8xL0ghKLZO2npikdjTvB5BBQRw,6041
207
+ tensorbored/plugins/image/summary_v2.py,sha256=ZLP-8da9hMnN4gZ1wrc2qTBIarXimU0SA2C8NWaCeKI,5753
208
+ tensorbored/plugins/mesh/__init__.py,sha256=nxhM3rvGukp5ZXNRrf2sIpdE6z0_03tR8ds56y_SVgs,689
209
+ tensorbored/plugins/mesh/mesh_plugin.py,sha256=yezRCWOEdVJBT7GMSM8xSpFxXemZvJgQuERpf6AzjZE,11217
210
+ tensorbored/plugins/mesh/metadata.py,sha256=9HPCs-L1c8AD_IO96D_JaY8rPA9uc_hkuQ1GAhuaYoE,5204
211
+ tensorbored/plugins/mesh/plugin_data_pb2.py,sha256=rdScjet4-gMe-wXQi-bR_jEeCkL7eZeYfBiyzQdEDmo,1896
212
+ tensorbored/plugins/mesh/summary.py,sha256=oGi2h9XQMCAIayrraE3hCu78JK8Yh3Xf316eLS2nYDQ,8160
213
+ tensorbored/plugins/mesh/summary_v2.py,sha256=MYXYCpDBtfgQ9nQtA3LtWYmu8qnVINxP2YEIhQhyEwg,7547
214
+ tensorbored/plugins/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ tensorbored/plugins/metrics/metadata.py,sha256=Yjyy1kYBZGAYoVIIgqcmkZXwGA6Q8f39EYmOM7zl8sw,770
216
+ tensorbored/plugins/metrics/metrics_plugin.py,sha256=vUCUC4aNyC8peO10nZ6rJhJCN3Aiq4M6sqIZn_bXHLA,22092
217
+ tensorbored/plugins/pr_curve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ tensorbored/plugins/pr_curve/metadata.py,sha256=DVY18dafGvgPVTqdYLmPsWrwShc5QU_ZIRjXBogKaXM,2634
219
+ tensorbored/plugins/pr_curve/plugin_data_pb2.py,sha256=tq_izDNTFAJH79v7JFYYDw5pICI0nxPoaFsFnrXoLWM,1394
220
+ tensorbored/plugins/pr_curve/pr_curves_plugin.py,sha256=t5HbzxN9eXVNFCodwBShpaPodV2mVvYF9XUVoY9sHDc,8987
221
+ tensorbored/plugins/pr_curve/summary.py,sha256=IIbZuaCS-iq-37mPrdGJyt0WlrouRXm9MUfXggvKk4c,22314
222
+ tensorbored/plugins/profile_redirect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ tensorbored/plugins/profile_redirect/profile_redirect_plugin.py,sha256=TxT13vL3JhuoBOlKjq7JPnRQziqJ0_Qde0tBj4fAwrY,1704
224
+ tensorbored/plugins/projector/__init__.py,sha256=disYKFvo3WhtuRHO0sjs-H5FOHu78yp2d8YJTyST1vY,2505
225
+ tensorbored/plugins/projector/metadata.py,sha256=ApDkUwNAtPSbY8UZi1L2YbJ3LICr15LDFuI3mxboFBo,1166
226
+ tensorbored/plugins/projector/projector_config_pb2.py,sha256=fyfT6LB_6xUPgSsWDS0U14Nn4Tulruk8stKSr8pXb3g,2885
227
+ tensorbored/plugins/projector/projector_plugin.py,sha256=6I_F9xO2XcOVLOuQgMX0S1IQO55XantqR228cfr3EZ4,29167
228
+ tensorbored/plugins/projector/tf_projector_plugin/index.js,sha256=Thi1jZVH-JkBRyP7dbSPSwGyKqP_bFiKN_MiRkKs9G8,988
229
+ tensorbored/plugins/projector/tf_projector_plugin/projector_binary.html,sha256=A8b55Af_y04_csU6sEhD8yadwlQifqCuVVL69Suwbvw,21320
230
+ tensorbored/plugins/projector/tf_projector_plugin/projector_binary.js,sha256=YrHlb3PMwQykwkUTlrLeFY6QHI5gAB68-q-OcFB2ZtE,1964321
231
+ tensorbored/plugins/scalar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
+ tensorbored/plugins/scalar/metadata.py,sha256=04ie1uW3d4VFgx9N5wpov7YBudrKiMCkyy8Da5kGexo,2117
233
+ tensorbored/plugins/scalar/plugin_data_pb2.py,sha256=4w3-bmUygYMod5BhQDWE_9O3yNMNq6iI3Wsbm-OwYnk,1336
234
+ tensorbored/plugins/scalar/scalars_plugin.py,sha256=BuS_QJYaB4xnseN6MBySR1jggD23e7lxlTjktJNWV_E,6763
235
+ tensorbored/plugins/scalar/summary.py,sha256=H0rBXWmNPFKq9Rp72_ahycT2C9NgXI5zkTQMboQUsSk,3996
236
+ tensorbored/plugins/scalar/summary_v2.py,sha256=Zcd88T5FPTswQ-tSvpA8oWfJm5TYVPUOsigbVJPfJzQ,4953
237
+ tensorbored/plugins/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ tensorbored/plugins/text/metadata.py,sha256=eMWUVc_c1h4RCpEoUGaHNJS_ah1eY12mKNQlANjTF_s,2239
239
+ tensorbored/plugins/text/plugin_data_pb2.py,sha256=yn8KMhWWZvGOtb6B4JGBrmtQnwQAiSsYawDvBIAD08g,1310
240
+ tensorbored/plugins/text/summary.py,sha256=Jz5SluystiOxFkbkK6bl2BjsTJU1Y6H73DQyTsDUODE,4438
241
+ tensorbored/plugins/text/summary_v2.py,sha256=O4DMObm_BN6DCle8nRsdp4o63o0PHV-U3pVZ4MV9Sb4,4932
242
+ tensorbored/plugins/text/text_plugin.py,sha256=ihNI21PZMPli3tVj9airMoUGCZcowjmNezeMy7TfeAY,10306
243
+ tensorbored/plugins/wit_redirect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
+ tensorbored/plugins/wit_redirect/wit_redirect_plugin.py,sha256=goPDB9pOR60Xb5CHB4VL8UAHHGbjigBqfzeOduG4ZPo,1681
245
+ tensorbored/summary/__init__.py,sha256=VobTji3wCPhaJdDJZmR4su8TK9GHFYIUeENIsoSkUeI,1347
246
+ tensorbored/summary/_output.py,sha256=Akb0iCUM0clTsMb378lboVGLlEAdR4HkswKmmDzpkaA,4335
247
+ tensorbored/summary/_writer.py,sha256=2in0wfHtJvugQWLy0K58q54y-OJbLjPDVCimljxgB4Y,3966
248
+ tensorbored/summary/v1.py,sha256=ysDe9GTeWHq_B069DG5BuuU2-547pVBgXrVRq2HZOfs,1968
249
+ tensorbored/summary/v2.py,sha256=vzFE2wL1lw5wQeHgOLJiN-db0ArHSw5TFDMGdSprthU,1219
250
+ tensorbored/summary/_tf/__init__.py,sha256=nxhM3rvGukp5ZXNRrf2sIpdE6z0_03tR8ds56y_SVgs,689
251
+ tensorbored/summary/_tf/summary/__init__.py,sha256=2NdXkMYUkPxe0bhiBnBC_Z7HtIZdZoekhj1sna2A4fw,7725
252
+ tensorbored/summary/writer/__init__.py,sha256=2aNRD1Kcp13VrOLgZlkxVZQDOtfzJ7G_IdsIOcyV8NY,608
253
+ tensorbored/summary/writer/event_file_writer.py,sha256=5KUJV3IG5Cc2EaIbEz5iscEq-hjYKMNsZogd8DeABqU,10625
254
+ tensorbored/summary/writer/record_writer.py,sha256=yIt7uUBfYPHzhmmhK_2GwPKBvHcruY-rIkABvNsh9lE,1722
255
+ tensorbored/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
+ tensorbored/util/encoder.py,sha256=Dv87lXQMsng9PD5IKd9-qO-1uUcx0kFJNnC2s_BtB1M,3818
257
+ tensorbored/util/grpc_util.py,sha256=5kCGq9iZujR028RN6atHxuVxfZTzM9ZgwOdHWYztLL0,11547
258
+ tensorbored/util/img_mime_type_detector.py,sha256=PaRW2_WKI8zHft0oNuDmbkhC0185rDmSDQT-ckhQU94,1312
259
+ tensorbored/util/io_util.py,sha256=pIc9fc5BkMJZIQziZvMx9JKTZh5thk7Ny8_RQmjNxgk,792
260
+ tensorbored/util/lazy_tensor_creator.py,sha256=CTmbjMH5GVE-vTpLEopnOEKzczbe8Rwhm7a7HTRWKeM,4483
261
+ tensorbored/util/op_evaluator.py,sha256=RFYr9MquXvSKKfD9_mVuTDYGUxVnsXRvhEAV_4ivuL4,3791
262
+ tensorbored/util/platform_util.py,sha256=5jr42kvi6GqRzFx6YponSDOFYg7_RL-DTlk6dDefNYM,798
263
+ tensorbored/util/tb_logging.py,sha256=LNfFN1qZqAoZd6OaBWE_L_bqOqA_i1m9xj8lIZGQ_G4,780
264
+ tensorbored/util/tensor_util.py,sha256=KfR_OMxxUjb8mp7yUH-x8CnEd0C8yxwHZ-vBQYDrdyE,21752
265
+ tensorbored/util/timing.py,sha256=DduPKf8izD47D-UJ6D3xlcLDqI5WTAXK2d3WDmb3Abg,3734
266
+ tensorbored-2.21.0rc1769983804.dist-info/licenses/LICENSE,sha256=1Y0t0nxgtnadUpTCqZlfVLWaaCju6MmbbODuxXOy-Rg,37111
267
+ tensorbored-2.21.0rc1769983804.dist-info/METADATA,sha256=Xo7nGp9mwL6KK2CVqYM9cPfpQ59EWLHrIMWZ0Hd6inE,1781
268
+ tensorbored-2.21.0rc1769983804.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
269
+ tensorbored-2.21.0rc1769983804.dist-info/entry_points.txt,sha256=WiMjmdrTDkZXBlZmKWt1Kz0FCymATWUZjyTHEW-v3LU,196
270
+ tensorbored-2.21.0rc1769983804.dist-info/top_level.txt,sha256=F6oc1TBDSM0Hq_5vyIWijSnNewbXEBnBMS15t2S1jaY,12
271
+ tensorbored-2.21.0rc1769983804.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,6 @@
1
+ [console_scripts]
2
+ tensorboard = tensorbored.main:run_main
3
+ tensorbored = tensorbored.main:run_main
4
+
5
+ [tensorbored_plugins]
6
+ projector = tensorbored.plugins.projector.projector_plugin:ProjectorPlugin