Edit model card

license: mit language:

  • en tags:
  • finance
  • ContextNER
  • language models datasets:
  • him1411/EDGAR10-Q metrics:
  • rouge

EDGAR-flan-t5-base

Flan T5 base model finetuned on EDGAR10-Q dataset

You may want to check out

Direct Use

It is possible to use this model to generate text, which is useful for experimentation and understanding its capabilities. It should not be directly used for production or work that may directly impact people.

How to Use

You can very easily load the models with Transformers, instead of downloading them manually. The flan-t5-base model is the backbone of our model. Here is how to use the model in PyTorch:

from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("him1411/EDGAR-flan-t5-base")
model = AutoModelForSeq2SeqLM.from_pretrained("him1411/EDGAR-flan-t5-base")

Or just clone the model repo

git lfs install
git clone https://huggingface.co/him1411/EDGAR-flan-t5-base

Inference Example

Here, we provide an example for the "ContextNER" task. Below is an example of one instance.

from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("him1411/EDGAR-flan-t5-base")
model = AutoModelForSeq2SeqLM.from_pretrained("him1411/EDGAR-flan-t5-base")
# Input shows how we have appended instruction from our file for HoC dataset with instance.
input = "14.5 years . The definite lived intangible assets related to the contracts and trade names had estimated weighted average useful lives of 5.9 years and 14.5 years, respectively, at acquisition."
tokenized_input= tokenizer(input)
# Ideal output for this input is 'Definite lived intangible assets weighted average remaining useful life'
output = model(tokenized_input)

BibTeX Entry and Citation Info

If you are using our model, please cite our paper:

@article{gupta2021context,
  title={Context-NER: Contextual Phrase Generation at Scale},
  author={Gupta, Himanshu and Verma, Shreyas and Kumar, Tarun and Mishra, Swaroop and Agrawal, Tamanna and Badugu, Amogh and Bhatt, Himanshu Sharad},
  journal={arXiv preprint arXiv:2109.08079},
  year={2021}
}
Downloads last month
1
Safetensors
Model size
783M params
Tensor type
BF16
·

Dataset used to train him1411/EDGAR-flan-t5-base