Rinchin
Rinchin
letβs add second catboost model training to [catboost_example.py](https://github.com/allegroai/clearml/blob/master/examples/frameworks/catboost/catboost_example.py): ``` ... catboost_model = CatBoostRegressor(iterations=iterations, verbose=False) catboost_model2 = CatBoostRegressor(iterations=iterations+200, verbose=False) ... catboost_model.fit(train_pool, eval_set=test_pool, verbose=True, plot=False, save_snapshot=True) catboost_model2.fit(train_pool, eval_set=test_pool, verbose=True, plot=False, save_snapshot=True) ......
## π Feature Request Remove wrapper for tunner module. ### Motivation We need only Optuna as a tuner.
## π Bug https://github.com/sb-ai-lab/LightAutoML/blob/d0c1d66bf893a597f9f9fe8f75f85c3a391ed1fb/lightautoml/pipelines/selection/base.py#L210
1) Anytime a 5xx error is triggered, the auth cookie and other header values are recorded in Jupyter server logs by default. Considering these logs do not require root access,...
Hi, ClearML [uses](https://github.com/allegroai/clearml/blob/aad01056b548660bb271c4f98447b715b8ba4c7d/clearml/backend_interface/task/repo/util.py#L23) furl to remove a user from a git remote URL, so furl removes username when the remote URL is like "ssh://[email protected]:1234/path/to/repo.git" (with "ssh://git@"): - Ok: `furl.furl("[email protected]:1234/path/to/repo.git").remove(username=True, password=True).tostr()`...
https://github.com/sb-ai-lab/LightAutoML/blob/13b8a8ef3f5b49ffd635ef502c2fc2ee682a34e9/lightautoml/transformers/categorical.py#L156
## π Feature Request Add ranking task, metrics ### Motivation LightAutoML has binary, multiclass, regression task, it would be great to use LightAutoML to solve ranking problems