Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# ๐ง BERT Classifier for Black Article Detection
|
2 |
|
3 |
## ๐ Model Overview
|
@@ -26,6 +38,14 @@ print(result)
|
|
26 |
## ๐พ Training Dataset
|
27 |
- Hugging Face Dataset: [mikemcrae/black-article-training-data](https://huggingface.co/datasets/mikemcrae/black-article-training-data)
|
28 |
- CSV Columns: `sentence`, `black_story`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
## โ๏ธ Reproduction Instructions
|
31 |
```python
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- mikemcrae25/black_entity_classifier
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
metrics:
|
8 |
+
- accuracy
|
9 |
+
base_model:
|
10 |
+
- google-bert/bert-base-uncased
|
11 |
+
pipeline_tag: text-classification
|
12 |
+
---
|
13 |
# ๐ง BERT Classifier for Black Article Detection
|
14 |
|
15 |
## ๐ Model Overview
|
|
|
38 |
## ๐พ Training Dataset
|
39 |
- Hugging Face Dataset: [mikemcrae/black-article-training-data](https://huggingface.co/datasets/mikemcrae/black-article-training-data)
|
40 |
- CSV Columns: `sentence`, `black_story`
|
41 |
+
-
|
42 |
+
## ๐ Example Data Preview
|
43 |
+
```csv
|
44 |
+
sentence,black_story
|
45 |
+
"The Black Panthers organized a march for civil rights.",1
|
46 |
+
"The mayor discussed the city's budget for next year.",0
|
47 |
+
"Black students protested against segregation policies.",1
|
48 |
+
"Black car for sale.",0
|
49 |
|
50 |
## โ๏ธ Reproduction Instructions
|
51 |
```python
|