From 1833c9dfca35842d07d032e64d068a5b1f1c8e52 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Sat, 3 Dec 2022 09:42:46 +0100 Subject: [PATCH 1/8] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f2136fe..5738904 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # The Hugging Face Deep Reinforcement Learning Class 🤗 +We're launching a new version (v2.0) of the course starting December the 5th, + +**Sign up here** ➡️➡️➡️ http://eepurl.com/ic5ZUD + + + +# The documentation below is for v1.0 (depreciated) + In this free course, you will: - 📖 Study Deep Reinforcement Learning in **theory and practice**. @@ -9,7 +17,6 @@ In this free course, you will: - 🏆 **Participate in challenges** where you will evaluate your agents against other teams. - 🖌️🎨 **Learn to share your own environments made with Unity and Godot**. -➡️➡️➡️ Don't forget to sign up here: http://eepurl.com/h1pElX The best way to keep in touch is to **join our discord server to exchange with the community and with us** 👉🏻 https://discord.gg/aYka4Yhff9 From b3103766e9d751e2694ca2ce20c6364f969faf5a Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Sat, 3 Dec 2022 09:44:00 +0100 Subject: [PATCH 2/8] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5738904..01c809e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,15 @@ # The Hugging Face Deep Reinforcement Learning Class 🤗 -We're launching a new version (v2.0) of the course starting December the 5th, +We're launching a **new version (v2.0) of the course starting December the 5th,** -**Sign up here** ➡️➡️➡️ http://eepurl.com/ic5ZUD +The syllabus 📚: https://simoninithomas.github.io/deep-rl-course +## **Sign up here** ➡️➡️➡️ http://eepurl.com/ic5ZUD +
+
+
+
# The documentation below is for v1.0 (depreciated) From 6515497a3ec2d28b75d544fe5c6357fdc0eebd47 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 5 Dec 2022 16:13:39 +0100 Subject: [PATCH 3/8] Add GitHub workflows --- .github/workflows/build_documentation.yml | 19 +++++++++++++++++++ .github/workflows/build_pr_documentation.yml | 20 ++++++++++++++++++++ .github/workflows/delete_doc_comment.yml | 13 +++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 .github/workflows/build_documentation.yml create mode 100644 .github/workflows/build_pr_documentation.yml create mode 100644 .github/workflows/delete_doc_comment.yml diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml new file mode 100644 index 0000000..e23d069 --- /dev/null +++ b/.github/workflows/build_documentation.yml @@ -0,0 +1,19 @@ +name: Build documentation + +on: + push: + branches: + - release + - doc-builder* + +jobs: + build: + uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main + with: + commit_sha: ${{ github.sha }} + package: deep-rl-class + path_to_docs: course/units/ + additional_args: --not_python_module + languages: en + secrets: + token: ${{ secrets.HUGGINGFACE_PUSH }} \ No newline at end of file diff --git a/.github/workflows/build_pr_documentation.yml b/.github/workflows/build_pr_documentation.yml new file mode 100644 index 0000000..bebb89a --- /dev/null +++ b/.github/workflows/build_pr_documentation.yml @@ -0,0 +1,20 @@ +name: Build PR Documentation + +on: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + build: + uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@main + with: + commit_sha: ${{ github.event.pull_request.head.sha }} + pr_number: ${{ github.event.number }} + package: deep-rl-class + path_to_docs: deep-rl-class/units/ + additional_args: --not_python_module + languages: en + hub_base_path: https://moon-ci-docs.huggingface.co diff --git a/.github/workflows/delete_doc_comment.yml b/.github/workflows/delete_doc_comment.yml new file mode 100644 index 0000000..a286a49 --- /dev/null +++ b/.github/workflows/delete_doc_comment.yml @@ -0,0 +1,13 @@ +name: Delete dev documentation + +on: + pull_request: + types: [ closed ] + + +jobs: + delete: + uses: huggingface/doc-builder/.github/workflows/delete_doc_comment.yml@main + with: + pr_number: ${{ github.event.number }} + package: deep-rl-class \ No newline at end of file From 1f87ad263c4ed791e26552d67049eca628fa2e4b Mon Sep 17 00:00:00 2001 From: Omar Sanseviero Date: Mon, 5 Dec 2022 16:21:24 +0100 Subject: [PATCH 4/8] Update build_documentation.yml --- .github/workflows/build_documentation.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index e23d069..63bf585 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -3,8 +3,7 @@ name: Build documentation on: push: branches: - - release - - doc-builder* + - main jobs: build: @@ -16,4 +15,4 @@ jobs: additional_args: --not_python_module languages: en secrets: - token: ${{ secrets.HUGGINGFACE_PUSH }} \ No newline at end of file + token: ${{ secrets.HUGGINGFACE_PUSH }} From 21e7d8bc7fcfc930cc9beff78df4f0cad3890545 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 5 Dec 2022 16:51:05 +0100 Subject: [PATCH 5/8] Update build_documentation.yml --- .github/workflows/build_documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index 63bf585..a91aaab 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -10,7 +10,7 @@ jobs: uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main with: commit_sha: ${{ github.sha }} - package: deep-rl-class + package: deep-rl-course path_to_docs: course/units/ additional_args: --not_python_module languages: en From e9660d1292429d286a9726f93e145842f58c9188 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 5 Dec 2022 16:54:00 +0100 Subject: [PATCH 6/8] Update build_pr_documentation.yml --- .github/workflows/build_pr_documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_pr_documentation.yml b/.github/workflows/build_pr_documentation.yml index bebb89a..3865b11 100644 --- a/.github/workflows/build_pr_documentation.yml +++ b/.github/workflows/build_pr_documentation.yml @@ -13,7 +13,7 @@ jobs: with: commit_sha: ${{ github.event.pull_request.head.sha }} pr_number: ${{ github.event.number }} - package: deep-rl-class + package: deep-rl-course path_to_docs: deep-rl-class/units/ additional_args: --not_python_module languages: en From 05e2cdb520e2725f23921c2b6e0b88e8d765114e Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 5 Dec 2022 16:54:46 +0100 Subject: [PATCH 7/8] Update build_documentation.yml --- .github/workflows/build_documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index a91aaab..b10df4a 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -11,7 +11,7 @@ jobs: with: commit_sha: ${{ github.sha }} package: deep-rl-course - path_to_docs: course/units/ + path_to_docs: deep-rl-course/units/ additional_args: --not_python_module languages: en secrets: From 94dda828336ec2b123dcd60356f7d64e04d18cc5 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 5 Dec 2022 16:55:10 +0100 Subject: [PATCH 8/8] Update build_documentation.yml --- .github/workflows/build_documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index b10df4a..6598a65 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -11,7 +11,7 @@ jobs: with: commit_sha: ${{ github.sha }} package: deep-rl-course - path_to_docs: deep-rl-course/units/ + path_to_docs: deep-rl-class/units/ additional_args: --not_python_module languages: en secrets: