lx865712528
commited on
Commit
•
e1cbe30
1
Parent(s):
064d2e1
Update README.md
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ datasets:
|
|
4 |
- ms_marco
|
5 |
language:
|
6 |
- en
|
7 |
-
pipeline_tag:
|
8 |
---
|
9 |
|
10 |
# MASTER: Multi-task Pre-trained Bottlenecked Masked Autoencoders are Better Dense Retrievers
|
@@ -15,13 +15,14 @@ Code: [https://github.com/microsoft/SimXNS/tree/main/MASTER](https://github.com/
|
|
15 |
|
16 |
## Overview
|
17 |
|
18 |
-
This is the checkpoint after pretraining on the MS-MARCO corpus.
|
19 |
-
|
20 |
-
You may use this checkpoint for finetuning.
|
21 |
|
22 |
## Useage
|
23 |
|
24 |
|
25 |
To load this checkpoint for initialization, you may follow:
|
26 |
```python
|
27 |
-
|
|
|
|
|
|
|
|
4 |
- ms_marco
|
5 |
language:
|
6 |
- en
|
7 |
+
pipeline_tag: feature-extraction
|
8 |
---
|
9 |
|
10 |
# MASTER: Multi-task Pre-trained Bottlenecked Masked Autoencoders are Better Dense Retrievers
|
|
|
15 |
|
16 |
## Overview
|
17 |
|
18 |
+
This is the checkpoint after pretraining on the MS-MARCO corpus. **You may use this checkpoint as the initialization for finetuning.**
|
|
|
|
|
19 |
|
20 |
## Useage
|
21 |
|
22 |
|
23 |
To load this checkpoint for initialization, you may follow:
|
24 |
```python
|
25 |
+
from transformers import AutoModel
|
26 |
+
|
27 |
+
model = AutoModel.from_pretrained('lx865712528/master-base-pretrained-msmarco')
|
28 |
+
```
|