yolo2dot

Crates.ioyolo2dot
lib.rsyolo2dot
version0.1.0
sourcesrc
created_at2023-05-17 05:00:59.886115
updated_at2023-05-17 05:00:59.886115
descriptionA visualizing tool to plot model architecture graph for YOLO .yaml files.
homepagehttps://github.com/jerry73204/yolo2dot.git
repositoryhttps://github.com/jerry73204/yolo2dot.git
max_upload_size
id866666
size878,489
(jerry73204)

documentation

https://docs.rs/yolo2dot

README

yolo2dot

A visualizing tool to plot model architecture graph for YOLO .yaml files.

Installation

This program can be installed using cargo from Rust toolchain. You can visit rustup.rs to install Rust toolchain.

cargo install yolo2dot

Usage

  1. Download the model description file yolov7.yaml from the yolov7 repository here.

  2. Run yolo2dot to create the .dot file.

yolo2dot yolov7.yaml yolov7.dot
  1. Generate the image file using GraphViz's dot command.
dot -Tjpg yolov7.dot > yolov7.jpg

Showreel

YOLOv7 for Training YOLOv7 for Deployment

License

This project is distributed under MIT license. Please check the LICENSE.txt file.

Commit count: 5

cargo fmt