Author

Topic: How does the trust system work? (Read 563 times)

-tK
newbie
Activity: 14
Merit: 0
February 21, 2016, 04:36:09 PM
#4
basically it is the total score calculated based on the 2nd and 3rd (there's no 4th. theymos removed it.) scores. here's the full algorithm:
Code:
if there are no negative ratings
score = 0
for each rating, oldest to newest
if this rater has already been counted
continue
score += min(10, round_up(months since rating))
else
score = unique_positive - 2^(unique_negative)
if score >= 0
start_time = time of first negative
score = unique_positive since start_time - unique_negative since start_time
if(score < 0)
return ??? (orange)

move score to range [-9999,9999]
return score

taken from this thread > https://bitcointalksearch.org/topic/minor-trust-score-algorithm-change-1066857

That makes more sense, thanks for the help.
copper member
Activity: 924
Merit: 1007
hee-ho.
February 21, 2016, 02:05:29 PM
#3
basically it is the total score calculated based on the 2nd and 3rd (there's no 4th. theymos removed it.) scores. here's the full algorithm:
Code:
if there are no negative ratings
score = 0
for each rating, oldest to newest
if this rater has already been counted
continue
score += min(10, round_up(months since rating))
else
score = unique_positive - 2^(unique_negative)
if score >= 0
start_time = time of first negative
score = unique_positive since start_time - unique_negative since start_time
if(score < 0)
return ??? (orange)

move score to range [-9999,9999]
return score

taken from this thread > https://bitcointalksearch.org/topic/minor-trust-score-algorithm-change-1066857
legendary
Activity: 2338
Merit: 1047
February 21, 2016, 02:04:58 PM
#2
Sorry for my newbie question.

I read this topic but I can't understand how the trust system works in the marketplace section. This is what it said:

The first number is the user's trust score calculated based on how consistently they've received positive feedback. Probably no one will get a score above 0 until the system has been around for at least a month. The second number is the number of reported scams. The third number increases with the number of positive reports, as does the fourth number in parenthesis, though the fourth number is more resistant to abuse. This text changes color depending on the score. Users with a negative score (attainable through scamming) get a red warning attached to their posts.

I get the second and third/fourth numbers, but how is the first number calculated?
I believe its based on how often you recieve positive trust ratings.
-tK
newbie
Activity: 14
Merit: 0
February 21, 2016, 02:01:08 PM
#1
Sorry for my newbie question.

I read this topic but I can't understand how the trust system works in the marketplace section. This is what it said:

The first number is the user's trust score calculated based on how consistently they've received positive feedback. Probably no one will get a score above 0 until the system has been around for at least a month. The second number is the number of reported scams. The third number increases with the number of positive reports, as does the fourth number in parenthesis, though the fourth number is more resistant to abuse. This text changes color depending on the score. Users with a negative score (attainable through scamming) get a red warning attached to their posts.

I get the second and third/fourth numbers, but how is the first number calculated?
Jump to: