|
--- |
|
tags: |
|
- autotrain |
|
- tabular |
|
- classification |
|
- tabular-classification |
|
datasets: |
|
- jrosenzw/autotrain-data-diabetes-detection-2 |
|
co2_eq_emissions: |
|
emissions: 0.6960832080920549 |
|
library_name: sklearn |
|
--- |
|
|
|
# Model Trained Using AutoTrain |
|
|
|
- Problem type: Binary Classification |
|
- Model ID: 74371139581 |
|
- CO2 Emissions (in grams): 0.6961 |
|
|
|
## Validation Metrics |
|
|
|
- Loss: 0.468 |
|
- Accuracy: 0.753 |
|
- Precision: 0.667 |
|
- Recall: 0.593 |
|
- AUC: 0.839 |
|
- F1: 0.627 |
|
|
|
## 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) |
|
|
|
``` |