Chaitanya14 commited on
Commit
eafe777
·
verified ·
1 Parent(s): 6649d08

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -2
README.md CHANGED
@@ -1,8 +1,8 @@
1
  ---
2
  license: apache-2.0
3
  ---
4
-
5
- # How to get started with the model
6
 
7
  Use the code below to get started with the model.
8
  ```python
@@ -11,4 +11,17 @@ from transformers import AutoTokenizer, RobertaForSequenceClassification
11
  tokenizer = AutoTokenizer.from_pretrained('roberta-large')
12
 
13
  model = RobertaForSequenceClassification.from_pretarined('Chaitanya14/finroberta')
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ```
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ FinRoberta is a specialised version of the Roberta Large Model designed for financial classification tasks. FinRoberta has been developed by finetuning the Roberta Large model on a vast corpus of Reuters and DPA news articles, SEC filings, followed by further finetuning on the [Headlines](https://www.kaggle.com/datasets/ankurzing/sentiment-analysis-for-financial-news) dataset to make it capable of handling classification tasks.
5
+ ## How to get started with the model
6
 
7
  Use the code below to get started with the model.
8
  ```python
 
11
  tokenizer = AutoTokenizer.from_pretrained('roberta-large')
12
 
13
  model = RobertaForSequenceClassification.from_pretarined('Chaitanya14/finroberta')
14
+ ```
15
+ ## Citation
16
+ If you use the FinBloom 7B LLM, please cite with the following BibTex entry:
17
+ ```
18
+ @misc{sinha2025finbloomknowledgegroundinglarge,
19
+ title={FinBloom: Knowledge Grounding Large Language Model with Real-time Financial Data},
20
+ author={Ankur Sinha and Chaitanya Agarwal and Pekka Malo},
21
+ year={2025},
22
+ eprint={2502.18471},
23
+ archivePrefix={arXiv},
24
+ primaryClass={cs.IR},
25
+ url={https://arxiv.org/abs/2502.18471},
26
+ }
27
  ```