mikemcrae25 commited on
Commit
a128031
ยท
verified ยท
1 Parent(s): 74d9649

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
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