This is my understanding of OvO versus OvA: One versus One is binary classification like Banana versus Orange. One versus All/Rest classification turns it into multiple different binary classification problems. My implementation in python for these 2 strategies yield very similar results :
OvA:
model = LogisticRegression(random_state=0, multi_class='ovr', solver='lbfgs')
model.fit(x,y)
model.predict(x)
OvO:
model = LogisticRegression()
model.fit(x,y)
model.predict(x)
I wanted to confirm my understanding and implementation is correct since I get similar results. I need to implement OvO and OvA strategy for multiclass classification using logistic regression