Skip to content

Commit

Permalink
docs: fix inconsistency in YOLO normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
Menno committed Dec 13, 2024
1 parent b86942a commit f638468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion albumentations/augmentations/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class Normalize(ImageOnlyTransform):
- For "standard" normalization, `mean`, `std`, and `max_pixel_value` must be provided.
- For other normalization types, these parameters are ignored.
- For inception normalization, use mean values of (0.5, 0.5, 0.5).
- For YOLO normalization, use mean values of (0.5, 0.5, 0.5) and std values of (0, 0, 0).
- For YOLO normalization, use mean values of (0, 0, 0) and std values of (1, 1, 1).
- This transform is often used as a final step in image preprocessing pipelines to
prepare images for neural network input.
Expand Down

0 comments on commit f638468

Please sign in to comment.