File size: 2,253 Bytes
871f714
 
7d0372c
 
 
 
 
 
 
 
 
3e96baa
4699d28
 
871f714
7d0372c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4699d28
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
59
60
61
62
63
64
65
66
67
68
69
70
71
---
license: mit
metrics:
- accuracy
- precision
- recall
- f1
library_name: sklearn
pipeline_tag: tabular-classification
tags:
- biology
- 🐧
datasets:
- SIH/palmer-penguins
---

# Palmer Penguins Species Classifier

## Model description

This model is a scikit-learn classifier trained to predict the species of penguins in the Palmer Penguins dataset. 
The dataset contains measurements of penguin species including the species itself, making it suitable for classification tasks.

The model uses features such as culmen length, culmen depth, flipper length, and body mass to predict the species of penguins.

## Intended uses & limitations

The model is intended for classifying the species of penguins based on their physical measurements. 
It can be used in applications related to penguin species classification and analysis.

Limitations:
- The model's performance may vary depending on the quality and representativeness of the input data.
- It is trained specifically on the Palmer Penguins dataset and may not generalize well to other penguin datasets or species outside of the dataset.

## Training data

The model is trained on the Palmer Penguins dataset, which contains measurements of penguin species including Adelie, Chinstrap, and Gentoo. 
The dataset is publicly available and can be accessed [here](https://github.com/allisonhorst/palmerpenguins).

## Training procedure

The model is trained using scikit-learn, a popular machine learning library in Python. 
It uses a classification algorithm (e.g., Random Forest, Support Vector Machine) to learn the relationship between the input features (culmen length, culmen depth, flipper length, body mass) and the target variable (species).

## Model in action

```python
# Load the model
from sklearn.externals import joblib

model = joblib.load('path/to/your/model.pkl')

# Input features
features = {
    'culmen_length_mm': 39.1,
    'culmen_depth_mm': 18.7,
    'flipper_length_mm': 181,
    'body_mass_g': 3750
}

# Predict species
predicted_species = model.predict([list(features.values())])[0]
print(f"Predicted species: {predicted_species}")
```


### 🐧 Disclaimer

No penguins were harmed while training this model 🐧.

We were noot involved in collecting the 🐧 data.