Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ unzip sync.zip
```
### prepare kitti
```bash
cd pytorch
cd dataset
mkdir kitti_dataset
cd kitti_dataset
Expand All @@ -28,16 +29,13 @@ wget -i kitti_archives_to_download.txt

### label
wget https://s3.eu-central-1.amazonaws.com/avg-kitti/data_depth_annotated.zip
unzip "*.zip"
unzip data_depth_annotated.zip
cd train
mv * ../
cd ..
mv train/* ./
mv val/* ./
rm -r train
cd val
mv * ../
cd ..
rm -r val
rm data_depth_annotated.zip
rm *.zip
```
## Environment
```bash
Expand Down
1 change: 1 addition & 0 deletions pytorch/bts_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ def main():

model_filename = args.model_name + '.py'
args.model_name=args.model_name + '_rank_'+str(args.att_rank)
os.system('mkdir ' + args.log_directory)
command = 'mkdir ' + args.log_directory + '/' + args.model_name
os.system(command)

Expand Down