Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-2.0
|
3 |
---
|
4 |
+
|
5 |
+
PISCES is a pre-trained many-to-many summarization model that learns language modeling, cross-lingual ability and summarization ability through a designed three-stage pre-training.
|
6 |
+
|
7 |
+
This model is introduced by *Towards Unifying Multi-Lingual and Cross-Lingual Summarization* (To appear in ACL 2023 main conference)
|
8 |
+
|
9 |
+
|
10 |
+
```python
|
11 |
+
tokenizer = MBart50Tokenizer.from_pretrained('Krystalan/PISCES')
|
12 |
+
model = MBartForConditionalGeneration.from_pretrained('Krystalan/PISCES')
|
13 |
+
```
|