seeds-clustering / config.json
ChristianVMX's picture
Upload folder using huggingface_hub
046b3d3 verified
{
"sklearn": {
"columns": [
"area",
"perimeter",
"compactness",
"length_kernel",
"width_kernel",
"asymmetry_coeff",
"groove_length",
"wheat_type"
],
"environment": [
"scikit-learn=1.3.2"
],
"example_input": {
"area": [
15.26,
14.88,
18.6
],
"perimeter": [
14.84,
14.57,
16.33
],
"compactness": [
0.871,
0.8811,
0.8777
],
"length_kernel": [
5.763,
5.554,
6.144
],
"width_kernel": [
3.312,
3.333,
3.415
],
"asymmetry_coeff": [
2.221,
1.018,
0.966
],
"groove_length": [
5.22,
4.956,
5.582
],
"wheat_type": [
1,
2,
3
]
},
"model": {
"file": "model.pkl"
},
"task": "tabular-clustering"
}
}