| model_card = card.Card(dt) | |
| limitations = ( | |
| "This model is made for educational purposes and is not ready to be used in" | |
| " production." | |
| ) | |
| model_description = ( | |
| "This is a Decision tree model trained on a 2D 4 corners dataset. " | |
| ) | |
| model_card_authors = "brownsarahm " | |
| model_card.add( | |
| folded=False, | |
| **{ | |
| "Model Card Authors": model_card_authors, | |
| "Intended uses & limitations": limitations, | |
| "Model description": model_description, | |
| "Model description/Intended uses & limitations": limitations, | |
| }, | |
| ) |