EINDICE / FinChina-SA

The FinChina SA dataset and code for FinLLM@IJCAI'23 paper "Chinese Fine-Grained Financial Sentiment Analysis with Large Language Models"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FinChina SA

The FinChina SA dataset and code from FinLLM@IJCAI'23 paper:

Chinese Fine-Grained Financial Sentiment Analysis with Large Language Models

https://arxiv.org/abs/2306.14096

Code

First, the data needs to be processed into a conversational form like this:

{
    "conversations":[
        {
            "from":"human",
            "value":"question"
        },
        {
            "from":"gpt",
            "value":"answer"
        }
    ]
}

The code is in the src folder and you need to modify the configuration in the shell script.

Fine-tune

To fine-tune the model:

sh sft.sh

Inference

To run inference:

sh run_infer.sh

Our experiments is based on the following repo:

Thanks for their efforts to make the code and model weights public.

Citation

If you find this project useful, please cite it using the following format

@article{lan2023chinese,
  title={Chinese Fine-Grained Financial Sentiment Analysis with Large Language Models},
  author={Lan, Yinyu and Wu, Yanru and Xu, Wang and Feng, Weiqiang and Zhang, Youhao},
  journal={arXiv preprint arXiv:2306.14096},
  year={2023}
}

About

The FinChina SA dataset and code for FinLLM@IJCAI'23 paper "Chinese Fine-Grained Financial Sentiment Analysis with Large Language Models"

License:Apache License 2.0


Languages

Language:Python 96.9%Language:Shell 3.1%