> ## Documentation Index
> Fetch the complete documentation index at: https://shapely.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Huber Regressor

>  Huber Regressor is a robust regression method that combines squared loss for small errors and absolute loss for large errors. This makes it significantly less sensitive to outliers than standard linear regression.

It provides the accuracy of linear regression on clean data while automatically reducing the impact of anomalous points. 

<Note>
  If your dataset contains **outliers** that you cannot or do not want to remove, Huber Regressor is an excellent choice.

  * **Noisy geometric data**: Predict properties when some measurements in the dataset are unreliable or erroneous.
  * **Mixed-quality data**: When data from different sources has varying quality levels and some entries may contain extreme values.
  * **Robust predictions**: Any regression scenario where you suspect outliers could distort the model.
</Note>

### Use Cases

* **Noisy geometric data**
* **Mixed-quality data**
* **Robust predictions**

<a href="/images/ML/Huber Regressor.png" target="_blank">
  <img src="https://mintcdn.com/shapely/k8EK4RW_OYOqKd74/images/ML/Huber%20Regressor.png?fit=max&auto=format&n=k8EK4RW_OYOqKd74&q=85&s=b2e447112ed34a0249d6980bb498f9af" className="pointer-events-none" style={{ borderRadius: '0.5rem', border: '1px solid rgba(0,0,0,0.1)' }} width="1840" height="986" data-path="images/ML/Huber Regressor.png" />
</a>
