elsagranger commited on
Commit
c7d1e92
·
verified ·
1 Parent(s): 8892cce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -18,3 +18,26 @@ configs:
18
  - split: train
19
  path: data/train-*
20
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  - split: train
19
  path: data/train-*
20
  ---
21
+
22
+
23
+ # Evaluation Dataset for Assembly Code Search
24
+
25
+ This is the evaluation dataset used in [Virtual Compiler Is All You Need For Assembly Code Search]().
26
+
27
+ ## Source
28
+
29
+ Various ways used to construct it:
30
+
31
+ - For Windows and macOS, we manually reverse-engineered many closed-source applications and constructed natural language queries for the assembly code.
32
+ - For Linux, we extract the source code and corresponding docstrings. We then verify the relevance between the source code, docstrings, and the corresponding assembly code. Then we filtered out the pairs with low relevance.
33
+
34
+ ## Usage
35
+
36
+ This dataset is metadata for indexing only, as the binary is too large to put into a dataset.
37
+
38
+ For each row in the dataset, there are two columns:
39
+
40
+ - The `asm` column contains one or multiple tuples (a list of length equals two), the first item is the binary name and the second item is the address of the assembly code in that binary.
41
+ - The `desc` column contains one or multiple strings, each strings represents a natural language query.
42
+
43
+ The binaries can be downloaded here: [eval-binaries](https://cloud.vul337.team:9443/s/ygNnr4zm6KWL2jN)