Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cls bias init (ultralytics#5520)
* Update cls bias init Increased numerical precision. Returns 1.0 probability for single-class datasets now. Addresses ultralytics#5357 ```python torch.sigmoid(torch.tensor([math.log(0.6 / (1 - 0.99999))])) Out[19]: tensor([1.0000]) ``` * Update yolo.py
- Loading branch information