nhop commited on
Commit
a86d2c4
·
verified ·
1 Parent(s): a3dd240

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -248,3 +248,50 @@ Due to licensing the dataset comes in different formats:
248
 
249
  All datasets without parsed pdfs of submissions can be completed by running code available [here](https://github.com/NikeHop/automatic_scientific_quality_metrics)
250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
  All datasets without parsed pdfs of submissions can be completed by running code available [here](https://github.com/NikeHop/automatic_scientific_quality_metrics)
250
 
251
+ ### Overview of Dataset columns
252
+
253
+ | Attribute | Type | Explanation |
254
+ |--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
255
+ | **Basic Paper Info** | | |
256
+ | `title` | `str` | The title of the paper. |
257
+ | `authors` | `list[dict]` | A list of authors of the paper. |
258
+ | `abstract` | `str \| None` | The abstract of the paper (optional). |
259
+ | `summary` | `str \| None` | A summary of the paper (optional). |
260
+ | `month_since_publication`| `int \| None` | Month passed since the publication date |
261
+ | `publication_date` | `str \| None` | The publication date of the paper (optional). |
262
+ | `field_of_study` | `list[str] \| None` | The field(s) of study the paper belongs to (optional). |
263
+ | `venue` | `str \| None` | The venue where the paper was published (optional). |
264
+ | **ID's** | | |
265
+ | `paperhash` | `str` | A unique hash identifier for the paper. (last_name_first_author\|title\|venue)| |
266
+ | `arxiv_id` | `str \| None` | The arXiv ID of the paper (optional). |
267
+ | `s2_corpus_id` | `str \| None` | The Semantic Scholar (S2) corpus ID of the paper (optional). |
268
+ | **Semantic Scholar Metadata** | | |
269
+ | `n_references` | `int \| None` | The number of references in the paper (optional). |
270
+ | `n_citations` | `int \| None` | The number of citations the paper has received, only accepted papers (optional). |
271
+ | `n_influential_citations`| `int \| None` | The number of influential citations the paper has received, only accepted papers (optional). |
272
+ | `external_ids` | `dict \| None` | External IDs associated with the paper (optional). |
273
+ | **Content** | | |
274
+ | `introduction` | `str \| None` | Introduction of the paper if available (optional) |
275
+ | `background` | `str \| None` | Background of the paper if available (optional) |
276
+ | `methodology` | `str \| None` | Methodology of the paper if available (optional) |
277
+ | `experiments_results` | `str \| None` | Experiments & Results of the paper if available (optional) |
278
+ | `conclusion` | `str \| None` | Conclusion of the paper if available (optional) |
279
+ | `full_text` | `str \| None` | Full text of the paper if available (optional) |
280
+ | **Review Data** | | |
281
+ | `decision` | `bool \| None` | The decision on the paper (e.g., accepted/rejected) (optional). |
282
+ | `decision_text` | `str \| None` | The text explaining the decision (optional). |
283
+ | `reviews` | `list[Review] \| None` | A list of reviews for the paper (optional). |
284
+ | `comments` | `list[Comment] \| None` | A list of comments on the paper (optional). |
285
+ | **Scores** | | |
286
+ | `mean_score` | `float \| None` | The mean overall score of the reviews (optional) |
287
+ | `mean_novelty` | `float \| None` | The mean novelty score of the reviews (optional) |
288
+ | `mean_confidence` | `float \| None` | The mean confidence score of the reviews (optional) |
289
+ | `mean_correctness` | `float \| None` | The mean correctness score of the reviews (optional) |
290
+ | `mean_clarity` | `float \| None` | The mean clarity score of the reviews (optional) |
291
+ | `mean_impact` | `float \| None` | The mean impact score of the reviews (optional) |
292
+ | `mean_reproducibility` | `float \| None` | The mean reproducibility score of the reviews (optional) |
293
+ | `avg_citations_per_month`| `float \| None` | The average number of citations per month |
294
+ | **References** | | |
295
+ | `references` | `list[Reference] \| None` | A list of references cited in the paper (optional). |
296
+ | **Hypothesis** | | |
297
+ | `hypothesis` | `str \| None` | The hypothesis proposed in the paper annotated via an LLM (optional).