Skip to content

News headline (title) generation using neural nets, trained on RIA dataset (russian lang)

License

Notifications You must be signed in to change notification settings

dmitry-vorobiev/nlp_headline_rus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nlp_headline_rus

News headline generation using neural nets, trained on "Rossiya Segodnya" news dataset.

Task evaluation

Using last 10% of the "Rossiya Segodnya" news dataset for now. May switch to another dataset later.

Installation

PyPI

You may want to create a virtual environment first

pip install -r requirements.txt

Docker

Build docker image

docker build . --tag headlines:latest

Usage

In code

from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

MODEL_NAME = "dmitry-vorobiev/rubert_ria_headlines"

tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
model = AutoModelForSeq2SeqLM.from_pretrained(MODEL_NAME)

text = "Скопируйте текст статьи / новости"

encoded_batch = tokenizer.prepare_seq2seq_batch(
    [text],
    return_tensors="pt",
    padding="max_length",
    truncation=True,
    max_length=512)

output_ids = model.generate(
    input_ids=encoded_batch["input_ids"],
    max_length=32,
    no_repeat_ngram_size=3,
    num_beams=5,
    top_k=0
)

headline = tokenizer.decode(output_ids[0], 
                            skip_special_tokens=True, 
                            clean_up_tokenization_spaces=False)
print(headline)

Docker

Run docker container interactive session:

docker run -it --name headlines_gpu --gpus all headlines:latest

Execute evaluation script:

sh /app/scripts/eval_docker.sh

By default, results can be found at /io/output.

Pretrained weights

Useful links

About

News headline (title) generation using neural nets, trained on RIA dataset (russian lang)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published