borisRa

Results 7 issues of borisRa

Hi, Hi, How can I prevent the space error bellow ? ``` Traceback (most recent call last): File "/anaconda/lib/python3.6/multiprocessing/pool.py", line 119, in worker result = (True, func(*args, **kwds)) File "/anaconda/lib/python3.6/multiprocessing/pool.py",...

Hi, I have relatively big pandas df , trying to run 'parallel_apply' sometimes it take huge timse to start and sometimes it is just stuck. Example : pandarallel.initialize(nb_workers= min(int( os.cpu_count()...

## Description Hi, Working with parameter : linear_tree = True The ipython core is dumping with this message : `Segmentation fault (core dumped)` And working with Optuna when `linear_tree `is...

bug

Hi, Is it possible to run distribution analysis regarding to a target feature ? For example in Titanic data, to show how "Survived" is affected by each variable. For example...

type: enhancement

Hi, How can I compare between train/test distributions ? Using this code : `plot_diff([train_df[train_df.columns[~train_df.columns.isin(['Survived'])]], test_df],config={"diff.label": ["train_df", "test_df"]})` I am getting counts as is , I would like to compare percentage...

type: enhancement

### Feature Description To be able to get multiple network inputs ### Code Example ```python import autokeras as ak input_node_1 = ak.Input() input_node_2 = ak.Input() input_node_1 = ak.ConvBlock()(input_node_1) concanted_ONE_input =...

bug report
pinned

Hi, ``` columns_metadata = {'cat_features' : categorical_cols, 'label':y_label_col } train_dataset = Dataset(df = train_df , **columns_metadata) test_dataset = Dataset(df = test_df , **columns_metadata ) custom_drift_suite = Suite('My_custom_drift_suite', FeatureDrift().add_condition_drift_score_less_than( max_allowed_categorical_score=0.2, max_allowed_numeric_score=0.2),...

good first issue
linear