JR-James-0125 commited on
Commit
896f8ff
·
verified ·
1 Parent(s): cb618db

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -34,7 +34,7 @@ Each problem was sampled 64 times. `maj@64` is majority-vote accuracy; `pass@k`
34
  ```python
35
  from transformers import AutoModelForCausalLM, AutoTokenizer
36
 
37
- model_id = "JR-James-0125/StepORLM-SOLID-opt"
38
  tokenizer = AutoTokenizer.from_pretrained(model_id)
39
  model = AutoModelForCausalLM.from_pretrained(
40
  model_id,
@@ -44,3 +44,19 @@ model = AutoModelForCausalLM.from_pretrained(
44
  ```
45
 
46
  The generated optimization code expects a compatible COPT environment for execution.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  ```python
35
  from transformers import AutoModelForCausalLM, AutoTokenizer
36
 
37
+ model_id = "AIOR-Research/SOLID-StepORLM"
38
  tokenizer = AutoTokenizer.from_pretrained(model_id)
39
  model = AutoModelForCausalLM.from_pretrained(
40
  model_id,
 
44
  ```
45
 
46
  The generated optimization code expects a compatible COPT environment for execution.
47
+
48
+ ## Citation
49
+
50
+ If you use SOLID in your research, please cite:
51
+
52
+ ```bibtex
53
+ @misc{zhu2026verifiedanswerssolverinformedselfdistillation,
54
+ title={Beyond Verified Answers: Solver-Informed Self-Distillation for Bootstrapping Operations Research Language Models},
55
+ author={Rui Zhu and Minglong Cao and Chenyu Zhou and Jianghao Lin and Dongdong Ge},
56
+ year={2026},
57
+ eprint={2609.09957},
58
+ archivePrefix={arXiv},
59
+ primaryClass={math.OC},
60
+ url={https://arxiv.org/abs/2609.09957},
61
+ }
62
+ ```