Add pipeline tag, link to paper and code

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +24 -3
README.md CHANGED
@@ -1,3 +1,24 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: graph-ml
4
+ ---
5
+
6
+ # Regularized Langevin Dynamics for Combinatorial Optimization
7
+
8
+ This repository contains the official implementation for the paper [Regularized Langevin Dynamics for Combinatorial Optimization](https://huggingface.co/papers/2502.00277), presented at ICML 2025.
9
+
10
+ The paper proposes Regularized Langevin Dynamics (RLD), a simple yet effective sampling framework for combinatorial optimization (CO). RLD enhances discrete Langevin dynamics by enforcing an expected distance between sampled and current solutions, thereby avoiding local minima. This framework develops two CO solvers: a simulated annealing approach (RLSA) and a neural network-based approach (RLNN).
11
+
12
+ For more details on the implementation and usage, please refer to the official [GitHub repository](https://github.com/Shengyu-Feng/RLD4CO).
13
+
14
+ ## Citation
15
+ If you find our work helpful or inspiring, please feel free to cite it:
16
+ ```bibtex
17
+ @inproceedings{feng2025regularizedlangevindynamicscombinatorial,
18
+ title={Regularized Langevin Dynamics for Combinatorial Optimization},
19
+ author={Shengyu Feng and Yiming Yang},
20
+ booktitle={International conference on machine learning},
21
+ year={2025},
22
+ organization={PMLR}
23
+ }
24
+ ```