Pre-trained language models have shown impressive performance on a variety of tasks and domains. Previous research on financial language models usually employs a generic training scheme to train standard model architectures, without completely leveraging the richness of the financial data. We propose a novel domain specific Financial LANGuage model (FLANG) which uses financial keywords and phrases for better masking, together with span boundary objective and in-filing objective. Additionally, the evaluation benchmarks in the field have been limited. To this end, we contribute the Financial Language Understanding Evaluation (FLUE), an open-source comprehensive suite of benchmarks for the financial domain. These include new benchmarks across 5 NLP tasks in financial domain as well as common benchmarks used in the previous research. Experiments on these benchmarks suggest that our model outperforms those in prior literature on a variety of NLP tasks.
Architecture of our model. We use finance specific datasets and general English datasets (Wikpedia and BooksCorpus) for training the model. We follow the training strategy of ELECTRA with span boundary task which first predicts masked tokens using language model and then uses a discriminator to assess if a token is original or replaced. The generator and discriminator are trained end-to-end, and both words and phrases from financial vocabulary are used for masking. The final discriminator is then fine-tuned on individual tasks on our contributed benchmark suite, Financial Language Understanding Evaluation (FLUE). Note that our method is not specific to ELECTRA and can be generalized to other models.
FLUE (Financial Language Understanding Evaluation) is a comprehensive and heterogeneous benchmark that has been built from 5 diverse financial domain specific datasets.
Name | Task | Source | Dataset Size |
---|---|---|---|
FPB | Financial Sentiment Analysis | Malo et al. 2014b | 4,845 |
FiQA SA | Financial Sentiment Analysis | FiQA 2018 | 1,173 |
Headline | News Headline Classification | Sinha and Khandait 2020 | 11,412 |
NER | Named Entity Recognition | Alvarado et al. 2015 | 1,466 |
FinSBD3 | Structure Boundary Detection | FinSBD3 (FinWeb-2021) | 756 |
FiQA QA | Question Answering | FiQA 2018 | 6,640 |
Model/Metric | FPB | FiQA SA | Headline | NER | FinSBD3 | FiQA QA |
---|---|---|---|---|---|---|
Accuracy | MSE | Mean F-1 | F-1 | F-1 | nDCG | |
BERT-base | 0.856 | 0.073 | 0.967 | 0.79 | 0.95 | 0.46 |
FinBERT | 0.872 | 0.07 | 0.968 | 0.8 | 0.89 | 0.42 |
FLANG-BERT(ours) | 0.912 | 0.054 | 0.972 | 0.83 | 0.96 | 0.51 |
ELECTRA | 0.881 | 0.066 | 0.966 | 0.78 | 0.94 | 0.52 |
FLANG-ELECTRA(ours) | 0.919 | 0.034 | 0.98 | 0.82 | 0.97 | 0.55 |
- Financial PhraseBank (Classification)
- Data: Financial PhraseBank
- Cite:
Malo, Pekka, et al. "Good debt or bad debt: Detecting semantic orientations in economic texts." Journal of the Association for Information Science and Technology 65.4 (2014): 782-796.
- FiQA 2018 Task-1 (Regression)
- Data and Ref: FiQA 2018
- Cite:
Maia, Macedo & Handschuh, Siegfried & Freitas, Andre & Davis, Brian & McDermott, Ross & Zarrouk, Manel & Balahur, Alexandra. (2018). WWW'18 Open Challenge: Financial Opinion Mining and Question Answering. WWW '18: Companion Proceedings of the The Web Conference 2018. 1941-1942. 10.1145/3184558.3192301.
- Data: Gold Commodity News and Dimensions
- Cite:
Sinha, A., & Khandait, T. (2021, April). Impact of News on the Commodity Market: Dataset and Results. In Future of Information and Communication Conference (pp. 589-601). Springer, Cham.
- Data: NER Data on Loan Agreement
- Cite:
Alvarado, J. C. S., Verspoor, K., & Baldwin, T. (2015, December). Domain adaption of named entity recognition to support credit risk assessment. In Proceedings of the Australasian Language Technology Association Workshop 2015 (pp. 84-90).
- Data: FinSBD3
- Cite:
Willy Au, Abderrahim Ait-Azzi, and Juyeon Kang. 2021. FinSBD-2021: The 3rd Shared Task on Structure Boundary Detection in Unstructured Text in the Financial Domain. In Companion Proceedings of the Web Conference 2021 (WWW '21). Association for Computing Machinery, New York, NY, USA, 276–279. https://doi.org/10.1145/3442442.3451378
- Data and Ref: FiQA 2018
- Cite:
Maia, Macedo & Handschuh, Siegfried & Freitas, Andre & Davis, Brian & McDermott, Ross & Zarrouk, Manel & Balahur, Alexandra. (2018). WWW'18 Open Challenge: Financial Opinion Mining and Question Answering. WWW '18: Companion Proceedings of the The Web Conference 2018. 1941-1942. 10.1145/3184558.3192301.
Coming soon!
Please cite the model with the following citation:
@INPROCEEDINGS{shah-etal-2022-flang,
author = {Shah, Raj Sanjay and
Chawla, Kunal and
Eidnani, Dheeraj and
Shah, Agam and
Du, Wendi and
Chava, Sudheer and
Raman, Natraj and
Smiley, Charese and
Chen, Jiaao and
Yang, Diyi },
title = {When FLUE Meets FLANG: Benchmarks and Large Pretrained Language Model for Financial Domain},
booktitle = {Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP)},
year = {2022},
publisher = {Association for Computational Linguistics}
}
Please contact Raj Sanjay Shah (rajsanjayshah[at]gatech[dot]edu) or Sudheer Chava (schava6[at]gatech[dot]edu) or Diyi Yang (diyiy[at]stanford[dot]edu) about any issues and questions.
- Clone the Repo
- cd into the repo in your terminal
Install dependencies with the following command pip install -r requirements.txt
tokens.npy contains the tokens for financial vocabulary in a numpy array format.
To train FLANG-BERT, run
python train_FLANG_BERT.py
To train FLANG-ELECTRA, run
python train_FLANG_ELECTRA.py