File size: 855 Bytes
5e08d48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

---
tags:
- autotrain
- tabular
- regression
- tabular-regression
datasets:
- rea-knn/autotrain-data
---

# Model Trained Using AutoTrain

- Problem type: Tabular regression

## Validation Metrics

- r2: 0.4161997019836754
- mse: 1507403520.3284101
- mae: 29120.68408236499
- rmse: 38825.29485178973
- rmsle: 0.18675257705362744
- loss: 38825.29485178973

## Best Params

- n_neighbors: 3
- weights: distance
- algorithm: ball_tree
- leaf_size: 77
- p: 2
- metric: manhattan

## Usage

```python
import json
import joblib
import pandas as pd

model = joblib.load('model.joblib')
config = json.load(open('config.json'))

features = config['features']

# data = pd.read_csv("data.csv")
data = data[features]

predictions = model.predict(data)  # or model.predict_proba(data)

# predictions can be converted to original labels using label_encoders.pkl

```