How to visualise the weights of a specific layer of T5

Hello, I am trying to load and visualise the learned parameters weights&bias of a T5 model which is fine-tuned on a specific task. how can I do this?

from transformers import T5ForConditionalGeneration, T5Config
original_model = T5ForConditionalGeneration.from_pretrained(‘t5-base’)
config = T5Config.from_pretrained(‘t5-base’)

target = T5ForConditionalGeneration(config)