Create clustering.pkl
Browse files- clustering.pkl +18 -0
clustering.pkl
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model_card = card.Card(dt)
|
| 2 |
+
limitations = (
|
| 3 |
+
"This model is made for educational purposes and is not ready to be used in"
|
| 4 |
+
" production."
|
| 5 |
+
)
|
| 6 |
+
model_description = (
|
| 7 |
+
"This is a Decision tree model trained on a 2D 4 corners dataset. "
|
| 8 |
+
)
|
| 9 |
+
model_card_authors = "brownsarahm "
|
| 10 |
+
model_card.add(
|
| 11 |
+
folded=False,
|
| 12 |
+
**{
|
| 13 |
+
"Model Card Authors": model_card_authors,
|
| 14 |
+
"Intended uses & limitations": limitations,
|
| 15 |
+
"Model description": model_description,
|
| 16 |
+
"Model description/Intended uses & limitations": limitations,
|
| 17 |
+
},
|
| 18 |
+
)
|