Update README.md
Browse files
README.md
CHANGED
|
@@ -12,4 +12,23 @@ Here is a 100 repositories from [Codearena][https://code4rena.com/audits] parsed
|
|
| 12 |
|
| 13 |
Dataset can be used for tasks like code clone detection (similar bugs search), code reconstruction with context pruning. Dataset is ready to be used in GNN.
|
| 14 |
|
| 15 |
-
You can see usage of dataset as RAG at [github][https://github.com/YouOnlyLive1ce/bug_search]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
Dataset can be used for tasks like code clone detection (similar bugs search), code reconstruction with context pruning. Dataset is ready to be used in GNN.
|
| 14 |
|
| 15 |
+
You can see usage of dataset as RAG at [github][https://github.com/YouOnlyLive1ce/bug_search]
|
| 16 |
+
|
| 17 |
+
# Structure
|
| 18 |
+
auditits_info.json <-main file for easy paths navigantion
|
| 19 |
+
/processed repositories
|
| 20 |
+
/repository1
|
| 21 |
+
/file1
|
| 22 |
+
/function1(node) <- contains code, relationships(edges) with other functions
|
| 23 |
+
/function2
|
| 24 |
+
/file2
|
| 25 |
+
/function3
|
| 26 |
+
/function4
|
| 27 |
+
/repository2
|
| 28 |
+
...
|
| 29 |
+
/reports
|
| 30 |
+
/repository1
|
| 31 |
+
/vulnerability1-code.txt <-actual code with bug
|
| 32 |
+
/vulneralbility1-explain.txt <-human explanation
|
| 33 |
+
...
|
| 34 |
+
...
|