Skip to content

Commit

Permalink
docs: Add asset download commands
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Apr 23, 2024
1 parent a1b7433 commit 982201c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,23 @@
```sh
git clone https://github.com/j3soon/omni-nerf-extension
cd omni-nerf-extension
# TODO: Download example files
```

Download assets:

```sh
wget https://github.com/j3soon/omni-nerf-extension/releases/download/v0.0.1/assets.zip
unzip assets.zip
```

Prepare assets for `nerfstudio_renderer`:

```sh
# change the DATE_TIME to the name of the placeholder
DATE_TIME=2023-12-30_111633
CHECKPOINT_NAME=step-000029999
cp -r ./assets/outputs/poster/nerfacto/$DATE_TIME ./assets/outputs/poster/nerfacto/DATE_TIME
mv ./assets/outputs/poster/nerfacto/DATE_TIME/nerfstudio_models/$CHECKPOINT_NAME.ckpt ./assets/outputs/poster/nerfacto/DATE_TIME/nerfstudio_models/CHECKPOINT_NAME.ckpt
```

The following assumes that you are running the commands from the root of the repository.
Expand Down

0 comments on commit 982201c

Please sign in to comment.