-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update argument scores #8
Conversation
✅ Deploy Preview for mindmeldtool ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@nickkeesG Something seems wrong with the calculation of Fragmentation. A lot of the nodes that should score high in fragmentation are showing "Not enough data to calculate scores". |
There are two changes which need to happen in the ArgumentScoreHandler:
This is what is currently causing the graph to look way less orange than it should. |
I'll think about how to deal with this - probably we'll show frag/cons even if the other one isn't being calculated. What happened here is that the nodes that don't show a score on the branch were mostly voted on by people who are friends with one another, so the nodes have a fragmentation score but not a consensus score. |
Notice how with the new scoring algorithm we get more bright yellows! |
Add "2 *" to getFragmentationScore Change `Score` type to allow undefined Consensus and Fragmentation
Split getArgumentScores into one for each score. Each score calculation ONLY considers users who voted AND have a relevant ingroup/outgroup. This should fix the issue we had with unusually low scores.
@sofvanh