In bsb.placement.indicator.py in function guess: when an estimate is a "count_ratio" of another cell type, then its estimate is done for a speciffic chunk with:
estimate = (
sum(
PlacementIndicator(s, relation).guess(chunk, voxels)
for s in strats
)
* count_ratio
)
However, the line afterwards does also a ratio to obtain an estimate for the provided chunk:
In
bsb.placement.indicator.py
in functionguess
: when an estimate is a"count_ratio"
of another cell type, then its estimate is done for a speciffic chunk with:However, the line afterwards does also a ratio to obtain an estimate for the provided chunk:
Which means that the final estimate is incorrect.