generated from fun-stack/example
-
Notifications
You must be signed in to change notification settings - Fork 4
/
scoring-formula.go
360 lines (280 loc) · 11.4 KB
/
scoring-formula.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
package main
import (
"fmt"
"math"
)
func sellPrice(p Position) float64 {
// upvoteRateAdjustment := 0.7203397586203779
if p.Direction == -1 {
return p.EntryUpvoteRate
} else if p.Exited() {
return p.ExitUpvoteRate.Float64
}
return p.CurrentUpvoteRate
}
func buyPrice(p Position) float64 {
if p.Direction == 1 {
return p.EntryUpvoteRate
} else if p.Exited() {
return p.ExitUpvoteRate.Float64
}
return p.CurrentUpvoteRate
}
func UserScore(p Position, m ModelParams, formula string) float64 {
var score float64
switch formula {
case "PTS":
score = PeerTruthSerum(p, m) * 100
case "InformationGain":
score = InformationGain(p, m) * 100
case "InformationGain2":
score = InformationGain2(p, m) * 100
case "InformationGain3":
score = InformationGain3(p, m) * 100
case "InformationGain4":
score = InformationGain4(p, m) * 100
case "InformationGain7":
score = InformationGain7(p, m) * 100
case "InformationGain8":
score = InformationGain8(p, m) * 100
case "InformationGain9":
score = InformationGain9(p, m) * 100
case "InformationGain10":
score = InformationGain10(p, m) * 100
case "LogPTS":
score = LogPeerTruthSerum(p, m) * 100
case "":
score = LogPeerTruthSerum(p, m) * 100
default:
score = 0
}
if math.IsNaN(score) {
fmt.Printf("Got NaN from scoring formula %s. Position: %#v. Modal Params: %#v\n", formula, p, m)
}
return score
// return p.LogPeerTruthSerum() * 100
// return p.PeerTruthSerum()*100
}
func ln(v float64) float64 {
return math.Log(v)
}
func lg(v float64) float64 {
return math.Log(v) / math.Log(2)
}
// postVoteUpvoteRate is observed upvote rate after the user's vote
func InformationGain(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+int(p.Direction), p.EntryExpectedUpvotes)
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
postVoteUpvoteRate := float64(finalUpvotes-p.EntryUpvotes) / (finalExpectedUpvotes - p.EntryExpectedUpvotes)
return (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
}
// Like informationGain1, but post-vote upvote rate is finalUpvoteRate
func InformationGain2(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+int(p.Direction), p.EntryExpectedUpvotes)
finalUpvoteRate := m.upvoteRate(p.CurrentUpvotes+int(p.Direction), p.CurrentExpectedUpvotes)
if p.Exited() {
finalUpvoteRate = m.upvoteRate(int(p.ExitUpvotes.Int64)+int(p.Direction), p.ExitExpectedUpvotes.Float64)
}
score := (finalUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
if (score > 0 && finalUpvoteRate < p.EntryUpvoteRate) || (score < 0 && finalUpvoteRate > p.EntryUpvoteRate) {
fmt.Println("Story", p.Title)
fmt.Println("Entry", p.EntryUpvotes, p.EntryExpectedUpvotes, p.EntryUpvoteRate, m.upvoteRate(p.EntryUpvotes, p.EntryExpectedUpvotes))
fmt.Println("Current", p.CurrentUpvotes, p.CurrentExpectedUpvotes, p.CurrentUpvoteRate)
fmt.Println("Prices", p.EntryUpvoteRate, buyPrice(p), postEntryUpvoteRate, finalUpvoteRate)
fmt.Println("Log PTS", p.CurrentUpvoteRate*lg(p.CurrentUpvoteRate/p.EntryUpvoteRate))
fmt.Println("Component 1", finalUpvoteRate*lg(postEntryUpvoteRate/buyPrice(p)))
fmt.Println("Component 2", (buyPrice(p)-postEntryUpvoteRate)/ln(2))
// fmt.Println(fmt.Sprintf("Position %#v %f %f", p, postEntryUpvoteRate, finalUpvoteRate))
// fmt.Println(p.EntryTime, p.EntryUpvoteRate, p.CurrentUpvoteRate, p.ExitUpvoteRate.Float64, finalUpvoteRate, postEntryUpvoteRate, buyPrice(p))
}
return score
}
// Use final upvoteRate instead of postEntry upvote rate.
func InformationGain3(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
finalUpvoteRate := m.upvoteRate(p.CurrentUpvotes, p.CurrentExpectedUpvotes)
if p.Exited() {
finalUpvoteRate = m.upvoteRate(int(p.ExitUpvotes.Int64), p.ExitExpectedUpvotes.Float64)
}
score := (finalUpvoteRate*ln(finalUpvoteRate/buyPrice(p)) + (buyPrice(p) - finalUpvoteRate)) / ln(2)
return score
}
// This is like InformationGain1, but we Bayesian average the postVoteUpvoteRate
func InformationGain4(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+int(p.Direction), p.EntryExpectedUpvotes)
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
postVoteUpvoteRate := float64(finalUpvotes-p.EntryUpvotes+4) / (finalExpectedUpvotes - p.EntryExpectedUpvotes + 4)
return (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
}
// // This is like InformationGain4, but make downvotes work by incrementing denominator instead of
// // decrementing numerator.
// func InformationGain5(p Position, m ModelParams) float64 {
// // Information gain logic doesn't work for downvotes
// if p.Direction == -1 {
// return 0
// }
// postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+1, p.EntryExpectedUpvotes)
// if p.Direction == -1 {
// postEntryUpvoteRate = m.upvoteRate(p.EntryUpvotes, p.EntryExpectedUpvotes+1)
// }
// finalUpvotes := p.CurrentUpvotes
// finalExpectedUpvotes := p.CurrentExpectedUpvotes
// if p.Exited() {
// finalUpvotes = int(p.ExitUpvotes.Int64)
// finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
// }
// if finalExpectedUpvotes == p.EntryExpectedUpvotes {
// return 0
// }
// postVoteUpvoteRate := float64(finalUpvotes-p.EntryUpvotes+4) / (finalExpectedUpvotes - p.EntryExpectedUpvotes + 4)
// return (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
// }
// // This is like InformationGain1, but make downvotes work by incrementing denominator instead of
// // decrementing numerator.
// func InformationGain6(p Position, m ModelParams) float64 {
// // Information gain logic doesn't work for downvotes
// if p.Direction == -1 {
// return 0
// }
// postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+1, p.EntryExpectedUpvotes)
// if p.Direction == -1 {
// postEntryUpvoteRate = m.upvoteRate(p.EntryUpvotes, p.EntryExpectedUpvotes+1)
// }
// finalUpvotes := p.CurrentUpvotes
// finalExpectedUpvotes := p.CurrentExpectedUpvotes
// if p.Exited() {
// finalUpvotes = int(p.ExitUpvotes.Int64)
// finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
// }
// if finalExpectedUpvotes == p.EntryExpectedUpvotes {
// return 0
// }
// postVoteUpvoteRate := float64(finalUpvotes-p.EntryUpvotes) / (finalExpectedUpvotes - p.EntryExpectedUpvotes)
// return (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
// }
// This is like InformationGain4, but use the priorWeight parameter instead of random parameter 4
func InformationGain7(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+1, p.EntryExpectedUpvotes)
if p.Direction == -1 {
postEntryUpvoteRate = m.upvoteRate(p.EntryUpvotes, p.EntryExpectedUpvotes+1)
}
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
postVoteUpvoteRate := (float64(finalUpvotes-p.EntryUpvotes) + m.PriorWeight) / (finalExpectedUpvotes - p.EntryExpectedUpvotes + m.PriorWeight)
return (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
}
// Like InformationGain1, but takes weighted average of score and 0 (weighted by post-entry expected upvotes)
func InformationGain8(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+int(p.Direction), p.EntryExpectedUpvotes)
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
postVoteUpvoteRate := float64(finalUpvotes-p.EntryUpvotes) / (finalExpectedUpvotes - p.EntryExpectedUpvotes)
gain := (postVoteUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
return (gain * (finalExpectedUpvotes - p.EntryExpectedUpvotes)) / (finalExpectedUpvotes - p.EntryExpectedUpvotes + m.PriorWeight)
}
// Final upvote rate is overall final upvote rate.
func InformationGain9(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
postEntryUpvoteRate := m.upvoteRate(p.EntryUpvotes+int(p.Direction), p.EntryExpectedUpvotes)
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
finalUpvoteRate := m.upvoteRate(finalUpvotes, finalExpectedUpvotes)
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
return (finalUpvoteRate*ln(postEntryUpvoteRate/buyPrice(p)) + (buyPrice(p) - postEntryUpvoteRate)) / ln(2)
}
func InformationGain10(p Position, m ModelParams) float64 {
// Information gain logic doesn't work for downvotes
if p.Direction == -1 {
return 0
}
finalUpvotes := p.CurrentUpvotes
finalExpectedUpvotes := p.CurrentExpectedUpvotes
if p.Exited() {
finalUpvotes = int(p.ExitUpvotes.Int64)
finalExpectedUpvotes = p.ExitExpectedUpvotes.Float64
}
finalUpvoteRate := m.upvoteRate(finalUpvotes, finalExpectedUpvotes)
if finalExpectedUpvotes == p.EntryExpectedUpvotes {
return 0
}
return (ln(finalUpvoteRate/buyPrice(p)) + (buyPrice(p)/finalUpvoteRate - 1)) / ln(2)
}
func LogPeerTruthSerum(p Position, m ModelParams) float64 {
postEntryUpvoteRate := m.upvoteRate(p.CumulativeUpvotes+1, p.CumulativeExpectedUpvotes)
if p.ID == 36805231 {
fmt.Println("Prices", p.EntryUpvoteRate, postEntryUpvoteRate, p.CurrentUpvoteRate, buyPrice(p), postEntryUpvoteRate, sellPrice(p), postEntryUpvoteRate/buyPrice(p), sellPrice(p)/buyPrice(p))
}
if p.ID == 36731752 {
fmt.Println("Entry", p.Title, p.EntryUpvotes, p.EntryExpectedUpvotes, p.EntryUpvoteRate, m.upvoteRate(p.EntryUpvotes, p.EntryExpectedUpvotes))
fmt.Println("Prices", sellPrice(p), buyPrice(p), sellPrice(p)/buyPrice(p), lg(sellPrice(p)/buyPrice(p)))
}
return lg(sellPrice(p) / buyPrice(p))
}
func PeerTruthSerum(p Position, m ModelParams) float64 {
if p.ID == 36805231 {
fmt.Println("Prices", p.EntryUpvoteRate, p.CurrentUpvoteRate, buyPrice(p), sellPrice(p), sellPrice(p)/buyPrice(p))
}
return sellPrice(p)/buyPrice(p) - 1
}