{"id":18248019,"url":"https://github.com/hourout/tensorview","last_synced_at":"2025-06-11T05:32:57.591Z","repository":{"id":57474197,"uuid":"191352049","full_name":"Hourout/tensorview","owner":"Hourout","description":"Dynamic visualization training service in Jupyter Notebook for Keras, tf.keras and others.","archived":false,"fork":false,"pushed_at":"2022-03-22T08:04:07.000Z","size":564,"stargazers_count":15,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-23T11:29:30.720Z","etag":null,"topics":["jupyter-notebook","keras","pytorch","tensorflow","visualization"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hourout.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-11T10:50:31.000Z","updated_at":"2024-03-20T01:11:18.000Z","dependencies_parsed_at":"2022-09-12T21:01:46.194Z","dependency_job_id":null,"html_url":"https://github.com/Hourout/tensorview","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hourout%2Ftensorview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hourout%2Ftensorview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hourout%2Ftensorview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hourout%2Ftensorview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hourout","download_url":"https://codeload.github.com/Hourout/tensorview/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hourout%2Ftensorview/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259207703,"owners_count":22821744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jupyter-notebook","keras","pytorch","tensorflow","visualization"],"created_at":"2024-11-05T09:35:17.331Z","updated_at":"2025-06-11T05:32:57.567Z","avatar_url":"https://github.com/Hourout.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://github.com/Hourout/tensorview/blob/master/image/tensorview.png)\n\nDynamic visualization training service in Jupyter Notebook for Keras, tf.keras and others.\n\n\n![PyPI version](https://img.shields.io/pypi/pyversions/tensorview.svg)\n![Github license](https://img.shields.io/github/license/Hourout/tensorview.svg)\n[![PyPI](https://img.shields.io/pypi/v/tensorview.svg)](https://pypi.python.org/pypi/tensorview)\n![PyPI format](https://img.shields.io/pypi/format/tensorview.svg)\n![downloads](https://img.shields.io/pypi/dm/tensorview.svg)\n\nTensorview is efficient visualization training packages of Keras, enabling the live visualization of loss function and metrics during training process.\n\nTensorview is process in the Jupyter Notebook, so we recommend Jupyter Notebook as Tensorview's developing environment.\n\n![](https://github.com/Hourout/beefly/blob/master/image/plot_metrics000.gif)\n\n| [API Document](https://github.com/Hourout/tensorview/blob/master/document/api.md) | [中文介绍](https://github.com/Hourout/tensorview/blob/master/document/Chinese.md) |\n\n## Installation\n\nTo install [this verson from PyPI](https://pypi.org/project/beefly/), type:\n\n```\npip install tensorview\n```\n\nTo get the newest one from this repo (note that we are in the alpha stage, so there may be frequent updates), type:\n\n```\npip install git+https://github.com/Hourout/tensorview.git\n```\n\n## Feature\n- Visualization of general machine learning training\n  - Support customizing the name of loss function and metric \n  - Support customizing the name of validation set\n  - Support displaying the result of training set and test set in the same plot\n  - Support setting maximum training number of iterations\n  - Support both batch way and epoch way to train\n  - Support visual plotting\n  - Support visual plotting in both batch way and epoch way periodically\n  \n- keras backend\n  - Support customizing the name of loss function and metric in epoch way\n  - Support customizing the name of validation set in epoch way\n  - Support displaying the result of training set and test set in the same plot in epoch way\n  - Support setting maximum training number of iterations in epoch way\n  - Support visual plotting in epoch way\n  - Support visual plotting in both batch way and epoch way periodically in epoch way\n  - Support customizing the name of loss function and metric in batch way\n  - Support customizing the name of validation set in batch way\n  - Support displaying the result of training set and test set in the same plot in batch way\n  - Support setting maximum training number of iterations in batch way\n  - Support visual plotting in batch way\n  - Support visual plotting in both batch way and epoch way periodically in batch way\n\n- layer visualize\n  - feature layer visualize\n  - weights visualize\n  - heatmaps visualize\n \n- model statistics\n\n- image visualize\n\n## Example\n\n[more example](https://github.com/Hourout/tensorview/blob/master/example/readme.md)\n\nusing tensorview\n\n```python\nimport tensorview as tv\n```\n\n- [tv.train.PlotMetrics()](https://github.com/Hourout/tensorview/blob/master/example/tv.train.plot_metrics.ipynb)\n- [tv.train.PlotMetricsOnBatch()](https://github.com/Hourout/tensorview/blob/master/example/PlotMetricsOnBatch.ipynb)\n- [tv.train.PlotMetricsOnEpoch()](https://github.com/Hourout/tensorview/blob/master/example/PlotMetricsOnEpoch.ipynb)\n- [tv.model.[..]](https://github.com/Hourout/tensorview/blob/master/example/model.ipynb)\n\n## Contact\nPlease contact me if you have any related questions or improvements.\n\n[WeChat](https://github.com/Hourout/tensorview/blob/master/image/hourout_wechat.jpg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhourout%2Ftensorview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhourout%2Ftensorview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhourout%2Ftensorview/lists"}