AdaptLLM commited on
Commit
4d1ae9e
1 Parent(s): d417aba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -15
README.md CHANGED
@@ -62,7 +62,7 @@ We have also uploaded the raw training and testing splits, for facilitating fine
62
  - [NER](https://huggingface.co/datasets/AdaptLLM/NER)
63
  - [FPB](https://huggingface.co/datasets/AdaptLLM/FPB)
64
 
65
- The other datasets used in our paper have already been available in huggingface, so you can directly load them with the following code:
66
  ```python
67
  from datasets import load_dataset
68
 
@@ -71,7 +71,7 @@ dataset = load_dataset('medical_questions_pairs')
71
  # PubmedQA:
72
  dataset = load_dataset('bigbio/pubmed_qa')
73
  # USMLE:
74
- dataset=load_dataset('GBaker/MedQA-USMLE-4-options', cache_dir=cache_dir)
75
  # SCOTUS
76
  dataset = load_dataset("lex_glue", 'scotus')
77
  # CaseHOLD
@@ -95,18 +95,18 @@ url={https://openreview.net/forum?id=y886UXPEZ0}
95
 
96
  and the original dataset:
97
  ```bibtex
98
- @inproceedings{FiQA-SA,
99
- author = {Macedo Maia and
100
- Siegfried Handschuh and
101
- Andr{\'{e}} Freitas and
102
- Brian Davis and
103
- Ross McDermott and
104
- Manel Zarrouk and
105
- Alexandra Balahur},
106
- title = {WWW'18 Open Challenge: Financial Opinion Mining and Question Answering},
107
- booktitle = {{WWW} (Companion Volume)},
108
- pages = {1941--1942},
109
- publisher = {{ACM}},
110
- year = {2018}
111
  }
112
  ```
 
62
  - [NER](https://huggingface.co/datasets/AdaptLLM/NER)
63
  - [FPB](https://huggingface.co/datasets/AdaptLLM/FPB)
64
 
65
+ The other datasets used in our paper have already been available in huggingface, and you can directly load them with the following code:
66
  ```python
67
  from datasets import load_dataset
68
 
 
71
  # PubmedQA:
72
  dataset = load_dataset('bigbio/pubmed_qa')
73
  # USMLE:
74
+ dataset=load_dataset('GBaker/MedQA-USMLE-4-options')
75
  # SCOTUS
76
  dataset = load_dataset("lex_glue", 'scotus')
77
  # CaseHOLD
 
95
 
96
  and the original dataset:
97
  ```bibtex
98
+ @article{FPB,
99
+ author = {Pekka Malo and
100
+ Ankur Sinha and
101
+ Pekka J. Korhonen and
102
+ Jyrki Wallenius and
103
+ Pyry Takala},
104
+ title = {Good debt or bad debt: Detecting semantic orientations in economic
105
+ texts},
106
+ journal = {J. Assoc. Inf. Sci. Technol.},
107
+ volume = {65},
108
+ number = {4},
109
+ pages = {782--796},
110
+ year = {2014}
111
  }
112
  ```