Add README
Browse files
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.
|