Home
last modified time | relevance | path

Searched refs:scores (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/external/rknn-toolkit2/examples/darknet/yolov3_416x416/
H A Dyolov3_utils.py71 scores = box_class_scores[pos]
73 return boxes, classes, scores
75 def nms_boxes(boxes, scores): argument
91 order = scores.argsort()[::-1]
122 boxes, classes, scores = [], [], []
128 scores.append(s)
132 scores = np.concatenate(scores)
139 s = scores[inds]
152 scores = np.concatenate(nscores)
154 return boxes, classes, scores
[all …]
H A Dtest.py89 boxes, classes, scores = yolov3_post_process(input_data) variable
93 draw(image, boxes, scores, classes)
/OK3568_Linux_fs/external/rknn-toolkit2/examples/onnx/yolov5/
H A Dtest.py100 scores = (class_max_score* box_confidences)[_class_pos]
102 return boxes, classes, scores
105 def nms_boxes(boxes, scores): argument
121 order = scores.argsort()[::-1]
149 boxes, classes, scores = [], [], []
155 scores.append(s)
160 scores = np.concatenate(scores)
167 s = scores[inds]
180 scores = np.concatenate(nscores)
182 return boxes, classes, scores
[all …]
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/pgms/
H A Dindex.base1 # Baseline benchmark scores, used for calculating index results.
20 # The 2D baseline scores were derived from a test run on an HP Compaq nc8430
22 # common modern adaptor with 3D. The baseline scores here are then
38 # common modern adaptor with 3D. The baseline scores here are then
44 # but these baseline scores were added for convenience.
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/yolo/
H A DInferenceWrapper.java84 mDetectResults.scores = new float[OBJ_NUMB_MAX_SIZE]; in postProcess()
95 mDetectResults.ids, mDetectResults.scores, mDetectResults.boxes); in postProcess()
114 mDetectResults.scores[i], rect); in postProcess()
133 int[] ids, float[] scores, float[] boxes); in native_post_process() argument
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/
H A DREADME113 the worst 1/3 of the scores before averaging the remainder. The logic is
117 for a test run to see the discarded scores.
135 The "discard the worst scores" strategy should produce slightly higher
136 test scores, but at least they should (hopefully!) be more consistent.
137 The scores should not be higher than the best scores you would have got
243 the final index (the individual scores are a normalized, and their
248 of the index scores for a final score of 10.0.
260 understandably poor scores on CPU and FPU benchmarks (a horrible
276 what counts for me). The old code yielded wildly inflated read scores,
278 roughly 50% lower than normal copy scores than it should have.
[all …]
H A DUSAGE80 scores (see "The BYTE Index" below) the results for each category are
183 to the scores from a baseline system to produce an index value, which is
189 were set at 10.0. (So a system which scores 520 is 52 times faster than
192 sake of consistency it's probably best to leave it alone. George's scores
194 index scores for any particular run.
200 and should be born in mind when looking at old scores.
216 The graphics tests are in categories "2d" and "3d", so the index scores
311 in turn to get the results and times. The scores are added, and the times
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/
H A Dnative-lib.cc81 jfloatArray scores, in Java_com_rockchip_gpadc_demo_yolo_InferenceWrapper_native_1post_1process() argument
92 jfloat* const y1 = env->GetFloatArrayElements(scores, &outputCopy); in Java_com_rockchip_gpadc_demo_yolo_InferenceWrapper_native_1post_1process()
102 env->ReleaseFloatArrayElements(scores, y1, 0); in Java_com_rockchip_gpadc_demo_yolo_InferenceWrapper_native_1post_1process()
H A Dyolo_image.h20 int *ids, float *scores, float *boxes);
H A Dyolo_image.cc355 int *ids, float *scores, float *boxes) { in yolo_post_process() argument
374 memset(scores, 0, sizeof(float) * OBJ_NUMB_MAX_SIZE); in yolo_post_process()
380 scores[i] = detect_result_group.results[i].prop; in yolo_post_process()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/
H A Ddnn.hpp947 CV_EXPORTS_W void NMSBoxes(const std::vector<Rect>& bboxes, const std::vector<float>& scores,
952 CV_EXPORTS_W void NMSBoxes(const std::vector<Rect2d>& bboxes, const std::vector<float>& scores,
957 …xesRotated) void NMSBoxes(const std::vector<RotatedRect>& bboxes, const std::vector<float>& scores,
/OK3568_Linux_fs/buildroot/dl/unixbench/git/
H A DREADME.md7 scores from a baseline system to produce an index value, which is generally easier to handle than t…
27 …n, and Tom Yager. The tests compare Unix systems by comparing their results to a set of scores set
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/
H A DInferenceResult.java164 public float[] scores; field in InferenceResult.DetectResultGroup
/OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/share/
H A Duserdict.cpp1138 uint32 *scores = NULL; in _get_lpis() local
1172 scores = (uint32 *)malloc((dict_info.lemma_count + kUserDictPreAlloc) << 2); in _get_lpis()
1173 if (!scores) goto error; in _get_lpis()
1212 readed += fread((((uint8*)scores) + readed), 1, toread - readed, fp); in _get_lpis()
1239 scores_ = scores; in _get_lpis()
1260 if (scores) free(scores); in _get_lpis()
/OK3568_Linux_fs/kernel/net/ipv6/
H A Daddrconf.c1653 struct ipv6_saddr_score *scores, in __ipv6_dev_get_saddr() argument
1656 struct ipv6_saddr_score *score = &scores[1 - hiscore_idx], *hiscore = &scores[hiscore_idx]; in __ipv6_dev_get_saddr()
1726 struct ipv6_saddr_score *scores, in ipv6_get_saddr_master() argument
1734 scores, hiscore_idx); in ipv6_get_saddr_master()
1739 scores, hiscore_idx); in ipv6_get_saddr_master()
1748 struct ipv6_saddr_score scores[2], *hiscore; in ipv6_dev_get_saddr() local
1764 scores[hiscore_idx].rule = -1; in ipv6_dev_get_saddr()
1765 scores[hiscore_idx].ifa = NULL; in ipv6_dev_get_saddr()
1796 hiscore_idx = __ipv6_dev_get_saddr(net, &dst, idev, scores, hiscore_idx); in ipv6_dev_get_saddr()
1811 scores, hiscore_idx); in ipv6_dev_get_saddr()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/
H A Dlibc.info-124344 Thus, imagine a game program that saves scores in a file. The game
4347 game, they can give themselves any scores they like. Some people
4350 scores file, and make the file writable only by this user. Then, when
4353 persona of ‘games’ so it can write to the scores file.
4755 scores file. If it swaps the two uids, the real becomes ‘games’ and the
4758 access to the scores file.
4779 file ‘scores’ that should be writable only by the game program itself.
4781 setuid bit set and owned by the same user as the ‘scores’ file.
4792 The scores file is given mode ‘644’, and doing an ‘ls -l’ on it
4795 -rw-r--r-- 1 games 0 Jul 31 15:33 scores
[all …]
H A Dlibc.info-65144 might be a game that uses a file to keep track of high scores. Another
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/
H A Dlibc.info-124344 Thus, imagine a game program that saves scores in a file. The game
4347 game, they can give themselves any scores they like. Some people
4350 scores file, and make the file writable only by this user. Then, when
4353 persona of ‘games’ so it can write to the scores file.
4755 scores file. If it swaps the two uids, the real becomes ‘games’ and the
4758 access to the scores file.
4779 file ‘scores’ that should be writable only by the game program itself.
4781 setuid bit set and owned by the same user as the ‘scores’ file.
4792 The scores file is given mode ‘644’, and doing an ‘ls -l’ on it
4795 -rw-r--r-- 1 games 0 Jul 31 15:33 scores
[all …]
H A Dlibc.info-65144 might be a game that uses a file to keep track of high scores. Another
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgcc.info11764 scores that exceed 'ipa-cp-eval-threshold'.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dgcc.info11764 scores that exceed 'ipa-cp-eval-threshold'.
/OK3568_Linux_fs/external/xserver/
H A DChangeLog133338 glx: Inialize best_score before calculating visual scores
188902 scores get decreased by a fraction. When choosing a set of areas to