Add pipeline tag and library name
Browse filesThis PR adds the `pipeline_tag` and `library_name` to the model card metadata, improving discoverability and clarity. The `pipeline_tag` is set to `text-ranking` based on the model's description and usage examples. The `library_name` is set to `transformers` due to the provided code examples using the `transformers` library.
README.md
CHANGED
@@ -1,10 +1,13 @@
|
|
1 |
---
|
2 |
-
license: cc-by-sa-4.0
|
3 |
-
language:
|
4 |
-
- en
|
5 |
base_model:
|
6 |
- meta-llama/Llama-3.1-8B
|
|
|
|
|
|
|
|
|
|
|
7 |
---
|
|
|
8 |
## Model Summary
|
9 |
ReasonIR-8B is the first retriever specifically trained for general reasoning tasks, achieving the state-of-the-art retrieval performance
|
10 |
on BRIGHT (reasoning-intensive retrieval).
|
|
|
1 |
---
|
|
|
|
|
|
|
2 |
base_model:
|
3 |
- meta-llama/Llama-3.1-8B
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
license: cc-by-sa-4.0
|
7 |
+
pipeline_tag: text-ranking
|
8 |
+
library_name: transformers
|
9 |
---
|
10 |
+
|
11 |
## Model Summary
|
12 |
ReasonIR-8B is the first retriever specifically trained for general reasoning tasks, achieving the state-of-the-art retrieval performance
|
13 |
on BRIGHT (reasoning-intensive retrieval).
|