SAVRN
Search Contact SAVRN

Open-weight model · Summarization

mbart50-tradenewssum

by Daria Lyutova lyutovad/mbart50-tradenewssum

This model is a fine-tuned version of facebook/mbart-large-50-many-to-many-mmt on the TradeNewsSum dataset for multilingual abstractive summarization of foreign trade news in Russian and English.

Parameters611M
Context1,024
Weights2.4 GB
Licensemit
AccessOpen weights
Monthly Downloads1.5k

Runs On

What it takes to serve mbart50-tradenewssum (611M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 1.2 GB 1.5 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.6 GB 0.7 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.3 GB 0.4 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Daria Lyutova, published under mit, revision 51f6cc1d6c52.

This model is a fine-tuned version of facebook/mbart-large-50-many-to-many-mmt on the TradeNewsSum dataset for multilingual abstractive summarization of foreign trade news in Russian and English. This is a multilingual summarization model trained on economic and foreign trade news in Russian and English. It is based on the facebook/mbart-large-50-many-to-many-mmt architecture and fine-tuned specifically for the task of generating concise, informative summaries for news articles in the domain of international trade. - Generating abstractive summaries of foreign trade-related news in Russian and English. - Assisting analysts and journalists working with economic content. - Could be integrated…

Read Daria Lyutova's full model card

Model Card for tradenewssum-mbart

This model is a fine-tuned version of facebook/mbart-large-50-many-to-many-mmt on the TradeNewsSum dataset for multilingual abstractive summarization of foreign trade news in Russian and English.

Model Details

Model Description

This is a multilingual summarization model trained on economic and foreign trade news in Russian and English. It is based on the facebook/mbart-large-50-many-to-many-mmt architecture and fine-tuned specifically for the task of generating concise, informative summaries for news articles in the domain of international trade.

Model Sources

  • Repository: https://huggingface.co/lyutovad/mbart50-tradenewssum
  • Dataset: https://huggingface.co/datasets/lyutovad/TradeNewsSum

Uses

How to Get Started with the Model

from transformers import MBartForConditionalGeneration, MBart50TokenizerFast

model = MBartForConditionalGeneration.from_pretrained("lyutovad/tradenewssum-mbart")
tokenizer = MBart50TokenizerFast.from_pretrained("lyutovad/tradenewssum-mbart")

text = "Ваш новостной текст здесь / Your news article goes here."
lang = "ru"  # or "en"
tokenizer.src_lang = "ru_RU" if lang == "ru" else "en_XX"

inputs = tokenizer(text, return_tensors="pt", max_length=1024, truncation=True)
generated_ids = model.generate(**inputs, max_length=256, num_beams=4)
summary = tokenizer.decode(generated_ids[0], skip_special_tokens=True)
print(summary)

Direct Use

  • Generating abstractive summaries of foreign trade-related news in Russian and English.
  • Assisting analysts and journalists working with economic content.

Downstream Use

  • Could be integrated into news apps or research tools that require multilingual summarization.
  • Useful for training domain-specific summarization pipelines.

Out-of-Scope Use

  • Not suitable for general-purpose summarization outside the economic or trade domain.
  • Not intended for languages other than Russian and English.
  • Should not be used where factual precision is critical without human review, due to risk of hallucination.

Bias, Risks, and Limitations

As with most large language models, this model may:

  • Hallucinate or omit important factual details.
  • Be sensitive to domain shift — performs best on economic/trade texts.
  • Reflect biases present in the news sources used in the dataset.

Recommendations

Users should:

  • Apply human verification when using summaries in professional or sensitive settings.
  • Avoid use for non-economic domains without retraining.

Evaluation

Testing Data

Test split of the TradeNewsSum dataset.

Factors

Evaluated separately for Russian and English subsets.

Metrics

Language ROUGE-1 ROUGE-2 ROUGE-L ROUGE-Lsum METEOR BERTScore-F1 NER-F1
ru 0.5165 0.3646 0.5102 0.5093 0.7335 0.9533 0.707
en 0.6053 0.4640 0.5424 0.5427 0.5712 0.9344 0.643

ROUGE: Measures n-gram overlap between the generated summary and the reference.
METEOR: Takes into account synonyms and stemming.
BERTScore: Measures semantic similarity using contextual embeddings.
NER-F1: Measures preservation of named entities in summaries.

Configuration

Architecture
MBartForConditionalGeneration
Context length (tokens)
1,024
Layers
12
Vocabulary size
250,054
Stored precision
float32
Model type
mbart

Identity and Version

Repository
lyutovad/mbart50-tradenewssum
Publisher
Daria Lyutova
Task
Summarization
Modality
Text
Library
transformers
Parameters
611M parameters
Languages
en, ru
Revision
51f6cc1d6c52b9eaeba3c891519e9d1f09f502ad
First published
2025-05-17
Last updated
2025-05-19

Files and Weights

8 files, 2.4 GB in total. The weights are 1 file totalling 2.4 GB in safetensors.

Weights1 file · 2.4 GB
Configuration3 files · 3.3 KB
Tokenizer1 file · 11.0 KB
Documentation1 file · 4.0 KB
Other1 file · 5.1 MB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights2.4 GB a6478567ea79
config.jsonConfiguration1.4 KB
generation_config.jsonConfiguration226 B
special_tokens_map.jsonConfiguration1.7 KB
README.mdDocumentation4.0 KB
sentencepiece.bpe.modelOther5.1 MB cfc8146abe2a
.gitattributesRepository1.5 KB
tokenizer_config.jsonTokenizer11.0 KB

License and Download

License
mit
Access
Open weights, no gate
Download size
2.4 GB
Download from Daria Lyutova

Released by Daria Lyutova through its official repository on Hugging Face. Read the license.

Built From

  • Trained on (disclosed) lyutovad/TradeNewsSum

Memory Requirements

PrecisionWeights in memory
As published2.4 GB
16-bit1.2 GB
8-bit0.6 GB
4-bit0.3 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About mbart50-tradenewssum

How much GPU memory does mbart50-tradenewssum need?

About 1.5 GB at 16-bit and 0.4 GB at 4-bit: the weights (611M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run mbart50-tradenewssum on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use mbart50-tradenewssum commercially?

Yes. mbart50-tradenewssum is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.

What is mbart50-tradenewssum's context length?

1,024 tokens, from the maximum position embeddings in its published configuration.

Similar Models

This model was fine-tuned on a novel financial news dataset, which consists of 2K articles from Bloomberg, on topics such as stock, markets, currencies, rate and cryptocurrencies. It is based on the PEGASUS model and in particular PEGASUS fine-tuned on the Extreme Summarization (XSum) dataset: google/pegasus-xsum model. PEGASUS was originally proposed by Jingqing Zhang, Yao Zhao, Mohammad Saleh and Peter J. Liu in PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive Summarization. Note: This model serves as a base version. For an even more advanced model with significantly enhanced performance, please check out our advanced version on Rapid API. The advanced model offers more…

Open weights 569M parameters 512 tokens transformers

Model · Summarization

led-large-book-summary

Peter Szemraj

This model is a fine-tuned version of allenai/led-large-16384 on the BookSum dataset (kmfoda/booksum). It aims to generalize well and be useful in summarizing lengthy text for both academic and everyday purposes. - See the Colab demo linked above or try the demo on Spaces To improve summary quality, use encodernorepeatngramsize=3 when calling the pipeline object. This setting encourages the model to utilize new vocabulary and construct an abstractive summary. Load the model into a pipeline object: Feed the text into the pipeline object: Important: For optimal summary quality, use the global attention mask when decoding, as demonstrated in this community notebook, see the definition of…

Open weights apache-2.0 460M parameters transformers

Model · Summarization

bart-large-cnn

AI at Meta

BART model pre-trained on English language, and fine-tuned on CNN Daily Mail. It was introduced in the paper BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension by Lewis et al. and first released in this repository (https://github.com/pytorch/fairseq/tree/master/examples/bart). Disclaimer: The team releasing BART did not write a model card for this model so this model card has been written by the Hugging Face team. BART is a transformer encoder-encoder (seq2seq) model with a bidirectional (BERT-like) encoder and an autoregressive (GPT-like) decoder. BART is pre-trained by (1) corrupting text with an arbitrary noising function…

Open weights mit 406M parameters 1,024 tokens transformers

Model · Summarization

distilbart-news-summarizer

Sachin Rao

Imagine you have a very long news article, and you want someone to read it and tell you the key points in just a few sentences. That's exactly what this model does! This model takes a long news article and turns it into a short, easy-to-read summary. - It writes back a 3-4 sentence summary that captures all the important information The special thing about this model is that it's: 1. Very accurate - It understands news writing style very well 2. Very fast - It works quickly even on regular computers (not just expensive AI servers) 3. Specialized in news - It was trained specifically on news articles, so it understands how journalists write 4. Good with financial news - It knows market…

Open weights agpl-3.0 306M parameters 1,024 tokens transformers

Model · Summarization

rut5-base-summ

Dmitry Balobin

Finetuned ai-forever/ruT5-base for text and dialogue summarization. All 'train' subsets was concatenated and shuffled with seed 1000 - 7. Train subset = 155678 rows. Evaluation on 10% of concatenated 'validation' subsets = 1458 rows. See WandB logs. See report at REPORT WIP.

Open weights 223M parameters transformers