You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.. | ||
caffe | 3 years ago | |
darknet/yolov3_416x416 | 3 years ago | |
functions | 2 years ago | |
onnx | 2 years ago | |
pytorch | 2 years ago | |
tensorflow | 2 years ago | |
tflite | 2 years ago | |
readme.txt | 2 years ago |
readme.txt
The directory structure of examples is as follows: . ├── caffe │ ├── mobilenet_v2 # mobilenet_v2 float model │ └── vgg-ssd # vgg-ssd float model ├── onnx │ ├── resnet50v2 # resnet50v2 float model │ └── yolov5 # yolov5 float model ├── pytorch │ ├── resnet18 # resnet18 float model │ ├── resnet18_qat # resnet18 QAT model │ └── resnet18_export_onnx # how to export onnx model from pytorch ├── tensorflow │ ├── ssd_mobilenet_v1 # ssd_mobilenet_v1 float model │ └── inception_v3_qat # inception_v3 QAT model ├── tflite │ ├── mobilenet_v1 # mobilenet_v1 float model │ └── mobilenet_v1_qat # mobilenet_v1 QAT model ├── darknet │ └── yolov3_416x416 # yolov3 float model └── functions ├── accuracy_analysis # how to use accuracy-analysis function ├── batch_size # how to expand batch for use multi-batch function ├── multi_input_test # multi-input float model ├── hybrid_quant # how to use hybrid-quantization function ├── mmse # how to use mmse function ├── model_pruning # how to use model_pruning function ├── dynamic_input # how to use dynamic_input function └── board_test # how to connect the board for debugging