├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ └── references.yml ├── LICENSE ├── bibtex ├── generate_bibtex.py └── references.bib ├── code-of-conduct.md ├── contributing.md └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/.github/workflows/references.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/LICENSE -------------------------------------------------------------------------------- /bibtex/generate_bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/bibtex/generate_bibtex.py -------------------------------------------------------------------------------- /bibtex/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/bibtex/references.bib -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/contributing.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AccelerationConsortium/awesome-self-driving-labs/HEAD/readme.md --------------------------------------------------------------------------------