Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Git LFS to instructions #157

Merged
merged 1 commit into from
May 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions Task_1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Please ask any additional questions in our discussion pages on our github site a
### System requirements

1. [Git](https://git-scm.com/downloads).
2. [Git LFS](https://github.com/git-lfs/git-lfs#downloading)
2. Python with virtual environment management system: we recommend using [Anaconda](https://www.anaconda.com/products/individual).
3. **Windows- Only**: Pickle5 requires Microsoft C++ 14.0 or greater from the [C++ build tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/).

Expand All @@ -16,18 +17,19 @@ Please ask any additional questions in our discussion pages on our github site a
1. Register for the FeTS 2022 Challenge [here](https://www.synapse.org/#!Synapse:syn28546456/wiki/617093) and submit a data request.
2. ```git clone https://github.com/FETS-AI/Challenge.git```
3. ```cd Challenge/Task_1```
4. Create virtual environment (python 3.6-3.8): using Anaconda, a new environment can be created and activated using the following commands:
4. ```git lfs pull```
5. Create virtual environment (python 3.6-3.8): using Anaconda, a new environment can be created and activated using the following commands:
```bash
## create venv in specific path
conda create -p ./venv python=3.7 -y
conda activate ./venv
```
5. ```pip install --upgrade pip```
6. Install Pytorch LTS (1.8.2) for your system using [these instructions](https://pytorch.org/get-started/locally/)
7. ```pip install .```
8. ```python FeTS_Challenge.py```
9. All lower-level details are in the [FeTS Challenge python file](./FeTS_Challenge.ipy)
10. To view intermediate results with TensorBoard during training, you can run the following command:
6. ```pip install --upgrade pip```
7. Install Pytorch LTS (1.8.2) for your system using [these instructions](https://pytorch.org/get-started/locally/)
8. ```pip install .```
9. ```python FeTS_Challenge.py```
10. All lower-level details are in the [FeTS Challenge python file](./FeTS_Challenge.ipy)
11. To view intermediate results with TensorBoard during training, you can run the following command:
```tensorboard --logdir ~/.local/workspace/logs/tensorboard```

## Time to Convergence Metric (formerly "communication cost")
Expand Down