Hi @armancohan.
In scripts/pytorch_lightning_training_script/train.py#L73, concat_title_abstract must be True if you want to train both with title and abstract.
However, it is setup to None in the actual script. That means that only the document title is used for training.
concat_title_abstract: bool = None # actual code
should be:
concat_title_abstract: bool = True
What do you think? Thank you.
Hi @armancohan.
In scripts/pytorch_lightning_training_script/train.py#L73,
concat_title_abstractmust beTrueif you want to train both withtitleandabstract.However, it is setup to
Nonein the actual script. That means that only the documenttitleis used for training.concat_title_abstract: bool = None# actual codeshould be:
concat_title_abstract: bool = TrueWhat do you think? Thank you.