toolevalxm commited on
Commit
3796a8c
ยท
verified ยท
1 Parent(s): b163895

Add README

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CodeReview: Intelligent Code Review System
2
+
3
+ ๐Ÿ“‘ [Paper](https://huggingface.co/papers/xxxx.xxxxx) | ๐ŸŒ [Project Page](https://codereview.github.io/) | ๐Ÿ’พ [Released Resources](https://huggingface.co/collections/toolevalxm/codereview-67a978e28fd926b56a4f55a2) | ๐Ÿ“ฆ [Repo](https://github.com/xmhtoolathlon/Annoy-DataSync)
4
+
5
+ We release the raw data for our processed CodeReview-Synth dataset, derived from the original dataset from BigCode team.
6
+
7
+ The data format for each line in the `code_review_samples.jsonl` is as follows:
8
+ ```
9
+ {
10
+ "code_snippet": <the original code to be reviewed>,
11
+ "language": <programming language>,
12
+ "review_comments": <structured code review feedback>,
13
+ "severity": <issue severity level>,
14
+ "category": <review category type>,
15
+ "source": <the source of the raw code files>,
16
+ "meta": <meta information about this sample>
17
+ }
18
+ ```
19
+
20
+ Some samples may have incomplete review comments due to filtering constraints during processing.
21
+
22
+ *Note: Code review suggestions are generated through automated analysis and may require human verification for production use.