rangl-labs / netzerotc

MIT License
11 stars 2 forks source link

fix: set average cost to mean score #114

Closed masonlr closed 2 years ago

masonlr commented 2 years ago

The pull request sets the average cost to the mean score. Previously it was the negative of the mean score.

masonlr commented 2 years ago

I will update the evaluation script in place using the django backend:

image
masonlr commented 2 years ago

That script has now been changed:

image

Previously when run (see the details here https://github.com/rangl-labs/netzerotc/pull/112#issuecomment-1010670094), I got the result:

{"Average Cost": -83324.07849884033}

With the updates in this pull request, the result is coming back (as expected) as:

{"Average Cost": 83324.07849884033}
moriartyjm commented 2 years ago

Nice spot!