Skip to content

Commit

Permalink
chore: Improve setup instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcioPorto committed Jul 10, 2020
1 parent a3851d9 commit 2d26ee7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@
.DS_Store

# cache files
*.pyc
*.pyc

# virtual environment
venv/
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

This repo contains an implementation for the [Two-stage Federated Phenotyping and Patient Representation Learning](https://arxiv.org/pdf/1908.05596.pdf) using PySyft and SyferText. For more information about this project, please refer to [this issue](https://github.com/OpenMined/SyferText/issues/23) in SyferText.

## Google Summer of Code 2020
## Setup Instructions

If this task peaks your interest, submit your GSoC application [here](https://docs.google.com/forms/d/e/1FAIpQLSdyfrAmqFVd3fg3WEpxrPHTrDFzcJHnSwGYLUE3c8HGoIpclQ/viewform?fbzx=3886908670152596904) and join the `#gsoc` channel on the OpenMined Slack and let us know.
- Create a virtual environment and activate. For example:

```bash
virtualenv -p python3.8 venv
source venv/bin/activate
```

- Install the project requirements:

```bash
pip install -r requirements.txt
```
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pandas==1.0.3
numpy==1.18.1
pandas==1.0.5
mmh3==2.5.1
syft==0.2.4
tqdm==4.45.0
syft==0.2.6
tqdm==4.47.0

0 comments on commit 2d26ee7

Please sign in to comment.