Let us assume we have an array with values ranging from 0 to 150.
Which of the following statements is correct regarding the following code?
from sklearn.preprocessing import Binarizer
binarizer = Binarizer(threshold = 50).fit(array)
binarizer.transform(array)
Group of answer choices
The last statement will transform the input array into a new array where all values will be either 1 or 0
The first statement imports the binarizer module from the sklearn.preprocessing library
The threshold indicates that values below or equal to 50 will be maped to zero and above 50 will be mapped to 1
All of the options