I am trying to fine tune a T5 model using xsum dataset but I am getting the following. Should I just change the sames âsummary, document and idâ to something else? Or thatâs due to something else?
The following columns in the training set donât have a corresponding argument in T5ForConditionalGeneration.forward and have been ignored: summary, document, id.
The Trainer automatically ignores columns in your dataset which arenât used by the model. For T5 for instance, the model expects input_ids, attention_mask, labels etc., but not âsummaryâ, âdocumentâ, âidâ. As long as input_ids etc are in your dataset, itâs fine.
The warning is just telling you that those columns arenât used.