jopan commited on
Commit
719bb97
1 Parent(s): 6111260

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -16,5 +16,22 @@ The corpus consists of two components:
16
  2) an evaluation set, which comprises 100 scientific articles manually annotated for evaluation purposes.
17
  To the best of our knowledge, SciDMT is the largest corpus for scientific entity mention detection. The corpus’s scale and diversity are instrumental in developing and refining models for tasks such as indexing scientific papers, enhancing information retrieval, and improving the accessibility of scientific knowledge. We demonstrate the corpus’s utility through experiments with advanced deep learning architectures like SciBERT and GPT-3.5. Our findings establish performance baselines and highlight unresolved challenges in scientific mention detection. SciDMT serves as a robust benchmark for the research community, encouraging the development of innovative models to further the field of scientific information extraction.
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  # Citation
20
  To-be-post
 
16
  2) an evaluation set, which comprises 100 scientific articles manually annotated for evaluation purposes.
17
  To the best of our knowledge, SciDMT is the largest corpus for scientific entity mention detection. The corpus’s scale and diversity are instrumental in developing and refining models for tasks such as indexing scientific papers, enhancing information retrieval, and improving the accessibility of scientific knowledge. We demonstrate the corpus’s utility through experiments with advanced deep learning architectures like SciBERT and GPT-3.5. Our findings establish performance baselines and highlight unresolved challenges in scientific mention detection. SciDMT serves as a robust benchmark for the research community, encouraging the development of innovative models to further the field of scientific information extraction.
18
 
19
+ # Files
20
+
21
+ 'DICT': '../data/SciDMT/SciDMT_dict.json',
22
+
23
+ # machine learning inputs at sentence level
24
+ 'sent_xy': '../data/SciDMT/SciDMT_sentences.p',
25
+ 'sent_eval': '../data/SciDMT/SciDMT_E_sentences.json',
26
+ 'sent_split': '../data/SciDMT/SciDMT_sentences_split.json',
27
+
28
+ # document level inputs
29
+ 'doc_split': '../data/SciDMT/SciDMT_split.json',
30
+ 'doc_eval': 'SciDMT_E_human_annotations.json',
31
+ 'doc_text_and_meta': 'SciDMT_papers.csv',
32
+
33
+ # Usage
34
+ SciDMT_demo.ipynb describes how to open the files and print out the file structures.
35
+
36
  # Citation
37
  To-be-post