MukavaValkku

Results 8 comments of MukavaValkku

in optimize.py: ``` def _preprocess(self, trial: optuna.trial.Trial) -> None: if self.pbar is not None: self.pbar.set_description(self.pbar_fmt.format(self.step_name, self.best_score)) if "lambda_l1" in self.target_param_names: #self.lgbm_params["lambda_l1"] = trial.suggest_float("lambda_l1", 1e-8, 10.0, log=True) self.lgbm_params["lambda_l1"] = trial.suggest_float("lambda_l1", 0.1,...

It quite hard, because this is part of way bigger complex.. I can share some of the code. Hopefully this is enough.. ```python class example_code: def objective(self, trial) x =...

import optuna.integration.lightgbm as lgb Sorry I forgot to add that in.. " If you use the integration version, I think some of param that tuned in the integration will be...

Ok, thank you for this. I will check the lightgbm_simple.py .

Hello, Im having same problems with the latest version (v1.2.6). 2022-02-09 07:28:13,811 - AgeFilter - INFO - Removed ADA/USDT from whitelist, because age 5 is less than 14 days 2022-02-09...

Im not node.js or js expert in any means and I was hoping to someone help me out to debug this problem.

Can this be the problem ? ``` if (videoJSON.onProgress) { clearInterval(progressChecker); progressChecker = undefined; progress = { progress: 100, stage: types_1.ProgressEnum.Done }; videoJSON.onProgress(progress); } ``` but in my case progress...

Not sure why but commenting these lines: ``` const uploadResult = yield Promise.any([uploadCompletePromise, dailyUploadPromise]); if (uploadResult === 'dailyUploadReached') { yield browser.close(); throw new Error('Daily upload limit reached'); } ``` solved...