JerMa88 commited on
Commit
a90d95a
·
verified ·
1 Parent(s): 585ba0b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - peer-review
7
+ - scientific-papers
8
+ - nlp
9
+ size_categories:
10
+ - 10K<n<100K
11
+ ---
12
+
13
+ # BMC Gastroenterology Peer Reviews
14
+
15
+ This dataset contains peer reviews from BMC, standardized to match the format of the `pawin205/PeerRT` dataset.
16
+
17
+ ## Dataset Description
18
+
19
+ - **Source**: BMC
20
+ - **Standardization**: Matches `pawin205/PeerRT` schema with an additional `year` attribute.
21
+ - **Total Records**: (See dataset viewer)
22
+
23
+ ## Dataset Structure
24
+
25
+ Each record contains the following attributes:
26
+
27
+ - `relative_rank`: Default value (0).
28
+ - `win_prob`: Default value (0.0).
29
+ - `title`: Title of the paper.
30
+ - `abstract`: Abstract of the paper.
31
+ - `full_text`: Full text of the paper (or review text if unavailable).
32
+ - `review`: The peer review text.
33
+ - `source`: Source of the data ('BMC').
34
+ - `review_src`: Original filename of the review.
35
+ - `criteria_count`: Dictionary containing counts of specific criteria in the review (e.g., criticism, praise).
36
+ - `dimension_scores`: Dictionary containing scores for various dimensions.
37
+ - `overall_score`: Computed overall score (reward value).
38
+ - `thinking_trace`: Placeholder (empty).
39
+ - `prompt`: Placeholder (empty).
40
+ - `prompt_length`: Placeholder (0).
41
+ - `conversations`: List of dictionaries representing the conversation (User/Assistant format).
42
+ - `year`: Year of publication (if available).
43
+
44
+ ## Usage
45
+
46
+ ```python
47
+ from datasets import load_dataset
48
+
49
+ dataset = load_dataset("JerMa88/BMC_Gastroenterology_Peer_Reviews")
50
+ print(dataset['train'][0])
51
+ ```