emirhanboge commited on
Commit
79066c0
·
verified ·
1 Parent(s): 2f44270

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md CHANGED
@@ -43,3 +43,18 @@ configs:
43
  - split: test
44
  path: data/test-*
45
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  - split: test
44
  path: data/test-*
45
  ---
46
+ # QQP (Modified for LLaMA 1B)
47
+
48
+ This dataset is a modified version of the **Quora Question Pairs (QQP)** dataset for duplicate question classification.
49
+
50
+ ## **Modifications:**
51
+ - Labels were originally `"duplicate"` and `"not duplicate"`, now converted to integers (`0` and `1`).
52
+ - The `question1` and `question2` columns were renamed to `text1` and `text2`.
53
+ - Each example includes a task prefix: `Task: QQP | Q1: ... Q2: ...`
54
+ - Tokenized using the **LLaMA-1B tokenizer**.
55
+ - Maximum sequence length is **128 tokens**.
56
+
57
+ ## **Dataset Usage:**
58
+ ```python
59
+ from datasets import load_dataset
60
+ dataset = load_dataset("emirhanboge/qqp_llama1b_modified")