File size: 332 Bytes
8cf7cdb
 
 
 
 
 
 
 
6fd534c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
tags:
- scikit-learn
- regression
- forecasting
- finance
---

# Expense Forecaster Model

This model predicts future expenses based on income, previous expenses, and the month.

## Usage

To use this model, send a JSON payload with the following format:

```json
{
  "income": 5000,
  "previous_expenses": 3000,
  "month": 12
}