AlexanderZender

Results 24 comments of AlexanderZender

I made a similar observation using the BlazorBoilerplate project. It is somehow related to Blazor running in WASM. When BlazorBoilerplate is executed in Server mode, MatSelectValue works fine: ![image](https://user-images.githubusercontent.com/79153884/112950628-c8ec6b80-913a-11eb-9cf9-eed3b2a6d6a4.png) If...

Thank you @pplonski, I was positively surprised by how quickly I received your reply! :) To answer your question: I'm interested to move it to its base library for the...

My current workaround, duplicating the single row and only use the probabilities from one: ![image](https://user-images.githubusercontent.com/79153884/212484689-bd45aa62-a558-4d3f-83fa-7025c4f5cc2f.png)

During the initial opening sequence of the dashboard, a prediction is made using all nan values: ![image](https://github.com/oegedijk/explainerdashboard/assets/79153884/cc26e339-5f56-45d1-b330-528218ceeadb) This causes an exception in the console that the encoder of the model...

I added a 'NaN' category value to the categorical_dict if the categorical feature has NaN as values. Without this, the model encoder will break as always -999 is passed, instead...

The copy is technically not needed but it will avoid errors, for example if you pass a pipeline that manipulate the incoming dataframe within its process. These changes are indirectly...

@oegedijk I added the requested test, and removed copy from all predict function calls. I added a test to test categorical labels, this will fail as explainer dashboard does not...

> > I added the requested test, and removed copy from all predict function calls. > > I guess all these predict functions are only predicting a single row, so...

> > I added a test to test categorical labels, this will fail as explainer dashboard does not currently support these. > > I think it should be possible to...

I updated the test to use the available Titanic data. I perform the required manipulation in the test, e.g. adding NaN in Name or LabelEncode the label