AdaptLLM commited on
Commit
7feed76
1 Parent(s): 3ad1034

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -1
README.md CHANGED
@@ -38,6 +38,7 @@ We explore **continued pre-training on domain-specific corpora** for large langu
38
  ### 🤗 We are currently working hard on developing models across different domains, scales and architectures! Please stay tuned! 🤗
39
 
40
  **************************** **Updates** ****************************
 
41
  * 2024/1/16: 🎉 Our [research paper](https://huggingface.co/papers/2309.09530) has been accepted by ICLR 2024!!!🎉
42
  * 2023/12/19: Released our [13B base models](https://huggingface.co/AdaptLLM/law-LLM-13B) developed from LLaMA-1-13B.
43
  * 2023/12/8: Released our [chat models](https://huggingface.co/AdaptLLM/law-chat) developed from LLaMA-2-Chat-7B.
@@ -94,10 +95,36 @@ print(f'### User Input:\n{user_input}\n\n### Assistant Output:\n{pred}')
94
  ```
95
 
96
  ## Domain-Specific Tasks
97
- 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).
 
 
98
 
99
  **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.
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  ## Citation
102
  If you find our work helpful, please cite us:
103
  ```bibtex
 
38
  ### 🤗 We are currently working hard on developing models across different domains, scales and architectures! Please stay tuned! 🤗
39
 
40
  **************************** **Updates** ****************************
41
+ * 2024/4/2: Released the raw data splits (train and test) of all the evaluation datasets
42
  * 2024/1/16: 🎉 Our [research paper](https://huggingface.co/papers/2309.09530) has been accepted by ICLR 2024!!!🎉
43
  * 2023/12/19: Released our [13B base models](https://huggingface.co/AdaptLLM/law-LLM-13B) developed from LLaMA-1-13B.
44
  * 2023/12/8: Released our [chat models](https://huggingface.co/AdaptLLM/law-chat) developed from LLaMA-2-Chat-7B.
 
95
  ```
96
 
97
  ## Domain-Specific Tasks
98
+
99
+ ### Pre-templatized/Formatted Testing Splits
100
+ To easily reproduce our prompting results, we have uploaded the filled-in zero/few-shot input instructions and output completions of the test 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).
101
 
102
  **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.
103
 
104
+ ### Raw Datasets
105
+ We have also uploaded the raw training and testing splits, for facilitating fine-tuning or other usages:
106
+ - [ChemProt](https://huggingface.co/datasets/AdaptLLM/ChemProt)
107
+ - [RCT](https://huggingface.co/datasets/AdaptLLM/RCT)
108
+ - [ConvFinQA](https://huggingface.co/datasets/AdaptLLM/ConvFinQA)
109
+ - [FiQA_SA](https://huggingface.co/datasets/AdaptLLM/FiQA_SA)
110
+ - [Headline](https://huggingface.co/datasets/AdaptLLM/Headline)
111
+ - [NER](https://huggingface.co/datasets/AdaptLLM/NER)
112
+
113
+ The other datasets used in our paper have already been available in huggingface, so you can directly load them with the following code
114
+ ```python
115
+ from datasets import load_dataset
116
+ # MQP:
117
+ dataset = load_dataset('medical_questions_pairs')
118
+ # PubmedQA:
119
+ dataset = load_dataset('bigbio/pubmed_qa')
120
+ # SCOTUS
121
+ dataset = load_dataset("lex_glue", 'scotus')
122
+ # CaseHOLD
123
+ dataset = load_dataset("lex_glue", 'case_hold')
124
+ # UNFAIR-ToS
125
+ dataset = load_dataset("lex_glue", 'unfair_tos')
126
+ ```
127
+
128
  ## Citation
129
  If you find our work helpful, please cite us:
130
  ```bibtex