Skip to content

Commit

Permalink
Update KDD22 Tutorial Instructions, Session 2, and Session 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jyun-Yu Jiang committed Aug 13, 2022
1 parent 3fadc0a commit 4b78cdc
Show file tree
Hide file tree
Showing 6 changed files with 1,320 additions and 1,424 deletions.
23 changes: 23 additions & 0 deletions tutorials/kdd22/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,26 @@ By the end of the tutorial, we believe that attendees will be easily capable of
| 11:10 AM - 11:40 AM | Session 5: XR-Transformer cookbook and Distributed PECOS | [Notebook](https://github.com/amzn/pecos/blob/mainline/tutorials/kdd22/Session%205%20XR-Transformer%20cookbook%20and%20Distributed%20PECOS.ipynb) |
| 11:40 AM - 11:50 AM | Session 6: Research with PECOS | |
| 11:50 AM - 12:00 PM | Closing Remarks | |

## Tutorial Instructions

### Miniconda Installation
```bash
mkdir -p ~/miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm -rf ~/miniconda3/miniconda.sh
~/miniconda3/bin/conda init bash
~/miniconda3/bin/conda init zsh
```

### Tutorial Mateiral Execution
```bash
conda create -n tutorial_env python=3.9 -y
conda activate tutorial_env
pip install libpecos matplotlib panda jupyterlab
mkdir -p ~/pecos_tutorial_playground
cd ~/pecos_tutorial_playground
git clone https://github.com/amzn/pecos
jupyter-lab --ip=0.0.0.0 --port 8888 --no-browser --allow-root --notebook-dir=pecos/tutorials/kdd22
```
Loading

0 comments on commit 4b78cdc

Please sign in to comment.