sedna icon indicating copy to clipboard operation
sedna copied to clipboard

Whether the hard example mining algorithm can be customized

Open tangming1996 opened this issue 2 years ago • 2 comments

kubectl create -f - <<EOF apiVersion: sedna.io/v1alpha1 kind: JointInferenceService metadata: name: helmet-detection-inference-example namespace: default spec: edgeWorker: model: name: "helmet-detection-inference-little-model" hardExampleMining: name: "IBT" parameters: - key: "threshold_img" value: "0.9" - key: "threshold_box" value: "0.9" template: spec: ... ...

Can the hardExampleMining field be customized, and if so, how do I configure it?

tangming1996 avatar Nov 20 '23 11:11 tangming1996

Same question of you Actually, I don't know the so-called "IBT" hard-example-mining algorithm Can anyone hit me?

Louisxxr avatar Aug 08 '24 13:08 Louisxxr

One can replace algorithms by first registering in the ClassFactory and then updating the yaml. An example for a similar purpose is provided in ianvs for your reference. In the ianvs example, the yaml name (algorithm.yaml) is not the same as Sedna, but the overall idea is consistent.

MooreZheng avatar Oct 28 '24 03:10 MooreZheng