chore: update operators.py (#2724)

### What problem does this PR solve?
substract -> subtract
### Type of change

- [ ] Bug Fix (non-breaking change which fixes an issue)
- [ ] New Feature (non-breaking change which adds functionality)
- [ ] Documentation Update
- [x] Refactoring
- [ ] Performance Improvement
- [ ] Other (please describe):
This commit is contained in:
Ikko Eltociear Ashimine 2024-10-08 11:34:52 +09:00 committed by GitHub
parent a005be7c74
commit c552a02e7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,7 +102,7 @@ class StandardizeImage(object):
class NormalizeImage(object):
""" normalize image such as substract mean, divide std
""" normalize image such as subtract mean, divide std
"""
def __init__(self, scale=None, mean=None, std=None, order='chw', **kwargs):