您好,登錄后才能下訂單哦!
本篇內容主要講解“C++ ncnn模型驗證精度如何實現”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++ ncnn模型驗證精度如何實現”吧!
得到ncnn模型的順序為:.pth–>.onnx–>ncnn
.pth的精度驗證如下:
如進行的是二分類:
model = init_model(model, data_cfg, device=device, mode='eval') ###.pth轉.onnx模型 # #--- # input_names = ["x"] # output_names = ["y"] # inp = torch.randn(1, 3, 256, 128) ##錯誤示例 inp = np.full((1, 3, 160, 320), 0.5).astype(np.float) #(160,320) = (h,w) inp = torch.FloatTensor(inp) out = model(inp) print(out)
沒有經過softmax層,out輸出為±1的兩個值。
sess = onnxruntime.InferenceSession("G:\\pycharm_pytorch271\\pytorch_classification\\main\\sim.onnx", providers=["CUDAExecutionProvider"]) # use gpu input_name = sess.get_inputs()[0].name print("input_name: ", input_name) output_name = sess.get_outputs()[0].name print("output_name: ", output_name) # test_images = torch.rand([1, 3, 256, 128]) test_images = np.full((1, 3, 160, 320), 0.5).astype(np.float) #(160,320) = (h,w) test_images = torch.FloatTensor(test_images) print("test_image", test_images) prediction = sess.run([output_name], {input_name: test_images.numpy()}) print(prediction)
首先保證mean、norm輸出的值與onnx保持一致,因為onnx直接輸入值0.5,ncnn模型經過mean、norm計算后的結果與0.5一致就行。
然后就是ncnn模型的計算輸出
- 查看輸出結果是否是0.5,首先得將輸入值1給到img
```cpp constexpr int w = 320; constexpr int h = 160; float cbuf[h][w]; cv::Mat img(h, w, CV_8UC3,(float *)cbuf); //BYTE* iPtr = new BYTE[128 * 256 * 3]; BYTE* iPtr = new BYTE[h * w * 3]; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { for (int k = 0; k < 3; k++) { //iPtr[i * 256 * 3 + j * 3 + k] = img.at<cv::Vec3f>(i, j)[k]; img.at<cv::Vec3b>(i, j)[k] = 1; } } } ``` - 經過上面的賦值,通過了mean、norm計算后,得到的結果進行查看,值為0.5則正確轉換。得到的結果送入下面的代碼進行輸出。 ncnn結果為mat,因此采用該方法進行遍歷查看。 ```cpp //輸出ncnn mat void ncnn_mat_print(const ncnn::Mat& m) { for (int q = 0; q < m.c; q++) { const float* ptr = m.channel(q); for (int y = 0; y < m.h; y++) { for (int x = 0; x < m.w; x++) { printf("%f ", ptr[x]); } ptr += m.w; printf("\n"); } printf("------------------------\n"); } } ``` 將mat給到模型進行推理得到結果。
一般情況下,pth模型與onnx模型結果相差不大,ncnn會有點點損失,千分位上的損失,這樣精度基本上是一致的。
若不一致,看哪一步結果相差太大,如果是ncnn這一步相差太大,檢查是否是值輸入有問題,或者是輸入的(h,w)弄反了。
到此,相信大家對“C++ ncnn模型驗證精度如何實現”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。