├── LICENSE ├── README.md ├── analysis.py ├── assets └── example.gif ├── dataset_generation.py ├── dataset_generation_const.py ├── figures.py ├── main.py ├── model.py ├── nets.py ├── requirements.txt ├── segmentation_metrics.py └── util.py /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Wayve Technologies Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Self-supervised Object-Centric Segmentation (SOCS) 2 | 3 | Code repository for the paper [Linking vision and motion for self-supervised object-centric perception](http://arxiv.org/abs/2307.07147). 4 | 5 |  6 | 7 | ## Installation 8 | 9 | A virtual environment with Python 3.9 is recommended. 10 | 11 |
pip install -r requirements.txtwaymo_open_raw
17 |     train
18 |         segment-10017090168044687777_6380_000_6400_000_with_camera_labels.tfrecord
19 |         ...
20 |     val
21 |         segment-10203656353524179475_7625_000_7645_000_with_camera_labels.tfrecord
22 |         ...python dataset_generation.py train
27 | python dataset_generation.py valpython main.py --behvaioral_cloning_taskpython analysis.py example_logdir/version_0 --split val --num_seq_to_analyze 208 --num_seq_to_plot 10 --gpu 0@article{stocking2023linking,
50 |   title={Linking vision and motion for self-supervised object-centric perception},
51 |   author={Stocking, Kaylene C and Murez, Zak and Badrinarayanan, Vijay and Shotton, Jamie and Kendall, Alex and Tomlin, Claire and Burgess, Christopher P},
52 |   journal={arXiv preprint arXiv:2307.07147},
53 |   year={2023}
54 | }