adding paper summaries (#68)

This commit is contained in:
Dmitriy Ryajov 2022-05-10 09:28:49 -06:00 committed by GitHub
parent fc692e61ea
commit 1344bd4091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 0 deletions

34
papers/README.md Normal file
View File

@ -0,0 +1,34 @@
# Paper Summaries
> This directory contains academic paper summaries explored as part of the Codex project research. It is structured as a list of links to a document containing a quick summary and observations extracted from the paper. The summaries aren't meant to be exhaustive and cover all aspects of the paper but rather serve as a quick refresher and a record of the papers already evaluated.
## Index
- [Compact Proofs of Retrievability](./Compact_Proofs_of_Retrievability/README.md)
## Writing Summaries
A summary should contain a brief overview of the core ideas presented in the paper along with observations and notes.
## Template
A [template](template.md) is provided that outlines a few sections:
- Title - the title of the paper
- Authors - the authors of the paper
- DOI - the digital object identifier of the paper
- Links - an optional section with links to the paper and other relevant material, such as source code, simulations, etc... If the paper is uploaded to the repo, it should be linked here as well.
- Summary - a quick summary capturing the main ideas proposed by the paper
- Main ideas - an optional list of bullet points describing the main ideas of the paper in more detail
- Observations - an optional list of bullet pints with observations if any
- Other ideas - an optional list of bullet points with additional observations
## Directory Structure
Each evaluation should go into it's own directory named after the paper being evaluated. It should contain a `README.md` with the actual evaluation and additional supporting material such as the paper itself, if one is available; or relevant code samples if those are provided. For example, the `Shacham and Waters - Compact Proofs of Retrievability` directory structure would look something like this:
```
├── Compact\ Proofs\ of\ Retrievability
│ └── README.md
| └── Compact\ Proofs\ of\ Retrievability.pdf
```

31
papers/template.md Normal file
View File

@ -0,0 +1,31 @@
# Title
The title of the paper
## Authors
The authors of the paper
### DOI
The digital object identifier for the paper
### Links
An optional section with links to the paper and other relevant material, such as source code, simulations, etc... If the paper is uploaded to the repo, it should be linked here as well.
## Summary
A quick summary capturing the main ideas proposed by the paper
### Main ideas
A list of bullet points describing the main ideas of the paper in more detail
### Observations
An optional list of bullet points with observations if any
### Other ideas
An optional list of bullet points with additional observations