promotion commited on
Commit
11c0357
·
verified ·
1 Parent(s): 55d38a6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: pytorch
3
+ tags:
4
+ - polymer
5
+ - molecular-editing
6
+ - multi-objective-optimization
7
+ - hypervolume
8
+ - preference-alignment
9
+ - reproducibility
10
+ base_model: HAYDERphd/polyBERT
11
+ ---
12
+
13
+ # PolyEdit multi-objective Hypervolume and MIP, five seeds
14
+
15
+ This repository preserves the preference-conditioned policies, Egc and Egb verifiers, and frozen-DFT evaluation records used in the 2026 GPU project interim report.
16
+
17
+ ## Contents
18
+
19
+ - `checkpoints`: policy and two fine-tuned verifier bundles for seeds 1004 to 1008
20
+ - `results`: per-seed task-level results and W&B links
21
+ - `summaries`: aggregate metrics, analysis, evaluation manifest, and verification receipt
22
+ - `code`: exact metric, training, aggregation, and launch code
23
+ - `load_polyedit_bundle.py`: minimal policy and verifier loader
24
+
25
+ ## Protocol
26
+
27
+ - Data: jointly labeled real DFT Egc and Egb records
28
+ - Split: 290 train and 253 evaluation polymers, with zero node overlap between induced edit graphs
29
+ - Evaluation: 22 sources, four property directions, and 11 preference weights
30
+ - Scale: 88 source-direction tasks and 968 preference decisions per seed
31
+ - Candidate budget: 11 outputs per task, each with edit budget 3
32
+ - Training: two polyBERT verifiers for 8 epochs and preference-conditioned SFT for 60 epochs
33
+ - Seeds: 1004, 1005, 1006, 1007, 1008
34
+ - Final evaluator: frozen DFT label lookup
35
+ - Base: `HAYDERphd/polyBERT`, revision `7bf9ed32ac54dea5bc163cf90100728b49341750`
36
+
37
+ ## Mean results
38
+
39
+ Values are five-seed means with 95% t confidence intervals.
40
+
41
+ | Method | Hypervolume | MIP | Preference regret | Near-optimal |
42
+ |---|---:|---:|---:|---:|
43
+ | SFT | 0.326 ± 0.009 | 0.554 ± 0.012 | 0.034 ± 0.012 | 0.782 ± 0.091 |
44
+ | Random | 0.328 ± 0.005 | 0.500 ± 0.000 | 0.088 ± 0.000 | 0.448 ± 0.019 |
45
+ | Greedy verifier | 0.337 ± 0.004 | 0.568 ± 0.003 | 0.019 ± 0.003 | 0.833 ± 0.021 |
46
+ | Oracle grid | 0.355 ± 0.000 | 0.588 ± 0.000 | 0.000 ± 0.000 | 1.000 ± 0.000 |
47
+
48
+ SFT did not improve over the predeclared greedy verifier baseline. Its relative changes were -3.30 ± 3.08% for Hypervolume and -2.50 ± 2.30% for MIP. The negative result is retained to avoid method or seed selection bias.
49
+
50
+ ## Limitations
51
+
52
+ The 88 tasks come from only 22 independent polymer sources. The four direction combinations and 11 weights discretize the preference space. Oracle grid uses evaluation DFT labels for candidate selection and is only a diagnostic upper bound. The result is restricted to the sparse within-dataset graph with both Egc and Egb labels.
53
+
54
+ ## Code
55
+
56
+ Main project: https://github.com/promotion-kim/POLYEDIT