toolevalxm commited on
Commit
a16adf4
·
verified ·
1 Parent(s): 81bff0a

Add dataset README

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CodeAssist: Code Generation Research Project
2
+
3
+ <p align="left">
4
+ 📑 <a href="https://huggingface.co/papers/xxxx.xxxxx" target="_blank">Paper</a> &nbsp&nbsp | &nbsp&nbsp 🌐 <a href="https://codeassist.github.io/" target="_blank">Project Page</a> &nbsp&nbsp | &nbsp&nbsp 💾 <a href="https://huggingface.co/collections/toolevalxm/codeassist-resources" target="_blank">Released Resources</a> &nbsp&nbsp | &nbsp&nbsp 📦 <a href="https://github.com/xmhtoolathlon/Annoy-DataSync" target="_blank">Repo</a>
5
+
6
+ We release the raw code data for our CodeAssist project, adopted from the original dataset from BigCode team.
7
+
8
+ The data format for each line in the `code_samples_filtered.jsonl` is as follows:
9
+
10
+ ```
11
+ {
12
+ "code": <the source code content>,
13
+ "language": <programming language>,
14
+ "repo_name": <original repository name>,
15
+ "path": <file path in original repo>,
16
+ "license": <license of the original repository>,
17
+ "size": <file size in bytes>,
18
+ "meta": <additional metadata>
19
+ }
20
+ ```
21
+
22
+ This dataset contains filtered Python code samples extracted from the bigcode/starcoderdata dataset, which is a cleaned and deduplicated version of The Stack.
23
+
24
+ *Note: Some samples may have incomplete metadata due to filtering during the extraction process.