tensorboardX


NametensorboardX JSON
Version 2.6.2.2 PyPI version JSON
download
home_pagehttps://github.com/lanpa/tensorboardX
SummaryTensorBoardX lets you watch Tensors Flow without Tensorflow
upload_time2023-08-20 13:38:20
maintainer
docs_urlNone
authorTzu-Wei Huang
requires_python
licenseMIT license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            History
=======
2.6.2.1 (2023-08-20)
---------------------
* Added protobuf's lower bound version (>=3.20)

2.6.2 (2023-07-30)
-------------------
* Removed version limit for protobuf

2.6.1 (2023-06-18)
-------------------
* Expose use_strict_trace parameter in add_graph (#694)
* Upgrade to protobuf 4
* Fix git based package versioning
* Fix GCS Connection Error #606 (#686)

2.6 (2023-02-12)
-------------------
* Fixed several deprecation warnings
* Update dependencies

2.5.1 (2022-06-05)
-------------------
* Enforce protobuf's version upper bound

2.5 (2022-02-22)
-----------------
* Fix deprecation warnings
* Comet integration improvements (#658)

2.4.1 (2021-11-20)
-------------------
* Fix a comet plugin bug if writer is reused. (#639)

2.4 (2021-06-30)
-----------------
* Remove a dependency issue. (#631)

2.3 (2021-06-20)
-----------------
* Support logging to comet.ml simutaneously.

2.2 (2021-04-03)
-----------------
* Support for type hints.
* Dropped Python 2 support.
* Bug fixes, see the commit log in Github.

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.

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

1.9 (2019-10-04)
-----------------
* 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

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.

1.7 (2019-05-19)
-----------------
* 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


1.6 (2019-01-02)
-----------------
* 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.

1.5 (2018-12-10)
-----------------
* Add API for Custom scalar
* Add support for logging directly to S3
* Add support for Caffe2 graph
* Pytorch 1.0.0 JIT graph support (alpha-release)

1.4 (2018-08-09)
-----------------
* Made add_text compatible with tensorboard>1.6
* Fix the issue of strange histogram if default binning method is used
* Supports passing matplotlib figures to add_image()
* Resolve namespace confliction with TF tensorboard
* add_image_boxes function
* Supports custom timestamp for event

1.2 (2018-04-21)
-----------------
* Supports tensorshape information in graph visualization. Drop support for 0.3.1
* Adds add_video function

1.1 (2018-02-21)
-----------------
* Supports pytorch 0.3.1 (hacky)

1.0 (2018-01-18)
-----------------
* Supports graph (the pretty one)

0.9 (2017-11-11)
-----------------
* Supports markdown for add_text function
* It's ready to log precision recall curve (needs tensorboard>=0.4)
* Adds context manager for the SummaryWriter class

0.8 (2017-09-25)
-----------------
* Package name renamed to tensorboardX to fix namespace confliction with tensorflow's tensorboard
* Supports multi-scalars and JSON export
* Multiple Embeddings in One Experiment 
* Supports Chainer and mxnet

0.7 (2017-08-22)
-----------------
* remove tensorflow dependency for embedding function
* fixed incorrect image<->label pairing in embedding function (#12)
* unifies API call and adds docstring. Documentation is available at: http://tensorboard-pytorch.readthedocs.io/

0.6.5 (2017-07-30)
------------------
* add travis test (py2.7, py3.6)
* add support for python2 (in PyPI)

0.6 (2017-07-18)
-----------------
* supports embedding

0.5 (2017-07-18)
-----------------
* supports graph summary
* fixed np.histogram issue

0.4 (2017-07-12)
-----------------
* supports text summary

0.3 (2017-07-03)
-----------------
* supports audio summary

0.2 (2017-06-24)
-----------------
* simplifies add_image API
* speed up add_histogram API by 35x


0.1 (2017-06-13)
------------------
* First commit. Reference:

https://github.com/TeamHG-Memex/tensorboard_logger
https://github.com/dmlc/tensorboard



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lanpa/tensorboardX",
    "name": "tensorboardX",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Tzu-Wei Huang",
    "author_email": "huang.dexter@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/02/9b/c2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6/tensorboardX-2.6.2.2.tar.gz",
    "platform": null,
    "description": "History\n=======\n2.6.2.1 (2023-08-20)\n---------------------\n* Added protobuf's lower bound version (>=3.20)\n\n2.6.2 (2023-07-30)\n-------------------\n* Removed version limit for protobuf\n\n2.6.1 (2023-06-18)\n-------------------\n* Expose use_strict_trace parameter in add_graph (#694)\n* Upgrade to protobuf 4\n* Fix git based package versioning\n* Fix GCS Connection Error #606 (#686)\n\n2.6 (2023-02-12)\n-------------------\n* Fixed several deprecation warnings\n* Update dependencies\n\n2.5.1 (2022-06-05)\n-------------------\n* Enforce protobuf's version upper bound\n\n2.5 (2022-02-22)\n-----------------\n* Fix deprecation warnings\n* Comet integration improvements (#658)\n\n2.4.1 (2021-11-20)\n-------------------\n* Fix a comet plugin bug if writer is reused. (#639)\n\n2.4 (2021-06-30)\n-----------------\n* Remove a dependency issue. (#631)\n\n2.3 (2021-06-20)\n-----------------\n* Support logging to comet.ml simutaneously.\n\n2.2 (2021-04-03)\n-----------------\n* Support for type hints.\n* Dropped Python 2 support.\n* Bug fixes, see the commit log in Github.\n\n2.1 (2020-07-05)\n-----------------\n* Global SummaryWriter that mimics python's default logger class, concurrent write is supported.\n* 200x speed up for add_audio. Please install the soundfile package for this feature.\n* Supports jax tensors.\n* The add_graph function is delegated to the one in torch.utils.tensorboard.\n* Bug fixes, see the commit log in Github.\n\n2.0 (2019-12-31)\n-----------------\n* Now you can tag Hparams trials with custom name instead of the default epoch time\n* Fixed a bug that add_hparams are rendered incorrectly with non-string values\n* Supports logging to Amazon S3 or Google Cloud Storage\n* Bug fixes and error message for add_embedding function\n* Draw openvino format with add_openvino_graph\n\n1.9 (2019-10-04)\n-----------------\n* Use new JIT backend for pytorch. This works better with pytorch 1.2 and 1.3\n* Supports hparams plugin\n* add_embedding now supports numpy array input\n\n1.8 (2019-07-05)\n-----------------\n* Draw label text on image with bounding box provided.\n* crc32c speed up (optional by installing crc32c manually)\n* Rewrite add_graph. onnx backend is replaced by JIT to support more advanced structure.\n* Now you can add_mesh() to visualize colorful point cloud or meshes.\n\n1.7 (2019-05-19)\n-----------------\n* Able to write to S3\n* Fixed raw histogram issue that nothing is shown in TensorBoard\n* Users can use various image/video dimension permutation by passing 'dataformats' parameter.\n* You can bybass the writer by passing write_to_disk=True to SummaryWriter\n\n\n1.6 (2019-01-02)\n-----------------\n* Many graph related bug is fixed in this version.\n* New function: add_images(). This function accepts 4D iamge tensor. See documentation.\n* Make add_image_with_boxes() usable.\n* API change: add_video now accepts BxTxCxHxW instead of BxCxTxHxW tensor.\n\n1.5 (2018-12-10)\n-----------------\n* Add API for Custom scalar\n* Add support for logging directly to S3\n* Add support for Caffe2 graph\n* Pytorch 1.0.0 JIT graph support (alpha-release)\n\n1.4 (2018-08-09)\n-----------------\n* Made add_text compatible with tensorboard>1.6\n* Fix the issue of strange histogram if default binning method is used\n* Supports passing matplotlib figures to add_image()\n* Resolve namespace confliction with TF tensorboard\n* add_image_boxes function\n* Supports custom timestamp for event\n\n1.2 (2018-04-21)\n-----------------\n* Supports tensorshape information in graph visualization. Drop support for 0.3.1\n* Adds add_video function\n\n1.1 (2018-02-21)\n-----------------\n* Supports pytorch 0.3.1 (hacky)\n\n1.0 (2018-01-18)\n-----------------\n* Supports graph (the pretty one)\n\n0.9 (2017-11-11)\n-----------------\n* Supports markdown for add_text function\n* It's ready to log precision recall curve (needs tensorboard>=0.4)\n* Adds context manager for the SummaryWriter class\n\n0.8 (2017-09-25)\n-----------------\n* Package name renamed to tensorboardX to fix namespace confliction with tensorflow's tensorboard\n* Supports multi-scalars and JSON export\n* Multiple Embeddings in One Experiment \n* Supports Chainer and mxnet\n\n0.7 (2017-08-22)\n-----------------\n* remove tensorflow dependency for embedding function\n* fixed incorrect image<->label pairing in embedding function (#12)\n* unifies API call and adds docstring. Documentation is available at: http://tensorboard-pytorch.readthedocs.io/\n\n0.6.5 (2017-07-30)\n------------------\n* add travis test (py2.7, py3.6)\n* add support for python2 (in PyPI)\n\n0.6 (2017-07-18)\n-----------------\n* supports embedding\n\n0.5 (2017-07-18)\n-----------------\n* supports graph summary\n* fixed np.histogram issue\n\n0.4 (2017-07-12)\n-----------------\n* supports text summary\n\n0.3 (2017-07-03)\n-----------------\n* supports audio summary\n\n0.2 (2017-06-24)\n-----------------\n* simplifies add_image API\n* speed up add_histogram API by 35x\n\n\n0.1 (2017-06-13)\n------------------\n* First commit. Reference:\n\nhttps://github.com/TeamHG-Memex/tensorboard_logger\nhttps://github.com/dmlc/tensorboard\n\n\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "TensorBoardX lets you watch Tensors Flow without Tensorflow",
    "version": "2.6.2.2",
    "project_urls": {
        "Homepage": "https://github.com/lanpa/tensorboardX"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4471f3e7c9b2ab67e28c572ab4e9d5fa3499e0d252650f96d8a3a03e26677f53",
                "md5": "b3386ea992d41b0718649736aedbe2d2",
                "sha256": "160025acbf759ede23fd3526ae9d9bfbfd8b68eb16c38a010ebe326dc6395db8"
            },
            "downloads": -1,
            "filename": "tensorboardX-2.6.2.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b3386ea992d41b0718649736aedbe2d2",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 101700,
            "upload_time": "2023-08-20T13:38:18",
            "upload_time_iso_8601": "2023-08-20T13:38:18.089811Z",
            "url": "https://files.pythonhosted.org/packages/44/71/f3e7c9b2ab67e28c572ab4e9d5fa3499e0d252650f96d8a3a03e26677f53/tensorboardX-2.6.2.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "029bc2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6",
                "md5": "5bc8af1912dffdcfdd768e576e4d2e0e",
                "sha256": "c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666"
            },
            "downloads": -1,
            "filename": "tensorboardX-2.6.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5bc8af1912dffdcfdd768e576e4d2e0e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4778030,
            "upload_time": "2023-08-20T13:38:20",
            "upload_time_iso_8601": "2023-08-20T13:38:20.658027Z",
            "url": "https://files.pythonhosted.org/packages/02/9b/c2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6/tensorboardX-2.6.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-20 13:38:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lanpa",
    "github_project": "tensorboardX",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tensorboardx"
}
        
Elapsed time: 0.20618s