Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piotrpersona/cviz
Classification vizualization
https://github.com/piotrpersona/cviz
cli cnn-classification visualization
Last synced: about 2 months ago
JSON representation
Classification vizualization
- Host: GitHub
- URL: https://github.com/piotrpersona/cviz
- Owner: piotrpersona
- License: mit
- Created: 2024-09-11T13:34:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T22:42:35.000Z (about 2 months ago)
- Last Synced: 2024-11-08T23:26:21.385Z (about 2 months ago)
- Topics: cli, cnn-classification, visualization
- Language: HTML
- Homepage:
- Size: 10.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cviz
Visualization tool, designed for image classification.
It generates HTML from JSON and opens a web browser.![Video thumbnail](./media/thumbnail.png)
## Install
```sh
go install github.com/piotrpersona/cviz@latest
```## Usage
```sh
cviz input.json
```JSON must be in format:
```json
{
"classes": [
"peacock",
"bird",
"sunflower"
],
"objects": [
{
"filePath": "/path/to/peacock.jpeg",
"class": 0,
"scores": [
0.97,
0.02,
0.01
]
}
]
}
```Example in [./examples](./examples).
## Manual
- Left/Right - navigation
- 1 - limit 10
- 2 - limit 20
- 5 - limit 5