Skip to content

Commit

Permalink
tweak OCP defaults (#139)
Browse files Browse the repository at this point in the history
default to keyword matching instead of using the new classifier (companion to OpenVoiceOS/ovos-core#502)

reduce min_score from 50 to 40 so more results are considered
  • Loading branch information
JarbasAl authored Jul 11, 2024
1 parent fd1d87d commit 8266e01
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,17 @@
},

"OCP": {
// enable usage of a pretrained classifier for MediaType matching
// if disabled a simple .voc match is used
// NOTE: classifiers currently are english only
"experimental_media_classifier": false,
"experimental_binary_classifier": false,
// legacy forces old audio service instead of OCP
"legacy": false,
// min confidence (0.0 - 1.0) to accept MediaType
"classifier_threshold": 0.4,
// min conf for each result (0 - 100)
"min_score": 50,
"min_score": 40,
// filter results from "wrong" MediaType
"filter_media": true,
// filter results we lack plugins to play
Expand Down

0 comments on commit 8266e01

Please sign in to comment.