├── .gitignore ├── LICENSE ├── README-zh.md ├── README.md ├── cases ├── case_CFGPTv1.md ├── case_algor_trading.md ├── case_bank.md ├── case_market.md ├── case_primary_industry.md └── cimges │ ├── algor_trading │ ├── A.png │ ├── B-1.png │ ├── B-2.png │ ├── B-3.png │ ├── C-1-1.png │ ├── C-1-2.png │ ├── C-2-1.png │ ├── C-2-2.png │ ├── C-3-1.png │ ├── C-3-2.png │ ├── D-1-2-1.png │ ├── D-1-2-2.png │ └── E.png │ ├── bank │ ├── A.png │ ├── B-1.png │ ├── B-2.png │ ├── B-3.png │ ├── C-1-1.png │ ├── C-1-2.png │ ├── C-2-1.png │ ├── C-2-2.png │ ├── C-3-1.png │ ├── D-1-1-1.png │ ├── D-3-1-1.png │ ├── E.png │ └── F.png │ ├── icon_usecase.png │ ├── market │ ├── A.png │ ├── B-1.png │ ├── B-2.png │ ├── B-3.png │ ├── C-1-1.png │ ├── C-3-1.png │ ├── C-3-2.png │ ├── D-1-1-1.png │ ├── D-3-2-1.png │ ├── D-3-2-2.png │ ├── D-3-2-3.png │ ├── D-3-2-4.png │ ├── D-3-2-5.png │ └── E.png │ └── primary_industry │ ├── A.png │ ├── B-1.png │ ├── B-2.png │ ├── B-3.png │ ├── C-1-1.png │ ├── C-1-2.png │ ├── C-2-1.png │ ├── C-2-2.png │ ├── C-3-1.png │ ├── C-3-2.png │ ├── D-1-1-1.png │ ├── D-2-2-1.png │ ├── D-3-2-1.png │ └── E.png ├── code ├── test │ └── eval-generate.py ├── train │ ├── full-sft │ │ └── bf16 │ │ │ ├── bf_16_parallel_train.py │ │ │ ├── bf_16_parallel_train.sh │ │ │ ├── bf_16_parallel_train.yml │ │ │ └── ds_config.json │ ├── lora-sft │ │ └── bf16 │ │ │ ├── ds_config.json │ │ │ ├── lora_bf_16_parallel_train.py │ │ │ ├── lora_bf_16_parallel_train.sh │ │ │ └── lora_bf_16_parallel_train.yml │ └── pretrain │ │ ├── bf_16_parallel_train.py │ │ ├── bf_16_parallel_train.sh │ │ ├── bf_16_parallel_train.yml │ │ └── ds_config.json └── utils │ ├── collator.py │ ├── collator_pt.py │ ├── loss.py │ └── trainer.py ├── data ├── company │ └── data.jsonl ├── event │ └── data.jsonl ├── exam │ └── data.jsonl ├── industry │ └── data.jsonl ├── product │ └── data.jsonl ├── risk │ └── data.jsonl ├── sentiment │ └── data.jsonl ├── stock │ └── data.jsonl ├── suggestion │ └── data.jsonl └── summary │ └── data.jsonl ├── figs ├── CFGPT-TRAIN.svg ├── CFGPT-TRAIN_zh.svg ├── CFGPT-Training-loss.svg └── CFGPT-Training.svg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/README.md -------------------------------------------------------------------------------- /cases/case_CFGPTv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/case_CFGPTv1.md -------------------------------------------------------------------------------- /cases/case_algor_trading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/case_algor_trading.md -------------------------------------------------------------------------------- /cases/case_bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/case_bank.md -------------------------------------------------------------------------------- /cases/case_market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/case_market.md -------------------------------------------------------------------------------- /cases/case_primary_industry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/case_primary_industry.md -------------------------------------------------------------------------------- /cases/cimges/algor_trading/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/A.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/B-1.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/B-2.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/B-3.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-1-1.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-1-2.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-2-1.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-2-2.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-3-1.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/C-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/C-3-2.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/D-1-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/D-1-2-1.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/D-1-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/D-1-2-2.png -------------------------------------------------------------------------------- /cases/cimges/algor_trading/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/algor_trading/E.png -------------------------------------------------------------------------------- /cases/cimges/bank/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/A.png -------------------------------------------------------------------------------- /cases/cimges/bank/B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/B-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/B-2.png -------------------------------------------------------------------------------- /cases/cimges/bank/B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/B-3.png -------------------------------------------------------------------------------- /cases/cimges/bank/C-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/C-1-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/C-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/C-1-2.png -------------------------------------------------------------------------------- /cases/cimges/bank/C-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/C-2-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/C-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/C-2-2.png -------------------------------------------------------------------------------- /cases/cimges/bank/C-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/C-3-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/D-1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/D-1-1-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/D-3-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/D-3-1-1.png -------------------------------------------------------------------------------- /cases/cimges/bank/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/E.png -------------------------------------------------------------------------------- /cases/cimges/bank/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/bank/F.png -------------------------------------------------------------------------------- /cases/cimges/icon_usecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/icon_usecase.png -------------------------------------------------------------------------------- /cases/cimges/market/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/A.png -------------------------------------------------------------------------------- /cases/cimges/market/B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/B-1.png -------------------------------------------------------------------------------- /cases/cimges/market/B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/B-2.png -------------------------------------------------------------------------------- /cases/cimges/market/B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/B-3.png -------------------------------------------------------------------------------- /cases/cimges/market/C-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/C-1-1.png -------------------------------------------------------------------------------- /cases/cimges/market/C-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/C-3-1.png -------------------------------------------------------------------------------- /cases/cimges/market/C-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/C-3-2.png -------------------------------------------------------------------------------- /cases/cimges/market/D-1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-1-1-1.png -------------------------------------------------------------------------------- /cases/cimges/market/D-3-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-3-2-1.png -------------------------------------------------------------------------------- /cases/cimges/market/D-3-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-3-2-2.png -------------------------------------------------------------------------------- /cases/cimges/market/D-3-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-3-2-3.png -------------------------------------------------------------------------------- /cases/cimges/market/D-3-2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-3-2-4.png -------------------------------------------------------------------------------- /cases/cimges/market/D-3-2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/D-3-2-5.png -------------------------------------------------------------------------------- /cases/cimges/market/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/market/E.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/A.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/B-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/B-2.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/B-3.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-1-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-1-2.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-2-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-2-2.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-3-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/C-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/C-3-2.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/D-1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/D-1-1-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/D-2-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/D-2-2-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/D-3-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/D-3-2-1.png -------------------------------------------------------------------------------- /cases/cimges/primary_industry/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/cases/cimges/primary_industry/E.png -------------------------------------------------------------------------------- /code/test/eval-generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/test/eval-generate.py -------------------------------------------------------------------------------- /code/train/full-sft/bf16/bf_16_parallel_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/full-sft/bf16/bf_16_parallel_train.py -------------------------------------------------------------------------------- /code/train/full-sft/bf16/bf_16_parallel_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/full-sft/bf16/bf_16_parallel_train.sh -------------------------------------------------------------------------------- /code/train/full-sft/bf16/bf_16_parallel_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/full-sft/bf16/bf_16_parallel_train.yml -------------------------------------------------------------------------------- /code/train/full-sft/bf16/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/full-sft/bf16/ds_config.json -------------------------------------------------------------------------------- /code/train/lora-sft/bf16/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/lora-sft/bf16/ds_config.json -------------------------------------------------------------------------------- /code/train/lora-sft/bf16/lora_bf_16_parallel_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/lora-sft/bf16/lora_bf_16_parallel_train.py -------------------------------------------------------------------------------- /code/train/lora-sft/bf16/lora_bf_16_parallel_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/lora-sft/bf16/lora_bf_16_parallel_train.sh -------------------------------------------------------------------------------- /code/train/lora-sft/bf16/lora_bf_16_parallel_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/lora-sft/bf16/lora_bf_16_parallel_train.yml -------------------------------------------------------------------------------- /code/train/pretrain/bf_16_parallel_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/pretrain/bf_16_parallel_train.py -------------------------------------------------------------------------------- /code/train/pretrain/bf_16_parallel_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/pretrain/bf_16_parallel_train.sh -------------------------------------------------------------------------------- /code/train/pretrain/bf_16_parallel_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/pretrain/bf_16_parallel_train.yml -------------------------------------------------------------------------------- /code/train/pretrain/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/train/pretrain/ds_config.json -------------------------------------------------------------------------------- /code/utils/collator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/utils/collator.py -------------------------------------------------------------------------------- /code/utils/collator_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/utils/collator_pt.py -------------------------------------------------------------------------------- /code/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/utils/loss.py -------------------------------------------------------------------------------- /code/utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/code/utils/trainer.py -------------------------------------------------------------------------------- /data/company/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/company/data.jsonl -------------------------------------------------------------------------------- /data/event/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/event/data.jsonl -------------------------------------------------------------------------------- /data/exam/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/exam/data.jsonl -------------------------------------------------------------------------------- /data/industry/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/industry/data.jsonl -------------------------------------------------------------------------------- /data/product/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/product/data.jsonl -------------------------------------------------------------------------------- /data/risk/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/risk/data.jsonl -------------------------------------------------------------------------------- /data/sentiment/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/sentiment/data.jsonl -------------------------------------------------------------------------------- /data/stock/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/stock/data.jsonl -------------------------------------------------------------------------------- /data/suggestion/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/suggestion/data.jsonl -------------------------------------------------------------------------------- /data/summary/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/data/summary/data.jsonl -------------------------------------------------------------------------------- /figs/CFGPT-TRAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/figs/CFGPT-TRAIN.svg -------------------------------------------------------------------------------- /figs/CFGPT-TRAIN_zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/figs/CFGPT-TRAIN_zh.svg -------------------------------------------------------------------------------- /figs/CFGPT-Training-loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/figs/CFGPT-Training-loss.svg -------------------------------------------------------------------------------- /figs/CFGPT-Training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/figs/CFGPT-Training.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TongjiFinLab/CFGPT/HEAD/requirements.txt --------------------------------------------------------------------------------