Skip to content

Commit

Permalink
Feedback from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
franchuterivera committed Feb 22, 2021
1 parent 6c026c7 commit e336373
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def predict(self, X_test: np.ndarray, predict_proba: bool = False) -> np.ndarray
def get_properties(dataset_properties: Optional[Dict[str, Any]] = None) -> Dict[str, str]:
return {
'shortname': 'LGBMClassifier',
'name': 'LGBMClassifier',
'name': 'Light Gradient Boosting Machine Classifier',
}


Expand Down Expand Up @@ -178,7 +178,7 @@ def predict(self, X_test: np.ndarray, predict_proba: bool = False) -> np.ndarray
def get_properties(dataset_properties: Optional[Dict[str, Any]] = None) -> Dict[str, str]:
return {
'shortname': 'CatBoostClassifier',
'name': 'CatBoostClassifier',
'name': 'Categorical Boosting Classifier',
}


Expand Down Expand Up @@ -243,8 +243,8 @@ def predict(self, X_test: np.ndarray, predict_proba: bool = False) -> np.ndarray
@staticmethod
def get_properties(dataset_properties: Optional[Dict[str, Any]] = None) -> Dict[str, str]:
return {
'shortname': 'RandomForestClassifier',
'name': 'RandomForestClassifier',
'shortname': 'RFClassifier',
'name': 'Random Forest Classifier',
}


Expand Down Expand Up @@ -369,8 +369,8 @@ def predict(self, X_test: np.ndarray, predict_proba: bool = False) -> np.ndarray
@staticmethod
def get_properties(dataset_properties: Optional[Dict[str, Any]] = None) -> Dict[str, str]:
return {
'shortname': 'KNeighborsClassifier',
'name': 'KNeighborsClassifier',
'shortname': 'KNNClassifier',
'name': 'K Nearest Neighbors Classifier',
}


Expand Down Expand Up @@ -424,5 +424,5 @@ def predict(self, X_test: np.ndarray, predict_proba: bool = False) -> np.ndarray
def get_properties(dataset_properties: Optional[Dict[str, Any]] = None) -> Dict[str, str]:
return {
'shortname': 'SVC',
'name': 'SVC',
'name': 'Support Vector Classification',
}

0 comments on commit e336373

Please sign in to comment.