AmanPriyanshu commited on
Commit
ac42d29
·
verified ·
1 Parent(s): ef92153

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -3
README.md CHANGED
@@ -1,3 +1,75 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-retrieval
5
+ - question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - retrieval
10
+ - rlvr
11
+ - search
12
+ - distractor-mining
13
+ size_categories:
14
+ - 100K<n<1M
15
+ ---
16
+
17
+ # RLVR-Env-Retrieval-Source-code-search-net-python
18
+
19
+ RLVR-ready retrieval environment derived from [Nan-Do/code-search-net-python](https://huggingface.co/datasets/Nan-Do/code-search-net-python).
20
+
21
+ **Author:** [Aman Priyanshu](https://huggingface.co/AmanPriyanshu)
22
+
23
+ ## What Is This
24
+
25
+ A 100k-row retrieval QA dataset where each row contains a question, ground-truth chunks, and pre-mined distractor chunks (random + semantically similar). Designed for training and evaluating retrieval agents in an RLVR (Reinforcement Learning with Verifiable Rewards) setup — the agent searches through distractors to find the correct chunk(s).
26
+
27
+ **Domain:** Python open-source functions from GitHub (CodeSearchNet)
28
+
29
+ ## Source
30
+
31
+ Derived from [Nan-Do/code-search-net-python](https://huggingface.co/datasets/Nan-Do/code-search-net-python) (455,243 unique functions).
32
+ Original license: **Apache 2.0** — retained here.
33
+
34
+ ## Schema
35
+
36
+ ### qa.parquet (100,000 rows)
37
+
38
+ | Column | Type | Description |
39
+ |---|---|---|
40
+ | `qa_id` | string | Unique ID (`search_py_0`, `search_py_1`, ...) |
41
+ | `question` | string | The retrieval query |
42
+ | `gt_chunks` | JSON string | List of ground-truth chunk texts. 1 target code chunk per question (the function matching the summary) |
43
+ | `random_chunks` | JSON string | List of random distractor texts. ~500 random code chunks (>=20 chars, deduplicated against gt and similar) |
44
+ | `similar_chunks` | JSON string | List of hard-negative distractor texts. ~178 similar chunks via MiniLM cosine (<0.97) + char trigram edit-distance (<0.97 seq ratio), deduplicated |
45
+
46
+ ### metadata.parquet (100,000 rows)
47
+
48
+ | Column | Type | Description |
49
+ |---|---|---|
50
+ | `qa_id` | string | Matches qa.parquet |
51
+ | ... | ... | chunk_idx, func_name, repo, char_count |
52
+
53
+ ### chunks.parquet
54
+
55
+ 455,243 code chunks with MiniLM embeddings. Kept for reference — not needed at inference time.
56
+
57
+ ## Deduplication
58
+
59
+ Within each row: gt > similar > random priority. No chunk text appears in more than one column per row. Similar chunks are internally deduplicated. Random chunks are filtered against both gt and similar.
60
+
61
+ ## How To Use
62
+
63
+ ```python
64
+ import json
65
+ import pyarrow.parquet as pq
66
+
67
+ t = pq.read_table("qa.parquet")
68
+ row = {col: t.column(col)[0].as_py() for col in t.column_names}
69
+ gt = json.loads(row["gt_chunks"])
70
+ distractors = json.loads(row["random_chunks"]) + json.loads(row["similar_chunks"])
71
+ ```
72
+
73
+ ## License
74
+
75
+ Apache 2.0 (inherited from source dataset).