Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
fe73fc0
Clean-up: remove algos folder
Sep 30, 2023
f3ddc71
Clean-up: remove algo configs
Sep 30, 2023
01e9f47
Clean-up: move example scene to data folder
Sep 30, 2023
0deed29
Clean-up: remove examples folder
Sep 30, 2023
26af398
Clean-up: remove cluster_scripts
Sep 30, 2023
ebe4bf0
Clean-up: Added poetry for package management
daphne-cornelisse Oct 2, 2023
4f21f93
Feature: Added pre-commit with Python, yaml, toml, poetry, docs, and …
daphne-cornelisse Oct 2, 2023
2ad0404
Fix: Moved poetry export pre-commit to local hook as official hook ha…
daphne-cornelisse Oct 3, 2023
dcad908
add data path to env_config
Oct 3, 2023
dee29f9
basic rl usage example
Oct 3, 2023
0d3b989
Merge branch 'feature/nocturne_fork_cleanup' of github.com:Emerge-Lab…
Oct 3, 2023
542798b
Refactor: Applied pre-commit to ./nocturne/envs/base_env.py and ./con…
daphne-cornelisse Oct 3, 2023
736b0f7
Feature: Moved research dependencies to separate research group and a…
daphne-cornelisse Oct 3, 2023
75af899
Feature: Simplified BaseEnv and env_config.yaml
daphne-cornelisse Oct 3, 2023
9290690
add intro examples
Oct 4, 2023
1f0c3e2
update basic usage example
Oct 4, 2023
63d9e7c
update config
Oct 4, 2023
69203e6
update readme
Oct 4, 2023
16d56a2
Update README.md
daphne-cornelisse Oct 4, 2023
2b476e6
review and update base_env
Oct 4, 2023
6ace0ff
Merge branch 'feature/nocturne_fork_cleanup' of github.com:Emerge-Lab…
Oct 4, 2023
570c2fc
Update README.md
daphne-cornelisse Oct 4, 2023
6f5f783
Update README.md
daphne-cornelisse Oct 4, 2023
7bca092
Cleanup
Oct 4, 2023
ca3c166
Update basic usage
Oct 4, 2023
b71a85b
Merge branch 'feature/nocturne_fork_cleanup' of github.com:Emerge-Lab…
Oct 4, 2023
58ba12a
add wandb folder in gitignore
Oct 4, 2023
fc4e975
Add PPO with nocturne example
Oct 4, 2023
25a4f1a
fix bug in apply actions method
Oct 4, 2023
87b8630
Add Nocturne to SB3 wrapper for single-agent control
Oct 4, 2023
8eacc68
edits to toml and requiremets
Oct 4, 2023
e609152
Remove unused files
Oct 4, 2023
b62e2e4
Update README.md
daphne-cornelisse Oct 4, 2023
acb607b
Update README.md
daphne-cornelisse Oct 4, 2023
94df874
Update README.md
daphne-cornelisse Oct 4, 2023
81f2633
Update README.md
daphne-cornelisse Oct 4, 2023
a82a938
Update README.md
daphne-cornelisse Oct 4, 2023
8f57790
Fix: Collection of bug fixes, specifically:
daphne-cornelisse Oct 4, 2023
bd29583
Feature: Added poetry setup instructions to README.md
daphne-cornelisse Oct 4, 2023
7c7b634
Fix: Removed poetry export for docs requirements.txt as this should b…
daphne-cornelisse Oct 4, 2023
e400615
update data path
Oct 5, 2023
83a392d
update basic rl config
Oct 5, 2023
241a258
Update README.md
daphne-cornelisse Oct 5, 2023
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,12 @@ dataset/

# configs
configs.json

# pyenv
.python-version

# poetry
poetry.lock

# wandb
wandb
66 changes: 66 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# 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.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: sort-simple-yaml
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
- id: check-added-large-files
- repo: https://github.com/python-poetry/poetry
rev: 1.6.0
hooks:
- id: poetry-check
- id: poetry-lock
# - id: poetry-publish
- repo: https://github.com/psf/black
rev: 23.9.1
hooks:
- id: black
args: [--line-length, '120']
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
hooks:
- id: flake8
args: [--max-line-length=120, --extend-ignore=E203]
- repo: https://github.com/PyCQA/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
args: [--convention=numpy]
additional_dependencies: [tomli]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.10.0
hooks:
- id: pretty-format-toml
args: [--autofix, --no-sort]
- id: pretty-format-yaml
args: [--autofix]
- repo: local
hooks:
- id: pylint
name: pylint
entry: poetry run pylint
language: system
types: [python]
- id: poetry-export-requirements
name: poetry-export-requirements
entry: poetry export --without-hashes --with=main,research -f requirements.txt -o requirements.txt
language: system
types: [python]
pass_filenames: false
- id: poetry-export-requirements-dev
name: poetry-export-requirements-dev
entry: poetry export --without-hashes --only dev -f requirements.txt -o requirements.dev.txt
language: system
types: [python]
pass_filenames: false
295 changes: 108 additions & 187 deletions README.md

Large diffs are not rendered by default.

Empty file removed algos/ppo/__init__.py
Empty file.
180 changes: 0 additions & 180 deletions algos/ppo/base_runner.py

This file was deleted.

Loading