Skip to content

Commit

Permalink
Update hashbangs to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
mintar committed Oct 14, 2020
1 parent 892af1b commit 8a75e80
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nodes/camera
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# Copyright (c) 2018 NVIDIA Corporation. All rights reserved.
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
# https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
Expand Down
2 changes: 1 addition & 1 deletion nodes/dope
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

# Copyright (c) 2018 NVIDIA Corporation. All rights reserved.
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Expand Down
6 changes: 3 additions & 3 deletions scripts/train.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

# Copyright (c) 2018 NVIDIA Corporation. All rights reserved.
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Expand Down Expand Up @@ -31,15 +31,15 @@
This is the DOPE training code.
It is provided as a convenience for researchers, but it is otherwise unsupported.
Please refer to `python train.py --help` for specific details about the
Please refer to `python3 train.py --help` for specific details about the
training code.
If you download the FAT dataset
(https://research.nvidia.com/publication/2018-06_Falling-Things)
you can train a YCB object DOPE detector as follows:
```
python train.py --data path/to/FAT --object soup --outf soup
python3 train.py --data path/to/FAT --object soup --outf soup
--gpuids 0 1 2 3 4 5 6 7
```
Expand Down

0 comments on commit 8a75e80

Please sign in to comment.