Views
No views yet
FinBERT is a BERT model pre-trained on financial communication text. The purpose is to enhance financial NLP research and practice.FinBERT's pre-training process can be found at: https://arxiv.org/abs/2006.08097FinBERT can be further fine-tuned on downstream tasks. Specifically, we have fine-tuned FinBERT on an analyst sentiment classification task, and the fine-tuned model is shared at https://huggingface.co/demo-org/auditor_review_modelfrom transformers import AutoModelForMaskedLM
model = AutoModelForMaskedLM.from_pretrained("demo-org/finbert-pretrain", use_auth_token=True)