We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a57f0 commit 7d957b8Copy full SHA for 7d957b8
src/datafile.rkt
@@ -63,14 +63,16 @@
63
(define initial-cost* (exact->inexact initial-cost))
64
(for/list ([point (in-list (list* initial-point best-point other-points))])
65
(match-define (list cost accuracy _ ...) point)
66
- (list (/ cost initial-cost*) accuracy))))
+ ;(list (/ cost initial-cost*) accuracy))))
67
+ (list (log (/ cost initial-cost*)) accuracy))))
68
(define frontier
69
(map
70
(match-lambda
71
[(list cost accuracy)
72
(list
73
;; Equivalent to (/ 1 (/ cost tests-length))
- (/ 1 (/ cost tests-length))
74
+ ;(/ 1 (/ cost tests-length))
75
+ (/ 1 (exp (/ cost tests-length)))
76
(- 1 (/ accuracy maximum-accuracy)))])
77
(pareto-combine rescaled #:convex? #t)))
78
(define maximum-cost
0 commit comments