Text Generation
Transformers
PyTorch
Safetensors
English
llama
finance
Eval Results (legacy)
text-generation-inference
Instructions to use AdaptLLM/finance-chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AdaptLLM/finance-chat with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="AdaptLLM/finance-chat")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AdaptLLM/finance-chat") model = AutoModelForCausalLM.from_pretrained("AdaptLLM/finance-chat", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AdaptLLM/finance-chat with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AdaptLLM/finance-chat" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AdaptLLM/finance-chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/AdaptLLM/finance-chat
- SGLang
How to use AdaptLLM/finance-chat with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "AdaptLLM/finance-chat" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AdaptLLM/finance-chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "AdaptLLM/finance-chat" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AdaptLLM/finance-chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use AdaptLLM/finance-chat with Docker Model Runner:
docker model run hf.co/AdaptLLM/finance-chat
readme
Browse files
README.md
CHANGED
|
@@ -1,15 +1,28 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
-
|
|
|
|
| 6 |
This repo contains the domain-specific chat model developed from LLaMA-2-Chat-7B, using the method in our paper [Adapting Large Language Models via Reading Comprehension](https://huggingface.co/papers/2309.09530).
|
| 7 |
|
| 8 |
We explore **continued pre-training on domain-specific corpora** for large language models. While this approach enriches LLMs with domain knowledge, it significantly hurts their prompting ability for question answering. Inspired by human learning via reading comprehension, we propose a simple method to **transform large-scale pre-training corpora into reading comprehension texts**, consistently improving prompting performance across tasks in biomedicine, finance, and law domains. **Our 7B model competes with much larger domain-specific models like BloombergGPT-50B**.
|
| 9 |
|
|
|
|
|
|
|
| 10 |
**************************** **Updates** ****************************
|
| 11 |
-
* 12/8: Released our [models](https://huggingface.co/AdaptLLM/finance-chat) developed from LLaMA-2-Chat-7B.
|
| 12 |
-
* 9/18: Released our [paper](https://huggingface.co/papers/2309.09530), [code](https://github.com/microsoft/LMOps), [data](https://huggingface.co/datasets/AdaptLLM/finance-tasks), and [models](https://huggingface.co/AdaptLLM/finance-LLM) developed from LLaMA-1-7B.
|
| 13 |
|
| 14 |
|
| 15 |
## Domain-Specific LLaMA-1
|
|
@@ -39,8 +52,8 @@ MMM Chicago Stock Exchange, Inc.
|
|
| 39 |
|
| 40 |
Which debt securities are registered to trade on a national securities exchange under 3M's name as of Q2 of 2023?'''
|
| 41 |
|
| 42 |
-
#
|
| 43 |
-
prompt = f"<s>[INST] <<SYS>>\nYou are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe.
|
| 44 |
|
| 45 |
inputs = tokenizer(prompt, return_tensors="pt", add_special_tokens=False).input_ids.to(model.device)
|
| 46 |
outputs = model.generate(input_ids=inputs, max_length=4096)[0]
|
|
@@ -50,7 +63,7 @@ pred = tokenizer.decode(outputs[answer_start:], skip_special_tokens=True)
|
|
| 50 |
|
| 51 |
print(f'### User Input:\n{user_input}\n\n### Assistant Output:\n{pred}')
|
| 52 |
```
|
| 53 |
-
## Domain-
|
| 54 |
To easily reproduce our results, we have uploaded the filled-in zero/few-shot input instructions and output completions of each domain-specific task: [biomedicine-tasks](https://huggingface.co/datasets/AdaptLLM/medicine-tasks), [finance-tasks](https://huggingface.co/datasets/AdaptLLM/finance-tasks), and [law-tasks](https://huggingface.co/datasets/AdaptLLM/law-tasks).
|
| 55 |
|
| 56 |
**Note:** those filled-in instructions are specifically tailored for models before alignment and do NOT fit for the specific data format required for chat models.
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: llama2
|
| 5 |
+
datasets:
|
| 6 |
+
- EleutherAI/pile
|
| 7 |
+
- Open-Orca/OpenOrca
|
| 8 |
+
- GAIR/lima
|
| 9 |
+
- WizardLM/WizardLM_evol_instruct_V2_196k
|
| 10 |
+
metrics:
|
| 11 |
+
- accuracy
|
| 12 |
+
library_name: fairseq
|
| 13 |
+
pipeline_tag: text-generation
|
| 14 |
---
|
| 15 |
+
|
| 16 |
+
# Adapt (Large) Language Models to Domains
|
| 17 |
This repo contains the domain-specific chat model developed from LLaMA-2-Chat-7B, using the method in our paper [Adapting Large Language Models via Reading Comprehension](https://huggingface.co/papers/2309.09530).
|
| 18 |
|
| 19 |
We explore **continued pre-training on domain-specific corpora** for large language models. While this approach enriches LLMs with domain knowledge, it significantly hurts their prompting ability for question answering. Inspired by human learning via reading comprehension, we propose a simple method to **transform large-scale pre-training corpora into reading comprehension texts**, consistently improving prompting performance across tasks in biomedicine, finance, and law domains. **Our 7B model competes with much larger domain-specific models like BloombergGPT-50B**.
|
| 20 |
|
| 21 |
+
### 🤗 We are currently working hard on developing models across different domains, scales and architectures! Please stay tuned! 🤗
|
| 22 |
+
|
| 23 |
**************************** **Updates** ****************************
|
| 24 |
+
* 12/8: Released our [chat models](https://huggingface.co/AdaptLLM/finance-chat) developed from LLaMA-2-Chat-7B.
|
| 25 |
+
* 9/18: Released our [paper](https://huggingface.co/papers/2309.09530), [code](https://github.com/microsoft/LMOps), [data](https://huggingface.co/datasets/AdaptLLM/finance-tasks), and [base models](https://huggingface.co/AdaptLLM/finance-LLM) developed from LLaMA-1-7B.
|
| 26 |
|
| 27 |
|
| 28 |
## Domain-Specific LLaMA-1
|
|
|
|
| 52 |
|
| 53 |
Which debt securities are registered to trade on a national securities exchange under 3M's name as of Q2 of 2023?'''
|
| 54 |
|
| 55 |
+
# We use the prompt template of LLaMA-2-Chat demo
|
| 56 |
+
prompt = f"<s>[INST] <<SYS>>\nYou are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.\n\nIf a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.\n<</SYS>>\n\n{user_input} [/INST]"
|
| 57 |
|
| 58 |
inputs = tokenizer(prompt, return_tensors="pt", add_special_tokens=False).input_ids.to(model.device)
|
| 59 |
outputs = model.generate(input_ids=inputs, max_length=4096)[0]
|
|
|
|
| 63 |
|
| 64 |
print(f'### User Input:\n{user_input}\n\n### Assistant Output:\n{pred}')
|
| 65 |
```
|
| 66 |
+
## Domain-Specific Tasks
|
| 67 |
To easily reproduce our results, we have uploaded the filled-in zero/few-shot input instructions and output completions of each domain-specific task: [biomedicine-tasks](https://huggingface.co/datasets/AdaptLLM/medicine-tasks), [finance-tasks](https://huggingface.co/datasets/AdaptLLM/finance-tasks), and [law-tasks](https://huggingface.co/datasets/AdaptLLM/law-tasks).
|
| 68 |
|
| 69 |
**Note:** those filled-in instructions are specifically tailored for models before alignment and do NOT fit for the specific data format required for chat models.
|