* DOC examples with correct notebook style
* Modifications in examples/ to avoid unwanted notebook style
* Remove last notebook style example
* Space formatting to avoid notebook style
- No need for `regr.predict(diabetes_X_test)` to run multiple times.
- Use `sklearn.metrics.mean_squared_error`.
- Use `sklearn.metrics.r2_score`, instead of `regr.score`, which
runs `regr.predict` again.
The first argument of np.random.normal is the mean of the distribution, and
not the output shape. The example thus did not add noise but only an intercept
to the model.
* initial commit for return_std
* initial commit for return_std
* adding tests, examples, ARD predict_std
* adding tests, examples, ARD predict_std
* a smidge more documentation
* a smidge more documentation
* Missed a few PEP8 issues
* Changing predict_std to return_std #1
* Changing predict_std to return_std #2
* Changing predict_std to return_std #3
* Changing predict_std to return_std final
* adding better plots via polynomial regression
* trying to fix flake error
* fix to ARD plotting issue
* fixing some flakes
* Two blank lines part 1
* Two blank lines part 2
* More newlines!
* Even more newlines
* adding info to the doc string for the two plot files
* Rephrasing "polynomial" for Bayesian Ridge Regression
* Updating "polynomia" for ARD
* Adding more formal references
* Another asked-for improvement to doc string.
* Fixing flake8 errors
* Cleaning up the tests a smidge.
* A few more flakes
* requested fixes from Andy
* Mini bug fix
* Final pep8 fix
* pep8 fix round 2
* Fix beta_ to alpha_ in the comments
* Small correction of logit->logistic
The function `1 / (1 + np.exp(-x))` is the logistic function.
The logit function is the inverse of the logistic function : `log(x/(1-x))`
* Add axes ticks, legend and colors to the plot
* Fix flake8 errors
* Rename legend labels as per review
* Fix pep8 error
The comment in a few example plots refer to "the mesh [x_min, m_max] x
[y_min, y_max]" when it should be "x_max".
Also fixed the spacing in plot_random_forest_embedding.py `[x_min,
x_max] x [y_min, y_max]` to `[x_min, x_max]x[y_min, y_max]` to comply
with the coding style of other files with similar code (like those in
the current pull request).
Add gradient calculation in _huber_loss_and_gradient
Add tests to check the correctness of the loss and gradient
Fix for old scipy
Add parameter sigma for robust linear regression
Add gradient formula to robust _huber_loss_and_gradient
Add fit_intercept option and fix tests
Add docs to HuberRegressor and the helper functions
Add example demonstrating ridge_regression vs huber_regression
Add sample_weight implementation
Add scaling invariant huber test
Remove exp and add bounds to fmin_l_bfgs_b
Add sparse data support
Add more tests and refactoring of code
Add narrative docs
review huber regressor
Minor additions to docs and tests
Minor fixes that deals with dealing with NaN values in targets
and old verions of SciPy and NumPy
Add HuberRegressor to robust estimator
Refactored computation of gradient and make docs render properly
Temp
Remove float64 dtype conversion
trivial optimizations and add a note about R
Remove sample_weights special_casing
address @amueller comments
ENH NonBLASDotWarning -> EfficiencyWarning; Improve error message
DOC Add exceptions module to modules/classes.rst
MAINT Move ConvergenceWarning, UndefinedMetricWarning et al into exceptions
MAINT Remove ChangedBehaviorWarning from base
DOC/FIX Improve DataConversionWarning's docstring