def _get_model(self): if self._model == 'xgb': return XGBClassifier() if self._model == 'svc_rbf': return SVC() if self._model == 'svc_lin': return LinearSVC() return RFC()