Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
NotXia
/
longformer-bio-ext-summ
like
2
Summarization
Transformers
PyTorch
allenai/mslr2022
English
longformer-bio-ext-summ
feature-extraction
custom_code
License:
apache-2.0
Model card
Files
Files and versions
Community
Train
Use this model
95ec5ce
longformer-bio-ext-summ
/
utilities.py
NotXia
Add model
6f408cf
unverified
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
"""
Pads a list to a given size
"""
def
padToSize
(
to_pad_list, pad_size, filler
):
return
to_pad_list + [filler]*(pad_size-
len
(to_pad_list))