File size: 817 Bytes
116fe0a
 
 
 
 
 
 
 
 
 
2c513dd
 
116fe0a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
tags:
- autotrain
- tabular
- regression
- tabular-regression
datasets:
- Fatihrizkia/autotrain-data-xauusdh4timestamp
co2_eq_emissions:
  emissions: 7.055812310656196
license: apache-2.0
pipeline_tag: tabular-regression
---

# Model Trained Using AutoTrain

- Problem type: Single Column Regression
- Model ID: 100145147571
- CO2 Emissions (in grams): 7.0558

## Validation Metrics

- Loss: 0.380
- R2: 0.421
- MSE: 0.145
- MAE: 0.302
- RMSLE: 0.267

## 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]
data.columns = ["feat_" + str(col) for col in data.columns]

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

```