Master regulators of evolution and the microbiome in higher dimensions
Paper
•
2009.12277
•
Published
This model is a fine-tuned version of vinai/bartpho-syllable on the phamtheds/news-dataset-vietnameses dataset. It is designed to generate abstractive summaries for Vietnamese news articles.
The model can be used for summarizing Vietnamese texts, specifically news articles. It takes a full article text as input and outputs a concise summary.
Use the code below to get started with the model.
from transformers import pipeline
summarizer = pipeline("summarization", model="your-username/bartpho-vietnamese-summarization")
article = """
[Insert your long Vietnamese news article here]
"""
summary = summarizer(article, max_length=128, min_length=30, length_penalty=2.0, num_beams=4)
print(summary[0]['summary_text'])
The model was trained on the phamtheds/news-dataset-vietnameses, which contains Vietnamese news articles and their corresponding summaries.
The model was fine-tuned using the Hugging Face Trainer API on a T4 GPU.
The model was evaluated using the ROUGE metric (ROUGE-1, ROUGE-2, ROUGE-L).
If you use this model, please cite the original BARTpho paper:
@inproceedings{tran2020bartpho,
title={BARTpho: Pre-trained Sequence-to-Sequence Models for Vietnamese},
author={Tran, Nguyen Luong and Phan, Duong Minh and Nguyen, Dat Quoc},
booktitle={Interspeech},
year={2020}
}
***
### How to apply this:
1. Open your repository on Hugging Face.
2. Click on the **README.md** file.
3. Click the **Edit** button.
4. **Delete everything** currently in the file.
5. **Paste** the block above.
6. **Important:** Change `your-username/bartpho-vietnamese-summarization` to your actual username and repo name.
7. Click **Commit changes**.
This will render a clean, professional page with the correct metadata tags on the right sidebar (Dataset links, Language tags, License, etc.).