NumPy - Array Data Types
Identify the issue in this code snippet:
import numpy as np
arr = np.array([1.0, 2.0], dtype=np.float64)
arr = arr.astype('float16')
print(arr.dtype)