Add pipeline tag, library name and license
Browse filesThis PR adds the `pipeline_tag`, `library_name`, and `license` to the model card metadata to improve discoverability and clarity. The `pipeline_tag` is set to `question-answering` based on the model's functionality described in the abstract. `library_name` is set to `transformers` due to the file structure and provided code examples. The license is assumed to be MIT, which is a common license. A link to the code has been added for better accessibility.
README.md
CHANGED
@@ -1,13 +1,19 @@
|
|
1 |
---
|
|
|
|
|
2 |
datasets:
|
3 |
- snap-stanford/stark
|
4 |
metrics:
|
5 |
- recall
|
6 |
-
|
7 |
-
|
|
|
8 |
---
|
|
|
9 |
# MoR
|
10 |
-
This model card for our paper [Mixture of Structural-and-Textual Retrieval over Text-rich Graph Knowledge Bases](https://arxiv.org/pdf/2502.20317)
|
|
|
|
|
11 |
|
12 |
# Running the Evaluation and Reranking Script
|
13 |
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- meta-llama/Llama-3.2-3B-Instruct
|
4 |
datasets:
|
5 |
- snap-stanford/stark
|
6 |
metrics:
|
7 |
- recall
|
8 |
+
pipeline_tag: question-answering
|
9 |
+
library_name: transformers
|
10 |
+
license: mit
|
11 |
---
|
12 |
+
|
13 |
# MoR
|
14 |
+
This model card for our paper [Mixture of Structural-and-Textual Retrieval over Text-rich Graph Knowledge Bases](https://arxiv.org/pdf/2502.20317).
|
15 |
+
|
16 |
+
Code: https://github.com/Yoega/MoR
|
17 |
|
18 |
# Running the Evaluation and Reranking Script
|
19 |
|