@@ -22,10 +22,10 @@ Convenient way to automate OOF computation, prediction and bagging using any num
2222 * Predict [ class labels or probabilities] ( https://github.com/vecxoz/vecstack/blob/master/vecstack/coresk.py#L119 ) in classification task
2323 * Apply any [ user-defined metric] ( https://github.com/vecxoz/vecstack/blob/master/vecstack/coresk.py#L124 )
2424 * Apply any [ user-defined transformations] ( https://github.com/vecxoz/vecstack/blob/master/vecstack/coresk.py#L87 ) for target and prediction
25- * Python 2, Python 3
25+ * Python 3.5 and higher, [ unofficial support for Python 2.7 and 3.4 ] ( https://github.com/vecxoz/vecstack/blob/master/PY2.md )
2626 * Win, Linux, Mac
2727 * [ MIT license] ( https://github.com/vecxoz/vecstack/blob/master/LICENSE.txt )
28- * Depends on ** numpy** , ** scipy** , ** scikit-learn>=18.0 **
28+ * Depends on ** numpy** , ** scipy** , ** scikit-learn>=0.18 **
2929
3030# Get started
3131* [ FAQ] ( https://github.com/vecxoz/vecstack#stacking-faq )
@@ -292,14 +292,15 @@ Stacking API comparison:
292292| Estimator implementation restrictions | Must have only ` fit ` and ` predict ` (` predict_proba ` ) methods | Must be fully scikit-learn compatible |
293293| ` NaN ` and ` inf ` in input data | Allowed | Not allowed |
294294| Can automatically save OOF and log in files | Yes | No |
295+ | Input dimensionality (` X_train ` , ` X_test ` ) | Arbitrary | 2-D |
295296
296297### 21. How do parameters of ` stacking ` function and ` StackingTransformer ` correspond?
297298
298- | ** stacking function** | ** StackingTransformer** |
299- | -------------------------| -----------------------------------|
300- | ` models=[Ridge()] ` | ` estimators=[('ridge', Ridge())] ` |
301- | ` mode='oof_pred_bag' ` | ` variant='A' ` |
302- | ` mode='oof_pred' ` | ` variant='B' ` |
299+ | ** stacking function** | ** StackingTransformer** |
300+ | --------------------------------------- | -----------------------------------|
301+ | ` models=[Ridge()] ` | ` estimators=[('ridge', Ridge())] ` |
302+ | ` mode='oof_pred_bag' ` (alias ` 'A' ` ) | ` variant='A' ` |
303+ | ` mode='oof_pred' ` (alias ` 'B' ` ) | ` variant='B' ` |
303304
304305### 22. Why Scikit-learn API was implemented as transformer and not predictor?
305306
0 commit comments