From eb18d2783e013cba1fc8daed4c3239ecc3da3010 Mon Sep 17 00:00:00 2001 From: zhiqwang Date: Sat, 21 Nov 2020 01:25:45 -0500 Subject: [PATCH] Update README and Rename jupyter notebook --- README.md | 12 +++++++++--- ...ipynb => inference-pytorch-export-libtorch.ipynb} | 0 2 files changed, 9 insertions(+), 3 deletions(-) rename notebooks/{inference-on-pytorch-libtorch.ipynb => inference-pytorch-export-libtorch.ipynb} (100%) diff --git a/README.md b/README.md index d2a30ccc..935836a8 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ python -m utils.updated_checkpoint [--checkpoint_path ./yolov5s.pt] [--updated_checkpoint_path ./checkpoints/yolov5/yolov5s.pt] ``` -### ✨ PyTorch interface +### ✨ `PyTorch` Interface -The `detect.py` reads a image source and does inference. +The `detect.py` reads a image source and does inference, you can also check for the more details in [inference-pytorch-export-libtorch](notebooks/inference-pytorch-export-libtorch.ipynb) notebook. ```bash python -m detect [--model_cfg ./models/yolov5s.yaml] @@ -43,10 +43,16 @@ python -m detect [--model_cfg ./models/yolov5s.yaml] [--gpu] # GPU switch, Set False as default ``` -### 🚀 LibTorch interface +### 🚀 `LibTorch` Interface Here providing an [example](./deployment) of getting `LibTorch` inferencing to work. Also you can check the [CI](.github/workflows/stable.yml) for more details. +### ✏️ Model Visualization + +Now, `yolov5-rt-stack` can draw the model graph directly, check for more details in [visualize-jit-models](notebooks/visualize-jit-models.ipynb) notebook. + +YOLO model visualize + ## 🎓 Acknowledgement - The implementation of `yolov5` borrow the code from [ultralytics](https://github.com/ultralytics/yolov5). diff --git a/notebooks/inference-on-pytorch-libtorch.ipynb b/notebooks/inference-pytorch-export-libtorch.ipynb similarity index 100% rename from notebooks/inference-on-pytorch-libtorch.ipynb rename to notebooks/inference-pytorch-export-libtorch.ipynb