├── .gitignore ├── HISTORY.rst ├── LICENSE ├── Makefile ├── README.md ├── c2board ├── __init__.py ├── crc32c.py ├── event_file_writer.py ├── graph.py ├── src │ ├── __init__.py │ ├── attr_value.proto │ ├── event.proto │ ├── graph.proto │ ├── node_def.proto │ ├── resource_handle.proto │ ├── summary.proto │ ├── tensor.proto │ ├── tensor_shape.proto │ ├── types.proto │ └── versions.proto ├── summary.py ├── writer.py └── x2num.py ├── demos └── demo_graph.py ├── screenshots ├── all.gif ├── distributions.png ├── graphs.png ├── histograms.png ├── images.png └── scalars.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/README.md -------------------------------------------------------------------------------- /c2board/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c2board/crc32c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/crc32c.py -------------------------------------------------------------------------------- /c2board/event_file_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/event_file_writer.py -------------------------------------------------------------------------------- /c2board/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/graph.py -------------------------------------------------------------------------------- /c2board/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c2board/src/attr_value.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/attr_value.proto -------------------------------------------------------------------------------- /c2board/src/event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/event.proto -------------------------------------------------------------------------------- /c2board/src/graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/graph.proto -------------------------------------------------------------------------------- /c2board/src/node_def.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/node_def.proto -------------------------------------------------------------------------------- /c2board/src/resource_handle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/resource_handle.proto -------------------------------------------------------------------------------- /c2board/src/summary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/summary.proto -------------------------------------------------------------------------------- /c2board/src/tensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/tensor.proto -------------------------------------------------------------------------------- /c2board/src/tensor_shape.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/tensor_shape.proto -------------------------------------------------------------------------------- /c2board/src/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/types.proto -------------------------------------------------------------------------------- /c2board/src/versions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/src/versions.proto -------------------------------------------------------------------------------- /c2board/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/summary.py -------------------------------------------------------------------------------- /c2board/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/writer.py -------------------------------------------------------------------------------- /c2board/x2num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/c2board/x2num.py -------------------------------------------------------------------------------- /demos/demo_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/demos/demo_graph.py -------------------------------------------------------------------------------- /screenshots/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/all.gif -------------------------------------------------------------------------------- /screenshots/distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/distributions.png -------------------------------------------------------------------------------- /screenshots/graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/graphs.png -------------------------------------------------------------------------------- /screenshots/histograms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/histograms.png -------------------------------------------------------------------------------- /screenshots/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/images.png -------------------------------------------------------------------------------- /screenshots/scalars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/screenshots/scalars.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endernewton/c2board/HEAD/setup.py --------------------------------------------------------------------------------