Skip to content

Releases: lanpa/tensorboardX

Release v2.5

05 Jun 10:13
2c37207
Compare
Choose a tag to compare
Dependency cleanup (#666) fixes #663

* fix dependency issues

* remove py36 test

Release v2.4

09 Jul 12:36
Compare
Choose a tag to compare

Remove a dependency issue caused by v2.3. (#631)

Release v2.3

09 Jul 12:35
Compare
Choose a tag to compare

2.3 (2021-06-20)

  • Support logging to comet.ml simutaneously.

Release v2.2

25 Apr 09:18
Compare
Choose a tag to compare
  • Support for type hints.
  • Dropped Python 2 support.
  • Bug fixes, see the commit log in Github.

Release v2.1

05 Jul 17:52
Compare
Choose a tag to compare

2.1 (2020-07-05)

  • Global SummaryWriter that mimics python's default logger class, concurrent write is supported.
  • 200x speed up for add_audio. Please install the soundfile package for this feature.
  • Supports jax tensors.
  • The add_graph function is delegated to the one in torch.utils.tensorboard.
  • Bug fixes, see the commit log in Github.

Release v2.0

05 Jul 17:54
Compare
Choose a tag to compare

2.0 (2019-12-31)

  • Now you can tag Hparams trials with custom name instead of the default epoch time
  • Fixed a bug that add_hparams are rendered incorrectly with non-string values
  • Supports logging to Amazon S3 or Google Cloud Storage
  • Bug fixes and error message for add_embedding function
  • Draw openvino format with add_openvino_graph

Release v1.9

09 Oct 01:02
Compare
Choose a tag to compare
  • Use new JIT backend for pytorch. This works better with pytorch 1.2 and 1.3
  • Supports hparams plugin
  • add_embedding now supports numpy array input

release v1.8

04 Jul 18:44
Compare
Choose a tag to compare

1.8 (2019-07-05)

  • Draw label text on image with bounding box provided.
  • crc32c speed up (optional by installing crc32c manually)
  • Rewrite add_graph. onnx backend is replaced by JIT to support more advanced structure.
  • Now you can add_mesh() to visualize colorful point cloud or meshes.

release v1.7

20 May 00:32
4601dc9
Compare
Choose a tag to compare
  • Able to write to S3
  • Fixed raw histogram issue that nothing is shown in TensorBoard
  • Users can use various image/video dimension permutation by passing 'dataformats' parameter.
  • You can bybass the writer by passing write_to_disk=True to SummaryWriter.
  • Fix bugs

[update Jun.21 2019]
important notice

SummaryWriter's initializer's paremeter: log_dir was accidently changed to logdir. This makes some code not backward compatible.
The unit tests doesn't cover that so It just got merged and be part of v1.7.

release v1.6

04 Apr 11:53
Compare
Choose a tag to compare
  • Many graph related bug is fixed in this version.
  • New function: add_images(). This function accepts 4D iamge tensor. See documentation.
  • Make add_image_with_boxes() usable.
  • API change: add_video now accepts BxTxCxHxW instead of BxCxTxHxW tensor.