Create model_card.json
Browse files- model_card.json +16 -0
model_card.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "BERT Text Classification Model",
|
3 |
+
"task": "Text Classification",
|
4 |
+
"model_type": "BERT",
|
5 |
+
"description": "A simple demo model for text classification using BERT.",
|
6 |
+
"keywords": ["text classification", "BERT", "demo"],
|
7 |
+
"license": "MIT",
|
8 |
+
"source": "https://huggingface.co/transformers/model_doc/bert.html",
|
9 |
+
"tags": ["demo", "text classification", "BERT"],
|
10 |
+
"references": [
|
11 |
+
{
|
12 |
+
"title": "BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding",
|
13 |
+
"url": "https://arxiv.org/abs/1810.04805"
|
14 |
+
}
|
15 |
+
]
|
16 |
+
}
|