e-strauss / JML_XAI_Project

Julia Package for XAI_Base: implement the XAI method LIME and LIME + SHAP
https://e-strauss.github.io/JML_XAI_Project/
MIT License
0 stars 0 forks source link

Feedback before Code Review 2 #28

Closed adrhill closed 2 weeks ago

adrhill commented 1 month ago

Hi all,

here's some quick feedback before the second code review session next week. I'm opening this as a single issue to not spam your repository.

Documentation

Code

e-strauss commented 1 month ago

thanks @adrhill , we will look into that.

I have question regarding the unregistered LARS algorithm package we depend on. I looked into other lasso path packages, but they result in a different Coefficient - matrix, which is not suitable from my perspective. So we would stick to the LARS repo for now. I actually I needed to create my own fork of the repo, fix some function renaming to make julia 1.10 compatible...

adrhill commented 1 month ago

So we would stick to the LARS repo for now.

Sounds good!

I actually I needed to create my own fork of the repo, fix some function renaming to make julia 1.10 compatible...

Bonus points if you make a PR to the original repo with your fixes! ;) You can run CI on the latest Julia release (currently 1.10) by updating these lines in LARS.jl to:

- '1.0'
- '1.6'
- '1' # latest release

However, it looks like a similar PR might already exist: https://github.com/simonster/LARS.jl/pull/10

e-strauss commented 2 weeks ago

thanks - fixed in #51 & #61