Sebastian Raschka

Results 183 issues of Sebastian Raschka

**Have you checked the [list of proposed rules](https://github.com/Benjamin-Lee/deep-rules/issues?q=is%3Aissue+is%3Aopen+label%3Arule) to see if the rule has already been proposed?** - [x] Yes **Did you add yourself as a [contributor](https://github.com/Benjamin-Lee/deep-rules/blob/master/contributors.md) by making a...

Tip

**Have you checked the [list of proposed rules](https://github.com/Benjamin-Lee/deep-rules/issues?q=is%3Aissue+is%3Aopen+label%3Arule) to see if the rule has already been proposed?** - [x] Yes Use a simple, linear model, e.g., (multinomial) logistic regression or...

Tip

Just flipping through the Readme, I see it says that "It is built on top of PyTorch." But then I was watching the video at ludwig.ai (https://ludwig-ai.github.io/ludwig-docs/0.4/) and it says...

documentation

Hey Valentino & Luca, I am just catching up with some bookmarks and remembered your repo here :). As someone who constantly fuzzes about the ideal project structure, that's actually...

Similar to from mlxtend.frequent_patterns import apriori frequent_itemsets = apriori(df, min_support=0.6, use_colnames=True) we could implement Eclat and FPGrowth as alternatives to apriori for frequent itemset generation. For instance, from mlxtend.frequent_patterns import...

New Feature

Add https://github.com/kaz-Anova/StackNet as a reference for `use_features_in_secondary` for `StackingClassifier` and `StackingCVClassifier`. They point to a Kaggle competition and blog post that might also be worthwhile mentioning.

Documentation

There is an unnecessary warning ``` /Users/sebastian/miniforge3/lib/python3.9/site-packages/mlxtend/classifier/ensemble_vote.py:166: UserWarning: fit_base_estimators=False enforces use_clones to be `False` warnings.warn("fit_base_estimators=False " ``` when both `use_clones` and `fit_base_estimators` are `False`: ``` eclf = EnsembleVoteClassifier(clfs=(clf1, clf2, clf3),...

easy

I think the more modern version of python setup.py develop is pip install -e . The contributor guide should probably be updated with pip install -r requirements.txt pip install -e...

Documentation

> Just a suggestion: You may want to add to the contributor guide that the contributors should do git add and git commit after correcting the format with black, before...

Documentation

Based on the discussion in #915 > Probably you mean 3rd party Jupyter Lab extension like nb_black, but in this case I used black feature to format notebooks: https://black.readthedocs.io/en/stable/change_log.html?#id31 Oh...