Together with adding a 'score' search field, it would be convenient to have a way to search posts having a certain feedback. For example, one use-case would be returning all the posts above a certain score that Natty incorrectly reported and were given a fp feedback: this would enable to enhance the bot and tweak it further.
As one post can have multiple conflicting feedback, there are several ways to make this happen:
Search on a global "mean" feedback. If there are more tp than fp, consider the post as tp, likewise for fp, but this wouldn't handle the case where they are in an equal number.
Search on whether it has at least one of the given feedback. If I search for tp, I would be presented with all posts having at least one feedback as tp.
The 2nd implementation would be more reasonable for the proposed use-case, and far easier to understand.
Together with adding a 'score' search field, it would be convenient to have a way to search posts having a certain feedback. For example, one use-case would be returning all the posts above a certain score that Natty incorrectly reported and were given a
fp
feedback: this would enable to enhance the bot and tweak it further.As one post can have multiple conflicting feedback, there are several ways to make this happen:
tp
thanfp
, consider the post astp
, likewise forfp
, but this wouldn't handle the case where they are in an equal number.tp
, I would be presented with all posts having at least one feedback astp
.The 2nd implementation would be more reasonable for the proposed use-case, and far easier to understand.