Skip to content

Releases: bmi-labmedinfo/araucana-xai

Minor update: broken dependencies fixed

21 Jun 08:50
Compare
Choose a tag to compare
Pre-release
v0.9.4

update v0.9.4 - broken dependency fix

Fixed DT's nondeterministic behavior

21 Oct 14:21
Compare
Choose a tag to compare
Pre-release

As described in scikit-learn/scikit-learn#8443, the Scikit-Learn implementation for the decision tree algorithm by default is not deterministic as it should be. This is due to a design choice here](https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/tree/_splitter.pyx#L381-L401) where even if max_features = n_features, the algorithm still randomly samples up to max_features.
To address this unexpected behavior, the internal random state of the DecisionTreeClassifier in Araucana has been fixed to 1. The global randomness of Araucana (e.g., during oversampling) can still be controlled with the 'seed' parameter.

v0.9.2

27 Jun 17:08
Compare
Choose a tag to compare
v0.9.2 Pre-release
Pre-release
Merge branch 'master' of https://github.com/detsutut/AraucanaXAI

Pre-release: minor refactoring + oversampling bug fix

21 Dec 17:41
Compare
Choose a tag to compare
v0.9.1

Merge branch 'master' of https://github.com/detsutut/AraucanaXAI

Pre-release: new oversampling strategies and minor general improvements

20 Dec 22:37
d9ff80f
Compare
Choose a tag to compare
v0.9

Update README.md

Pre-release: parameter tuning

14 Dec 16:10
52a5ecb
Compare
Choose a tag to compare
Pre-release
v0.0.5

Update README.md

Pre-release: continuous-only datasets handling

13 Dec 09:22
Compare
Choose a tag to compare
v0.0.4 - handle datasets without cat features, solved module import i…

…ssue

Pre-release: basic implementation

05 Nov 11:04
Compare
Choose a tag to compare
Pre-release
v0.0.2 - removed internal plotting + toy dataset + refactoring + upda…

…ted example