I note I can set the random state in random forest classifier, but not in Complement Naive Bayes. I get error
TypeError: __init__() got an unexpected keyword argument 'random_state'
I assume this is because naive_bayes is computing the probability of each class?
from sklearn.naive_bayes import ComplementNB
model= ComplementNB(random_state=0)