(self, mean, std)
| 199 | """ |
| 200 | |
| 201 | def __init__(self, mean, std): |
| 202 | self.__mean = mean |
| 203 | self.__std = std |
| 204 | |
| 205 | def __call__(self, sample): |
| 206 | sample["image"] = (sample["image"] - self.__mean) / self.__std |
nothing calls this directly
no outgoing calls
no test coverage detected