Changing default concurrence

This commit is contained in:
Hydrus Network Developer 2023-02-08 14:31:02 -06:00
parent 4001dd5047
commit d2c0f3b4ff
No known key found for this signature in database
GPG Key ID: 76249F053212133C
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ title: Changelog
### related tags
* a new 'concurrence threshold' setting under _options->tag suggestions_ allows you to set how 'strict' the related tags search is. a higher percentage causes fewer but more relevant results. I'm doubling the default this week from 4% to 8%
* a new 'concurrence threshold' setting under _options->tag suggestions_ allows you to set how 'strict' the related tags search is. a higher percentage causes fewer but more relevant results. I'm increasing the default this week from 4% to 6%
* two new 'namespace to weight' settings under _options->tag suggestions_ now manage how much weight the 'search' and 'suggestion' sides of related tags have. you can say 'rank the suggestions from character tags highly' or 'rank unnamespaced suggestions lower', and 'do not search x tags' and 'do not suggest y tags'. I have prepped it with some 'creator/character/series namespaces are better than unnamespaced, and title/filename/page/chapter/volume are useless' defaults, but feel free to play around with it
* the related tags algorithm takes a larger sample now, resulting in a _little_ less ranking-variability

View File

@ -45,7 +45,7 @@
<li>thanks to a user, folded in another deviant art parser update to the defaults</li>
<li>updated the setuptools version in the requirements.txt due to a security note--I don't think the problem (which was about some vulnerable regex when fetching malicious package info) applies to us, but running from source users might like to run setup_venv again this week anyway</li>
<li><h3>related tags</h3></li>
<li>a new 'concurrence threshold' setting under _options->tag suggestions_ allows you to set how 'strict' the related tags search is. a higher percentage causes fewer but more relevant results. I'm doubling the default this week from 4% to 8%</li>
<li>a new 'concurrence threshold' setting under _options->tag suggestions_ allows you to set how 'strict' the related tags search is. a higher percentage causes fewer but more relevant results. I'm increasing the default this week from 4% to 6%</li>
<li>two new 'namespace to weight' settings under _options->tag suggestions_ now manage how much weight the 'search' and 'suggestion' sides of related tags have. you can say 'rank the suggestions from character tags highly' or 'rank unnamespaced suggestions lower', and 'do not search x tags' and 'do not suggest y tags'. I have prepped it with some 'creator/character/series namespaces are better than unnamespaced, and title/filename/page/chapter/volume are useless' defaults, but feel free to play around with it</li>
<li>the related tags algorithm takes a larger sample now, resulting in a _little_ less ranking-variability</li>
<li><h3>client api</h3></li>

View File

@ -370,7 +370,7 @@ class ClientOptions( HydrusSerialisable.SerialisableBase ):
self._dictionary[ 'integers' ][ 'related_tags_search_1_duration_ms' ] = 250
self._dictionary[ 'integers' ][ 'related_tags_search_2_duration_ms' ] = 2000
self._dictionary[ 'integers' ][ 'related_tags_search_3_duration_ms' ] = 6000
self._dictionary[ 'integers' ][ 'related_tags_concurrence_threshold_percent' ] = 8
self._dictionary[ 'integers' ][ 'related_tags_concurrence_threshold_percent' ] = 6
self._dictionary[ 'integers' ][ 'suggested_tags_width' ] = 300