AdaptLLM commited on
Commit
506b360
1 Parent(s): b608256

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -5
README.md CHANGED
@@ -64,23 +64,22 @@ We have also uploaded the raw training and testing splits, for facilitating fine
64
  - [FiQA_SA](https://huggingface.co/datasets/AdaptLLM/FiQA_SA)
65
  - [Headline](https://huggingface.co/datasets/AdaptLLM/Headline)
66
  - [NER](https://huggingface.co/datasets/AdaptLLM/NER)
 
67
 
68
- The other datasets used in our paper have already been available in huggingface, so you can directly load them with the following code
69
  ```python
70
  from datasets import load_dataset
71
 
72
  # MQP:
73
  dataset = load_dataset('medical_questions_pairs')
74
-
75
  # PubmedQA:
76
  dataset = load_dataset('bigbio/pubmed_qa')
77
-
 
78
  # SCOTUS
79
  dataset = load_dataset("lex_glue", 'scotus')
80
-
81
  # CaseHOLD
82
  dataset = load_dataset("lex_glue", 'case_hold')
83
-
84
  # UNFAIR-ToS
85
  dataset = load_dataset("lex_glue", 'unfair_tos')
86
  ```
 
64
  - [FiQA_SA](https://huggingface.co/datasets/AdaptLLM/FiQA_SA)
65
  - [Headline](https://huggingface.co/datasets/AdaptLLM/Headline)
66
  - [NER](https://huggingface.co/datasets/AdaptLLM/NER)
67
+ - [FPB](https://huggingface.co/datasets/AdaptLLM/FPB)
68
 
69
+ The other datasets used in our paper have already been available in huggingface, and you can directly load them with the following code:
70
  ```python
71
  from datasets import load_dataset
72
 
73
  # MQP:
74
  dataset = load_dataset('medical_questions_pairs')
 
75
  # PubmedQA:
76
  dataset = load_dataset('bigbio/pubmed_qa')
77
+ # USMLE:
78
+ dataset=load_dataset('GBaker/MedQA-USMLE-4-options')
79
  # SCOTUS
80
  dataset = load_dataset("lex_glue", 'scotus')
 
81
  # CaseHOLD
82
  dataset = load_dataset("lex_glue", 'case_hold')
 
83
  # UNFAIR-ToS
84
  dataset = load_dataset("lex_glue", 'unfair_tos')
85
  ```