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