Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/csoneson/bioc2022openreview
https://github.com/csoneson/bioc2022openreview
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/csoneson/bioc2022openreview
- Owner: csoneson
- Created: 2022-04-03T11:56:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-21T09:37:14.000Z (over 2 years ago)
- Last Synced: 2024-12-18T11:47:06.960Z (21 days ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Set up
In your `.zshrc` or equivalent, add your OpenReview login details as environment variables, e.g.
```
export OPENREVIEW_USERNAME='your_username'
export OPENREVIEW_PASSWORD='your password'
```Create a Conda environment and install dependencies.
```
conda create -n bioc2022openreview python=3.9
conda activate bioc2022openreview
pip install -r requirements.txt
```# Working environment
```
conda activate bioc2022openreview
```# Test
```
conda activate bioc2022openreview
python test.py
```# Setup
Edit the `config.py` script - set the right conference path, define the output
directory. Also edit the respective scripts to reflect e.g. the fields in
the submission form that you would like to pull down.# Example usage
Pull down the submissions to `_out/submissions.txt`:
```
python tabulate_submissions.py
```Pull down the reviews to `_out/reviews.txt`:
```
python tabulate_reviews.py
```# OpenReview API
- [Documentation](https://openreview-py.readthedocs.io/en/latest/)