# Linear Regression Model | |
This is a simple linear regression model that returns coefficients and intercept when provided with column names. | |
## Usage | |
### Input | |
The model takes JSON input with the following structure: | |
```json | |
{ | |
"columns": ["feature1", "feature2", "feature3"] | |
} | |