Skip to content

Commit

Permalink
removing bias intervention
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Sep 5, 2024
1 parent 53aa41e commit 57f9ee1
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/API/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,7 @@ export async function listBiasedPools(
if (biasedPools.length === 0) return { pools: unbiasedPools, saturationLimit };
const biasedPoolsOrderByExternalSeed = sortBiasedPools(biasedPools, externalSeed);

// const topPool = biasedPoolsOrderByExternalSeed[0];

// TODO: manual intervention to be removed when new pools are deemed viable
const topPool = biasedPoolsOrderByExternalSeed
.find(p => p.id === '0ef7aa564933ce75b695cdad66be4a39b43a22726de7c58908e0e033') // EMUR8
?? biasedPoolsOrderByExternalSeed[0];
const topPool = biasedPoolsOrderByExternalSeed[0];

const biasedLowerPools = biasedPools.filter((p) => p !== topPool);
const biasedLowerPoolsOrderedByInternalSeed = sortBiasedPools(biasedLowerPools, internalSeed);
Expand Down

0 comments on commit 57f9ee1

Please sign in to comment.