Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
---
|
5 |
|
6 |
# Model Card for Model ID
|
@@ -48,4 +58,4 @@ def clean_text(text):
|
|
48 |
text = re.sub(r'\s+', ' ', text).strip()
|
49 |
text = re.sub(r'[^a-zA-Z0-9\s]', '', text)
|
50 |
return re.sub("\s\s+", " ", text)
|
51 |
-
```
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
+
tags:
|
4 |
+
- nlp
|
5 |
+
- classification
|
6 |
+
license: apache-2.0
|
7 |
+
datasets:
|
8 |
+
- zeyadusf/daigt
|
9 |
+
language:
|
10 |
+
- en
|
11 |
+
base_model:
|
12 |
+
- FacebookAI/roberta-base
|
13 |
+
pipeline_tag: text-classification
|
14 |
---
|
15 |
|
16 |
# Model Card for Model ID
|
|
|
58 |
text = re.sub(r'\s+', ' ', text).strip()
|
59 |
text = re.sub(r'[^a-zA-Z0-9\s]', '', text)
|
60 |
return re.sub("\s\s+", " ", text)
|
61 |
+
```
|