gitextract_40nonxya/ ├── .codecov.yml ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature-requests-or-general-questions.md │ └── workflows/ │ ├── build-wheel.yml │ ├── publish-pypi.yml │ └── test-matrix.yml ├── .gitignore ├── .readthedocs.yaml ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── compile.sh ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── requirements.txt │ ├── tensorboard.rst │ ├── tutorial.rst │ ├── tutorial_zh.rst │ └── utils.rst ├── examples/ │ ├── RUN_AFTER_PIP_INSTALL │ ├── __init__.py │ ├── chainer/ │ │ ├── extension_logger/ │ │ │ ├── net.py │ │ │ ├── train_dcgan.py │ │ │ ├── updater.py │ │ │ ├── visualize.py │ │ │ └── writetensorboard.py │ │ └── plain_logger/ │ │ ├── data.py │ │ ├── net.py │ │ └── train_vae.py │ ├── create_wit_samples.py │ ├── demo.py │ ├── demo_beholder.py │ ├── demo_comet.py │ ├── demo_custom_scalars.py │ ├── demo_embedding.py │ ├── demo_global_writer.py │ ├── demo_graph.py │ ├── demo_hogwild.py │ ├── demo_hparams.py │ ├── demo_matplotlib.py │ ├── demo_mesh.py │ ├── demo_multiple_embedding.py │ ├── demo_multiprocessing.py │ ├── demo_nvidia_smi.py │ ├── demo_onnx.py │ ├── demo_openvino.py │ ├── demo_purge.py │ ├── global_1.py │ ├── global_2.py │ ├── mobilenetv2.xml │ └── processed.cleveland.data ├── pyproject.toml ├── run_pytest.sh ├── tensorboardX/ │ ├── __init__.py │ ├── comet_utils.py │ ├── crc32c.py │ ├── embedding.py │ ├── event_file_writer.py │ ├── global_writer.py │ ├── onnx_graph.py │ ├── openvino_graph.py │ ├── proto/ │ │ ├── __init__.py │ │ ├── api.proto │ │ ├── api_pb2.py │ │ ├── attr_value.proto │ │ ├── attr_value_pb2.py │ │ ├── event.proto │ │ ├── event_pb2.py │ │ ├── graph.proto │ │ ├── graph_pb2.py │ │ ├── layout.proto │ │ ├── layout_pb2.py │ │ ├── node_def.proto │ │ ├── node_def_pb2.py │ │ ├── plugin_hparams.proto │ │ ├── plugin_hparams_pb2.py │ │ ├── plugin_mesh.proto │ │ ├── plugin_mesh_pb2.py │ │ ├── plugin_pr_curve.proto │ │ ├── plugin_pr_curve_pb2.py │ │ ├── plugin_text.proto │ │ ├── plugin_text_pb2.py │ │ ├── resource_handle.proto │ │ ├── resource_handle_pb2.py │ │ ├── summary.proto │ │ ├── summary_pb2.py │ │ ├── tensor.proto │ │ ├── tensor_pb2.py │ │ ├── tensor_shape.proto │ │ ├── tensor_shape_pb2.py │ │ ├── types.proto │ │ ├── types_pb2.py │ │ ├── versions.proto │ │ └── versions_pb2.py │ ├── record_writer.py │ ├── summary.py │ ├── torchvis.py │ ├── utils.py │ ├── visdom_writer.py │ ├── writer.py │ └── x2num.py ├── test-requirements.txt └── tests/ ├── __init__.py ├── event_file_writer_test.py ├── expect/ │ ├── caffe_mnist.expect │ ├── caffe_overfeat.expect │ ├── test_caffe2.test_simple_cnnmodel.expect │ ├── test_caffe2.test_simple_model.expect │ ├── test_pr_curve.test_pr_purve.expect │ ├── test_pr_curve.test_pr_purve_raw.expect │ ├── test_summary.test_audio.expect │ ├── test_summary.test_custom_scalars.expect │ ├── test_summary.test_float32_image.expect │ ├── test_summary.test_histogram_auto.expect │ ├── test_summary.test_histogram_doane.expect │ ├── test_summary.test_histogram_fd.expect │ ├── test_summary.test_hparams.expect │ ├── test_summary.test_hparams_bool.expect │ ├── test_summary.test_hparams_string.expect │ ├── test_summary.test_image_with_3_channel_batched.expect │ ├── test_summary.test_image_with_boxes.expect │ ├── test_summary.test_image_with_four_channel.expect │ ├── test_summary.test_image_with_four_channel_batched.expect │ ├── test_summary.test_image_with_one_channel.expect │ ├── test_summary.test_image_with_one_channel_batched.expect │ ├── test_summary.test_image_without_channel.expect │ ├── test_summary.test_mesh.expect │ ├── test_summary.test_text.expect │ ├── test_summary.test_uint8_image.expect │ └── test_summary.test_video.expect ├── expect_reader.py ├── mnist-8.onnx ├── record_writer_test.py ├── test_chainer_np.py ├── test_crc32c.py ├── test_embedding.py ├── test_figure.py ├── test_hparams.py ├── test_lint.py ├── test_multiprocess_write.py ├── test_numpy.py ├── test_onnx_graph.py ├── test_openvino_graph.py ├── test_pr_curve.py ├── test_pytorch_graph.py ├── test_pytorch_np.py ├── test_record_writer.py ├── test_summary.py ├── test_summary_writer.py ├── test_utils.py ├── test_visdom.py └── test_writer.py