Describe the bug
Holger found an issue that the ToNumpy transform will add unexpected dim to 0-dim data in classification task.
I think it's similar issue as: #2454.
How to reproduce
>>> import numpy as np
>>> from monai.transforms import ToNumpy, ToTensor
>>>
>>> print(ToNumpy()(5))
[5]