Update README.md

pull/6/head
nyanp 2020-01-01 12:11:39 +09:00 committed by GitHub
parent 37a3cbdcff
commit 664e9630d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,16 @@
particularly focused on feature engineering and validation.
See [the documentation](https://nyaggle.readthedocs.io/en/latest/index.html) for details.
- Feature Engineering
- K-Fold Target Encoding
- BERT Sentence Vectorization
- Model Validation
- CV with OOF
- GBDT Experiment Package
- Generate CV score, submission.csv, OOF, importance plot at once
- Ensemble
- Blending
## Installation
You can install nyaggle via pip:
```
@ -107,4 +117,4 @@ pred_oof, pred_test, scores = cv(models, X[:512, :], y[:512], X[512:, :], nfolds
on_each_fold=callback, # (optional) called for each fold
categorical_feature=[] # (optioanl) additional parameters are passed to model.fit()
)
```
```