次のコードで空欄になっている行に入る適切な選択肢を 1 ~ 3 から選び、F 値を求めてください..
# Q1
from ########## import precision_score, recall_score, f1_score
[Q1 選択肢]
1. sklearn.score
2. sklearn.metrics
3. sklearn.model_selction
y_true = [0, 0, 0, 1, 1, 1]
y_pred = [1, 0, 0, 1, 0, 0]
# Q2
f1 = ###########
print(“F1 : %3f” %f1_score)
[Q2の選択肢]
1. recall_score(y_true, y_pred)
2. precision_score(y_true, y_pred)
3. f1_score(y_true, y_pred)