Removes alpha/beta from weighted formula
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
def _weighted(temp, prob, s, u, alpha=1, beta=1):
|
def _weighted(temp, prob, s, u):
|
||||||
weighted = (temp / 100) * s + ((100 - temp) / 100) * u
|
weighted = (temp / 100) * s + ((100 - temp) / 100) * u
|
||||||
return weighted
|
return weighted
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user