-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16bb976
commit 23d7d0c
Showing
63 changed files
with
1,207 additions
and
1,139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,4 +55,4 @@ jobs: | |
folder: _build | ||
clean-exclude: | | ||
v*.*/ | ||
main | ||
main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,4 @@ jobs: | |
folder: _build | ||
clean-exclude: | | ||
v*.*/ | ||
main | ||
main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,4 +136,3 @@ dmypy.json | |
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,49 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: check-symlinks | ||
- id: destroyed-symlinks | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-toml | ||
- id: check-ast | ||
- id: check-added-large-files | ||
- id: check-merge-conflict | ||
- id: check-executables-have-shebangs | ||
- id: check-shebang-scripts-are-executable | ||
- id: detect-private-key | ||
- id: debug-statements | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.3.0 | ||
hooks: | ||
- id: codespell | ||
args: | ||
- --ignore-words-list=ser,theses,bu,ois | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.0.0 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
args: | ||
- '--per-file-ignores=**/__init__.py:F401,F403,E402' | ||
# - '--per-file-ignores=*/__init__.py:F401' | ||
- --ignore=E203,W503,E741,E731 | ||
- --max-complexity=30 | ||
- --max-line-length=456 | ||
- --show-source | ||
- --statistics | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.16.0 | ||
hooks: | ||
- id: pyupgrade | ||
args: ["--py38-plus"] | ||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.12.0 | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: ["--profile", "black"] | ||
exclude: "__init__.py" | ||
- repo: https://github.com/python/black | ||
rev: 23.3.0 | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ hide-toc: true | |
|
||
# 404 | ||
|
||
## Page Not Found | ||
## Page Not Found |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,4 +77,4 @@ @misc{Qi2017pointnet | |
eprint={1612.00593}, | ||
archivePrefix={arXiv}, | ||
primaryClass={cs.CV} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
import sys | ||
|
||
|
||
if __name__ == "__main__": | ||
if len(sys.argv) < 2: | ||
print("Provide a path") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ rewards/index | |
graphics/index | ||
multi_agent | ||
make_your_own | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
from highway_env.envs.highway_env import * | ||
from highway_env.envs.merge_env import * | ||
from highway_env.envs.parking_env import * | ||
from highway_env.envs.roundabout_env import * | ||
from highway_env.envs.two_way_env import * | ||
from highway_env.envs.intersection_env import * | ||
from highway_env.envs.lane_keeping_env import * | ||
from highway_env.envs.u_turn_env import * | ||
from highway_env.envs.exit_env import * | ||
from highway_env.envs.racetrack_env import * | ||
from highway_env.envs.exit_env import ExitEnv | ||
from highway_env.envs.highway_env import HighwayEnv, HighwayEnvFast | ||
from highway_env.envs.intersection_env import IntersectionEnv | ||
from highway_env.envs.lane_keeping_env import LaneKeepingEnv | ||
from highway_env.envs.merge_env import MergeEnv | ||
from highway_env.envs.parking_env import ParkingEnv | ||
from highway_env.envs.racetrack_env import RacetrackEnv | ||
from highway_env.envs.roundabout_env import RoundaboutEnv | ||
from highway_env.envs.two_way_env import TwoWayEnv | ||
from highway_env.envs.u_turn_env import UTurnEnv | ||
|
||
|
||
__all__ = [ | ||
"ExitEnv", | ||
"HighwayEnv", | ||
"HighwayEnvFast", | ||
"IntersectionEnv", | ||
"LaneKeepingEnv", | ||
"MergeEnv", | ||
"ParkingEnv", | ||
"RacetrackEnv", | ||
"RoundaboutEnv", | ||
"TwoWayEnv", | ||
"UTurnEnv", | ||
] |
Oops, something went wrong.