Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
rainorangelemon committed Jan 27, 2024
1 parent 5d0434e commit 8e98c7a
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 34 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# For project
.vscode
__MACOSX
*.yml
.ipynb_checkpoints
data/visualization/
data/static
data/dynamic
data/yaml_dataset

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,22 @@ LEMP (Learning-Enabled Motion Planning) is a light-weight framework that combine

### Create Conda Environment
```bash
conda create -n lemp python=3.8
conda activate lemp
conda install -c conda-forge jupyterlab numpy matplotlib
pip install pybullet Pillow scipy
$ conda create -n lemp python=3.8
$ conda activate lemp
$ conda install -c conda-forge jupyterlab numpy matplotlib
$ pip install pybullet Pillow scipy
# install torch following the instructions from the pytorch website, for example:
$ conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
# install torch-geometric following the instructions from the torch-geometric website, for example:
$ pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.1.0+cu118.html
$ pip install torch_geometric
```

### Unzip the Datasets
```bash
cd data
unzip *.zip
unzip static.zip
unzip dynamic.zip
```

## Quickstart
Expand Down
Loading

0 comments on commit 8e98c7a

Please sign in to comment.