Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -254,10 +254,10 @@ All datasets without parsed pdfs of submissions can be completed by running code
|
|
254 |
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
255 |
| **Basic Paper Info** | | |
|
256 |
| `title` | `str` | The title of the paper. |
|
257 |
-
| `authors` | `list[
|
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). |
|
@@ -295,3 +295,58 @@ All datasets without parsed pdfs of submissions can be completed by running code
|
|
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).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
255 |
| **Basic Paper Info** | | |
|
256 |
| `title` | `str` | The title of the paper. |
|
257 |
+
| `authors` | `list[Author]` | 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 (optional) |
|
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). |
|
|
|
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).
|
298 |
+
|
299 |
+
|
300 |
+
The attributes of Author, Review, Comment, Reference are the following:
|
301 |
+
|
302 |
+
### Review
|
303 |
+
|
304 |
+
| Attribute | Type | Explanation |
|
305 |
+
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
306 |
+
| `review_id` | `str` | A unique identifier for the review. |
|
307 |
+
| `review` | `TextReview` | The content of the review, represented by the `TextReview` model. |
|
308 |
+
| `score` | `float \| None` | The overall score given by the reviewer (optional). |
|
309 |
+
| `confidence` | `float \| None` | The reviewer's confidence in their assessment (optional). |
|
310 |
+
| `novelty` | `float \| None` | The novelty score of the paper (optional). |
|
311 |
+
| `correctness` | `float \| None` | The correctness score of the paper (optional). |
|
312 |
+
| `clarity` | `float \| None` | The clarity score of the paper (optional). |
|
313 |
+
| `impact` | `float \| None` | The impact score of the paper (optional). |
|
314 |
+
| `reproducibility` | `float \| None` | The reproducibility score of the paper (optional). |
|
315 |
+
| `ethics` | `str \| None` | Ethical considerations noted by the reviewer (optional). |
|
316 |
+
|
317 |
+
### TextReview
|
318 |
+
|
319 |
+
| Attribute | Type | Explanation |
|
320 |
+
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
321 |
+
| `title` | `str \| None` | The title of the review (optional). |
|
322 |
+
| `paper_summary` | `str \| None` | A summary of the paper being reviewed (optional). |
|
323 |
+
| `main_review` | `str \| None` | The main content of the review (optional). |
|
324 |
+
| `strength_weakness` | `str \| None` | A section discussing the strengths and weaknesses of the paper (optional). |
|
325 |
+
| `questions` | `str \| None` | Questions raised by the reviewer (optional). |
|
326 |
+
| `limitations` | `str \| None` | Limitations of the paper as noted by the reviewer (optional). |
|
327 |
+
| `review_summary` | `str \| None` | A summary of the review (optional). |
|
328 |
+
|
329 |
+
### Comment
|
330 |
+
|
331 |
+
| Attribute | Type | Explanation |
|
332 |
+
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
333 |
+
| `title` | `str \| None` | The title of the comment (optional). |
|
334 |
+
| `comment` | `str` | The content of the comment. |
|
335 |
+
|
336 |
+
### Reference
|
337 |
+
|
338 |
+
| Attribute | Type | Explanation |
|
339 |
+
|--------------------------|-------------------------------------|-----------------------------------------------------------------------------|
|
340 |
+
| **Basic Paper Info** | | |
|
341 |
+
| `title` | `str` | The title of the referenced paper. |
|
342 |
+
| `abstract` | `str` | The abstract of the referenced paper (default is an empty string). |
|
343 |
+
| `authors` | `list[str]` | A list of authors of the referenced paper. |
|
344 |
+
| **IDs** | | |
|
345 |
+
| `paperhash` | `str` | Paperhash for the reference paper (first_author_last_name\|title) |
|
346 |
+
| `arxiv_id` | `str \| None` | The arXiv ID of the referenced paper (optional, default is an empty string).|
|
347 |
+
| `s2_corpus_id` | `str \| None` | The Semantic Scholar (S2) corpus ID of the referenced paper (optional, default is an empty string). |
|
348 |
+
| **Reference Specific Info** | | |
|
349 |
+
| `intents` | `list[str] \| None` | The intents or purposes of the reference (optional). |
|
350 |
+
| `isInfluential` | `bool \| None` | Indicates whether the reference is influential (optional). |
|
351 |
+
|
352 |
+
|