dv4aby commited on
Commit
0f0d8c7
·
verified ·
1 Parent(s): d87eb45

Update README

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - pytorch
4
+ - code-search
5
+ - ablation-study
6
+ ---
7
+
8
+ # reranker - Procedural Code Search
9
+
10
+ This is the `reranker` variant from the ablation study for the Structural Encoder V2.
11
+
12
+ ## Model Details
13
+ - **Variant**: reranker
14
+ - **Dataset**: POJ-104
15
+ - **Architecture**:
16
+ - `only_graph`: Pure Structural Encoder (R-GNN only)
17
+ - `concat`: GraphCodeBERT + R-GNN (Concatenation Fusion)
18
+ - `only_graph`: Pure Structural Encoder (R-GNN only)
19
+ - `concat`: GraphCodeBERT + R-GNN (Concatenation Fusion)
20
+ - `v2`: GraphCodeBERT + R-GNN (Gated Fusion)
21
+ - `reranker`: Stage B Procedural Similarity Reranker (Logistic Regression)
22
+
23
+ ## Usage
24
+ This model requires the custom code `structural_encoder_ablation.py` and `structural_encoder_v2.py`.