File size: 1,003 Bytes
00f6ed3
 
 
 
 
 
 
 
81df475
 
 
 
 
 
 
 
 
 
00f6ed3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
58
---
tags:
- autotrain
- tabular
- classification
- tabular-classification
datasets:
- BrianDsouzaAI/autotrain-data-tab-multi
widget:
  structuredData:
    Planned_Stories:
      - 10
      - 20
      - 30
    Delivered_Stories:
      - 11
      - 12
      - 13
co2_eq_emissions:
  emissions: 2.067391665478424
---

# Model Trained Using AutoTrain

- Problem type: Multi-label Classification
- Model ID: 92337144714
- CO2 Emissions (in grams): 2.0674

## Validation Metrics

- Loss: 3.634

## Usage

```python
import json
import joblib

import numpy as np
import pandas as pd

models = 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 = []
for model_ in models:
    predictions_ = model_.predict(data)  # or model.predict_proba(data)[:, 1]
    predictions.append(predictions_)

predictions = np.column_stack(predictions)

```