akshat-suwalka

Results 11 comments of akshat-suwalka

@memoryz Thank you for the reply... It is solving this problem which is to plot. But i am seeing for every column and their every bucket there is only one...

for every single column have this type of data

@yangwenz Do you use some parallelization technique while solving the problem....like if i have 1M rows then, will you use mine various workers of cluster or only Driver will be...

``` explainer = ShapTabular( training_data=tabular_data, predict_function=predict_function, nsamples=100 ) ``` I will use pyspark model in predict function to infer and my tabular data will also be pyspark dataframe..... Will the...

@yangwenz Can you please explain these `please also use pyspark to run the explainer, e.g. distribute workloads into multiple workers.` that you mention above... As you mention that i will...

@yangwenz Unable to resolve the error, can you please help with it ``` def get_features(df_in, columns_input): assembler = VectorAssembler(inputCols=columns_input, outputCol="features") df_out = (assembler .transform(df_in) ).cache() return(df_out) ``` def pyspark_data(pd_data): pd_data...