Skip to content

Commit

Permalink
Fix docs strings and config
Browse files Browse the repository at this point in the history
  • Loading branch information
aPovidlo committed Oct 17, 2023
1 parent 6ba85f0 commit 1bceffc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
# Required
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.8"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py
Expand Down
2 changes: 0 additions & 2 deletions fedot/core/operations/evaluation/evaluation_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ class SkLearnEvaluationStrategy(EvaluationStrategy):
- ``svr``-> SklearnSVR
- ``sgdr``-> SklearnSGD
- ``lgbmreg``-> LGBMRegressor
- ``catboostreg``-> CatBoostRegressor
- ``xgboost``-> XGBClassifier
- ``logit``-> SklearnLogReg
- ``bernb``-> SklearnBernoulliNB
Expand All @@ -165,7 +164,6 @@ class SkLearnEvaluationStrategy(EvaluationStrategy):
- ``rf``-> RandomForestClassifier
- ``mlp``-> MLPClassifier
- ``lgbm``-> LGBMClassifier
- ``catboost``-> CatBoostClassifier
- ``kmeans``-> SklearnKmeans
params: hyperparameters to fit the operation with
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@


class FedotCatBoostImplementation(ModelImplementation):
""" Catboost - https://catboost.ai/en/docs/ """
__operation_params = ['use_eval_set', 'n_jobs']

def __init__(self, params: Optional[OperationParameters] = None):
Expand Down

0 comments on commit 1bceffc

Please sign in to comment.