Dr. Jorge Abreu Vicente commited on
Commit
a189d0c
1 Parent(s): 78e2cf4

Update constants.py - adding biosses

Browse files
Files changed (1) hide show
  1. constants.py +22 -1
constants.py CHANGED
@@ -72,6 +72,17 @@ CITATIONS = {
72
  url = "https://aclanthology.org/W04-1213",
73
  pages = "73--78",
74
  }""",
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  }
77
 
@@ -135,6 +146,15 @@ DESCRIPTIONS = {
135
  Corpus format: The JNLPBA corpus is distributed in IOB format, with each line
136
  containing a single token and its tag, separated by a tab character.
137
  Sentences are separated by blank lines.""",
 
 
 
 
 
 
 
 
 
138
  }
139
 
140
  HOMEPAGES = {
@@ -144,6 +164,7 @@ HOMEPAGES = {
144
  "BC2GM-IOB": "https://biocreative.bioinformatics.udel.edu/tasks/biocreative-ii/task-1a-gene-mention-tagging/",
145
  "NCBI-disease-IOB":"https://www.ncbi.nlm.nih.gov/CBBresearch/Dogan/DISEASE/",
146
  "JNLPBA":"http://www.geniaproject.org/shared-tasks/bionlp-jnlpba-shared-task-2004",
 
147
 
148
  }
149
 
@@ -154,5 +175,5 @@ DATA_URL = {
154
  "BC5CDR-disease-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
155
  "BC2GM-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
156
  "NCBI-disease-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
157
- "JNLPBA": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
158
  }
 
72
  url = "https://aclanthology.org/W04-1213",
73
  pages = "73--78",
74
  }""",
75
+
76
+ "BIOSSES": """@article{souganciouglu2017biosses,
77
+ title={BIOSSES: a semantic sentence similarity estimation system for the biomedical domain},
78
+ author={So{\u{g}}anc{\i}o{\u{g}}lu, Gizem and {\"O}zt{\"u}rk, Hakime and {\"O}zg{\"u}r, Arzucan},
79
+ journal={Bioinformatics},
80
+ volume={33},
81
+ number={14},
82
+ pages={i49--i58},
83
+ year={2017},
84
+ publisher={Oxford University Press}
85
+ }"""
86
 
87
  }
88
 
 
146
  Corpus format: The JNLPBA corpus is distributed in IOB format, with each line
147
  containing a single token and its tag, separated by a tab character.
148
  Sentences are separated by blank lines.""",
149
+
150
+ "BIOSSES": """BIOSSES is a benchmark dataset for biomedical sentence similarity estimation. The dataset comprises 100 sentence pairs, in which each sentence was selected from the [TAC (Text Analysis Conference) Biomedical Summarization Track Training Dataset](https://tac.nist.gov/2014/BiomedSumm/) containing articles from the biomedical domain. The sentence pairs in BIOSSES were selected from citing sentences, i.e. sentences that have a citation to a reference article.
151
+ The sentence pairs were evaluated by five different human experts that judged their similarity and gave scores ranging from 0 (no relation) to 4 (equivalent). In the original paper the mean of the scores assigned by the five human annotators was taken as the gold standard. The Pearson correlation between the gold standard scores and the scores estimated by the models was used as the evaluation metric. The strength of correlation can be assessed by the general guideline proposed by Evans (1996) as follows:
152
+ - very strong: 0.80–1.00
153
+ - strong: 0.60–0.79
154
+ - moderate: 0.40–0.59
155
+ - weak: 0.20–0.39
156
+ - very weak: 0.00–0.19
157
+ """
158
  }
159
 
160
  HOMEPAGES = {
 
164
  "BC2GM-IOB": "https://biocreative.bioinformatics.udel.edu/tasks/biocreative-ii/task-1a-gene-mention-tagging/",
165
  "NCBI-disease-IOB":"https://www.ncbi.nlm.nih.gov/CBBresearch/Dogan/DISEASE/",
166
  "JNLPBA":"http://www.geniaproject.org/shared-tasks/bionlp-jnlpba-shared-task-2004",
167
+ "BIOSSES":"https://tabilab.cmpe.boun.edu.tr/BIOSSES/DataSet.html",
168
 
169
  }
170
 
 
175
  "BC5CDR-disease-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
176
  "BC2GM-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
177
  "NCBI-disease-IOB": "https://github.com/cambridgeltl/MTL-Bioinformatics-2016/raw/master/data/",
178
+ "BIOSSES": "https://github.com/gizemsogancioglu/biosses",
179
  }