-
Hi!
Many thanks for a very useful tool. I wonder if multi-output regression (multi-tasking) is allowed with FLAML. I know that, at least, CatBoost does allow for this option.
Many thanks in adva…
-
Hi,
Today, I faced the following issue:
![image](https://user-images.githubusercontent.com/2101643/142725703-e98a07d3-684b-467a-95b7-c8c22b2db8e8.png)
![image](https://user-images.githubuserconte…
-
- [ ] I read [the conda-forge documentation](https://conda-forge.org/docs/user/introduction.html#how-can-i-install-packages-from-conda-forge) and could not find the solution for my problem there.
…
-
Hi! I tried to install and run a simple example, but ran into a `Segmentation Fault: 11` error when using Python 3.9.6:
```
from sklearn import datasets
def X_y():
X, y = datasets.make_c…
-
```
from flaml import AutoML
automl = AutoML()
automl_params = {
'time_budget' : 60*5,
'metric': 'rmse',
'task': 'regression',
'log_file_name': '../results/flaml_log.txt',
…
-
These packages incur massive additional cost to size required by FLAML when used in a docker image (seems like installing FLAML adds ~1Gb to image).
It would be awesome if it was possible to remove…
-
Hi @elephaint:
I got the following error when using the sklearn wrapper, PGBMRegressor:
~/.local/lib/python3.7/site-packages/pgbm/pgbm.py in _predict_tree(self, X, mu, variance, estimator)
…
-
HI I am trying to setup a custom metric but I keep getting an error about the custom metric having more arguments than what it should have
`TypeError: custom_metric() takes 5 positional arguments bu…
-
I'm using this:
```
% cat case_study/environment.yml
name: cement
channels:
- conda-forge
- nodefaults
dependencies:
- python==3.9
- jupyterlab==3.1
- pandas==1.3
- scikit-learn==1.0
…
cdeil updated
3 years ago
-
HI I'm trying to run AutoML Classification on Ray, but failed with the following error.
```
Traceback (most recent call last):
File "test.py", line 11, in
x = automl.fit(X,y,time_budget=1…