File size: 792 Bytes
c786e87 |
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:
- kem000123/autotrain-data-model1-binary-class
co2_eq_emissions:
emissions: 4.092983833698762
---
# Model Trained Using AutoTrain
- Problem type: Binary Classification
- Model ID: 1843363194
- CO2 Emissions (in grams): 4.0930
## Validation Metrics
- Loss: 0.036
- Accuracy: 1.000
- Precision: 1.000
- Recall: 1.000
- AUC: 1.000
- F1: 1.000
## 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)
``` |