File size: 784 Bytes
68189c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
tags:
- autotrain
- tabular
- classification
- tabular-classification
datasets:
- Kluuking/autotrain-data-flight-delay
co2_eq_emissions:
  emissions: 3.325994852017075
---

# Model Trained Using AutoTrain

- Problem type: Binary Classification
- Model ID: 3621096840
- CO2 Emissions (in grams): 3.3260

## Validation Metrics

- Loss: 0.531
- Accuracy: 0.748
- Precision: 0.609
- Recall: 0.174
- AUC: 0.690
- F1: 0.271

## 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)

```