Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Model Card: Assisting Mathematical Formalization with A Learning-based Premise Retriever
|
2 |
+
|
3 |
+
## Model Description
|
4 |
+
|
5 |
+
This model is designed for **premise retrieval** in **Lean**, based on the **state representation** of Lean. The model follows the architecture described in the paper:
|
6 |
+
|
7 |
+
[Assisting Mathematical Formalization with A Learning-based Premise Retriever](https://arxiv.org/abs/2501.13959)
|
8 |
+
|
9 |
+
The model implementation and code are available at:
|
10 |
+
|
11 |
+
[GitHub Repository](https://github.com/ruc-ai4math/Premise-Retrieval)
|
12 |
+
|
13 |
+
[Try our model](premise-search.com)
|
14 |
+
|
15 |
+
---
|
16 |
+
|
17 |
+
## Available Models
|
18 |
+
|
19 |
+
The repository provides several models for different tasks:
|
20 |
+
|
21 |
+
### Pre-trained Models
|
22 |
+
Located in the `Pretrain_Model` folder:
|
23 |
+
|
24 |
+
- **410_stable_random**: Pre-trained model for **retrieval fine-tuning**.
|
25 |
+
- **410_stable_random_1024**: Pre-trained model for **reranking fine-tuning**.
|
26 |
+
|
27 |
+
### Fine-tuned Models
|
28 |
+
|
29 |
+
#### Retrieval Fine-tuned Models
|
30 |
+
Located in the `Finetune_Model` folder:
|
31 |
+
|
32 |
+
- Models fine-tuned on specific datasets for **retrieval tasks**.
|
33 |
+
|
34 |
+
#### Rerank Fine-tuned Models
|
35 |
+
Located in the `Rerank` folder:
|
36 |
+
|
37 |
+
- Models fine-tuned on specific datasets for **reranking tasks**.
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
## Citation
|
42 |
+
If you use this model, please cite the following paper:
|
43 |
+
|
44 |
+
```
|
45 |
+
@misc{tao2025assistingmathematicalformalizationlearningbased,
|
46 |
+
title={Assisting Mathematical Formalization with A Learning-based Premise Retriever},
|
47 |
+
author={Yicheng Tao and Haotian Liu and Shanwen Wang and Hongteng Xu},
|
48 |
+
year={2025},
|
49 |
+
eprint={2501.13959},
|
50 |
+
archivePrefix={arXiv},
|
51 |
+
primaryClass={cs.CL},
|
52 |
+
url={https://arxiv.org/abs/2501.13959},
|
53 |
+
}
|
54 |
+
```
|