reademe 文档进行排版

This commit is contained in:
1mrliu 2018-05-19 20:01:26 +08:00
parent 7a31e4bca5
commit d366b98eb4
1 changed files with 2 additions and 2 deletions

View File

@ -1827,7 +1827,7 @@ plt.show()
![png](/static/images/competitions/getting-started/house-price/output_53_0.png)
```python
# 模型选择
## LASSO Regression :
lasso = make_pipeline(RobustScaler(), Lasso(alpha=0.0005, random_state=1))
@ -1890,7 +1890,7 @@ score = rmsle_cv(model_xgb)
print("Xgboost score: {:.4f} ({:.4f})\n".format(score.mean(), score.std()))
score = rmsle_cv(model_lgb)
print("LGBM score: {:.4f} ({:.4f})\n".format(score.mean(), score.std()))
```
```python