mjwagerman commited on
Commit
dcce0f8
·
1 Parent(s): fd698bd

yaml metadata readme

Browse files
Files changed (1) hide show
  1. README.md +32 -5
README.md CHANGED
@@ -1,11 +1,38 @@
1
- # bias-detector
2
  ---
3
  tags:
4
- - bias-detector
5
- - machine-learning
 
 
 
6
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
 
9
- Using/Experimenting with PEFT LoRA fine-tuning on previously trained models found on Hugging Face.
10
 
11
- Using NLP to classify, summarize, and rate the bias of a news source.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  tags:
3
+ - bias-detection
4
+ - nlp
5
+ - peft
6
+ - lora
7
+ - fine-tuning
8
  license: mit
9
+ datasets:
10
+ - your-dataset-name
11
+ model-index:
12
+ - name: Bias Detector
13
+ results:
14
+ - task:
15
+ type: text-classification
16
+ dataset:
17
+ name: Your Dataset Name
18
+ type: dataset-type
19
+ metrics:
20
+ - type: accuracy
21
+ value: 0.92
22
  ---
23
 
24
+ # Bias Detector
25
 
26
+ This model is fine-tuned using **PEFT LoRA** on existing **Hugging Face models** to classify and evaluate the bias in news sources.
27
+
28
+ ## Model Details
29
+ - **Architecture:** Transformer-based (e.g., BERT, RoBERTa)
30
+ - **Fine-tuning Method:** Parameter Efficient Fine-Tuning (LoRA)
31
+ - **Use Case:** Bias classification, text summarization, sentiment analysis
32
+ - **Dataset:** [Your Dataset Name](https://huggingface.co/datasets/your-dataset)
33
+ - **Training Framework:** PyTorch + Transformers
34
+
35
+ ## Usage
36
+ To use this model, install the necessary libraries:
37
+ ```bash
38
+ pip install transformers torch