From f889866a733c01bea1c8afc7f63ec4c135d0a584 Mon Sep 17 00:00:00 2001 From: Tue Herlau <tuhe@dtu.dk> Date: Fri, 17 Jan 2025 15:35:56 +0100 Subject: [PATCH] Minor tweaks for week 1 --- .vscode/requirements_conda.txt | 15 +++++++++++++++ LICENSE | 8 -------- README.md | 6 ++++++ environment.yml | 11 +++++------ 4 files changed, 26 insertions(+), 14 deletions(-) create mode 100644 .vscode/requirements_conda.txt delete mode 100644 LICENSE diff --git a/.vscode/requirements_conda.txt b/.vscode/requirements_conda.txt new file mode 100644 index 0000000..2a0dd31 --- /dev/null +++ b/.vscode/requirements_conda.txt @@ -0,0 +1,15 @@ +# On linux, you should run this command (or equivalent) also need these packages: +# > apt install build-essential python3.11-dev swig +# (replace 3.11 with your python version; for instance python3.12-dev. +gymnasium[box2d] +torch +sympy +tqdm +seaborn +pillow +scikit-learn +matplotlib +requests # Required when updating the local files (read stuff from gitlab). +pyqt6 # Try pyqt +pygame + diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 847cbfa..0000000 --- a/LICENSE +++ /dev/null @@ -1,8 +0,0 @@ -LICENCE - -This repository contains code for the course 02465, Introduction to reinforcement learning and control theory. - -Some of the code in this repository is not written by me and the licensing terms are as indicated in the relevant files. - -Files authored by me or other DTU employees is only intended for educational purposes for students enrolled in the course. -Please do not re-distribute or publish this code without written permision from Tue Herlau (tuhe@dtu.dk). \ No newline at end of file diff --git a/README.md b/README.md index 16f655b..eae0c4b 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,9 @@ This repository contains code for 02465, introduction to machine learning and control theory. For installation instructions and course material please see: - https://www2.compute.dtu.dk/courses/02465/information/installation.html + + +## License +Some of the code in this repository is not written by me and the licensing terms are as indicated in the relevant files. + +Files authored by me are only intended for educational purposes. Please do not re-distribute or publish this code without written permision from Tue Herlau (tuhe@dtu.dk) diff --git a/environment.yml b/environment.yml index 799db14..dcb17c4 100644 --- a/environment.yml +++ b/environment.yml @@ -1,15 +1,14 @@ -# On linux, you should run this command (or equivalent) also need these packages: -# > apt install build-essential python3.11-dev swig +# On linux or MacOS, if you are *not* installing conda, you should install these packages: +# apt install build-essential python3.11-dev swig # (replace 3.11 with your python version; for instance python3.12-dev. -name: irlcenv +name: irlcenv # You can give the environment another name. It is activate by `conda activate irlcenv` channels: - pytorch - conda-forge - # - nodefaults dependencies: - python - - gymnasium-box2d>=1.0.0 + - gymnasium[box2d]>=1.0.0 - pytorch - sympy - tqdm @@ -17,7 +16,7 @@ dependencies: - pillow - scikit-learn - matplotlib - - requests # Required when updating the local files (read stuff from gitlab). + - requests - qtpy # Try pyqt, pyqt6 on other platforms. - pygame - pip -- GitLab