Transformers
PyTorch
Arabic
encoder-decoder
text2text-generation
Transformer
MSA
Arabic Text Summarization
Arabic News Title Generation
Arabic Paraphrasing
Instructions to use malmarjeh/transformer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use malmarjeh/transformer with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("malmarjeh/transformer") model = AutoModelForSeq2SeqLM.from_pretrained("malmarjeh/transformer") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,7 +14,9 @@ widget:
|
|
| 14 |
# An Arabic abstractive text summarization model
|
| 15 |
A Transformer-based encoder-decoder model which has been trained on a dataset of 384,764 paragraph-summary pairs.
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
|
| 19 |
The model can be used as follows:
|
| 20 |
```python
|
|
|
|
| 14 |
# An Arabic abstractive text summarization model
|
| 15 |
A Transformer-based encoder-decoder model which has been trained on a dataset of 384,764 paragraph-summary pairs.
|
| 16 |
|
| 17 |
+
Paper: [Arabic abstractive text summarization using RNN-based and transformer-based architectures](https://www.sciencedirect.com/science/article/abs/pii/S0306457322003284).
|
| 18 |
+
|
| 19 |
+
Dataset: [link](https://data.mendeley.com/datasets/7kr75c9h24/1).
|
| 20 |
|
| 21 |
The model can be used as follows:
|
| 22 |
```python
|