您好,请问如何修改yolox的例子,使其可以运行yolox_s模型。(感激不尽!)
|
|
|
/** |
|
* @brief update strides |
|
* this method gives users the flexibility to use other yolox models |
|
*/ |
|
void updateStrides(const std::vector<int>& strides) |
|
{ |
|
if (strides.empty()) { |
|
throw std::runtime_error("cannot update empty strides"); |
|
} |
|
m_strides = strides; |
|
} |
|
|
您好,请问如何修改yolox的例子,使其可以运行yolox_s模型。(感激不尽!)
onnx_runtime_cpp/examples/YoloX.hpp
Lines 47 to 59 in f3f40a0