LLM4Binary commited on
Commit
c7e2b77
·
verified ·
1 Parent(s): d5ab958

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -1,4 +1,26 @@
1
  ---
2
  license: mit
3
  ---
4
- This is the benchmark of [LLM4Decompile](https://github.com/albertan017/LLM4Decompile) project.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ This is the benchmark of [LLM4Decompile](https://github.com/albertan017/LLM4Decompile) project.
5
+
6
+ ## About
7
+ * **Decompile-Bench** is the first open-source dataset comprising two million binary-source function pairs condensed from 100 million collected function pairs, i.e., 450GB of binaries compiled from permissively licensed GitHub projects.
8
+ * **C and C++ Support:** These datasets include both **C** and **C++** source code, whereas earlier models (LLM4Decompile-V1.5, V2) and the HumanEval-Decompile dataset were limited to C only.
9
+
10
+ ## Columns
11
+ It contains the following columns:
12
+ ```
13
+ {
14
+ "name":"demangled name for the function",
15
+ "code":"source code",
16
+ "asm":"assembly",
17
+ "file":"source code path"
18
+ }
19
+ ```
20
+
21
+ ## Meta data
22
+ * [raw data](https://huggingface.co/datasets/LLM4Binary/decompile-bench-raw) contains 100M raw fuctions that decompile-bench is condensed from.
23
+ * The [binaries](https://huggingface.co/datasets/LLM4Binary/decompile-bench-bins) for the decompile-bench is also released, with debugging information helpful for tracing types and names.
24
+
25
+ ## Others
26
+ For more details, please check [LLM4Decompile](https://github.com/albertan017/LLM4Decompile) project.