From a42e79d28167a33e609a7d1f7f917f90e0f97bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pikach=C3=BA?= Date: Fri, 27 Oct 2023 15:44:53 +0300 Subject: [PATCH 1/2] updated README content --- README.md | 1 + .../5-NLP/18-Transformers/{README.md => READMEtransformers.md} | 0 lessons/5-NLP/20-LangModels/{README.md => READMELargeLang.md} | 0 3 files changed, 1 insertion(+) rename lessons/5-NLP/18-Transformers/{README.md => READMEtransformers.md} (100%) rename lessons/5-NLP/20-LangModels/{README.md => READMELargeLang.md} (100%) diff --git a/README.md b/README.md index 6f812c8e..be7cd536 100644 --- a/README.md +++ b/README.md @@ -175,3 +175,4 @@ Our team produces other curricula! Check out: - [IoT for Beginners](https://aka.ms/iot-beginners) - [Machine Learning for Beginners](https://aka.ms/ml-beginners) - [Data Science for Beginners](https://aka.ms/datascience-beginners) +- [Generative AI for Beginners](https://aka.ms/genai-beginners) diff --git a/lessons/5-NLP/18-Transformers/README.md b/lessons/5-NLP/18-Transformers/READMEtransformers.md similarity index 100% rename from lessons/5-NLP/18-Transformers/README.md rename to lessons/5-NLP/18-Transformers/READMEtransformers.md diff --git a/lessons/5-NLP/20-LangModels/README.md b/lessons/5-NLP/20-LangModels/READMELargeLang.md similarity index 100% rename from lessons/5-NLP/20-LangModels/README.md rename to lessons/5-NLP/20-LangModels/READMELargeLang.md From 84962b09c876ed6bacd5b156d23ba455c1aca9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pikach=C3=BA?= Date: Tue, 6 Feb 2024 13:48:05 +0300 Subject: [PATCH 2/2] Updated permisssions for GitHub Token --- .../azure-static-web-apps-red-field-0a6ddfd03.yml | 14 ++++++++++++++ etc/how-to-run.md | 1 + 2 files changed, 15 insertions(+) diff --git a/.github/workflows/azure-static-web-apps-red-field-0a6ddfd03.yml b/.github/workflows/azure-static-web-apps-red-field-0a6ddfd03.yml index b0409ac5..520e3ca4 100644 --- a/.github/workflows/azure-static-web-apps-red-field-0a6ddfd03.yml +++ b/.github/workflows/azure-static-web-apps-red-field-0a6ddfd03.yml @@ -13,6 +13,13 @@ jobs: build_and_deploy_job: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') runs-on: ubuntu-latest + permissions: + actions: read + contents: read + deployments: read + packages: none + pull-requests: write + security-events: write name: Build and Deploy Job steps: - uses: actions/checkout@v2 @@ -36,6 +43,13 @@ jobs: if: github.event_name == 'pull_request' && github.event.action == 'closed' runs-on: ubuntu-latest name: Close Pull Request Job + permissions: + actions: read + contents: read + deployments: read + packages: none + pull-requests: write + security-events: write steps: - name: Close Pull Request id: closepullrequest diff --git a/etc/how-to-run.md b/etc/how-to-run.md index ea791fe0..ff3b05f6 100644 --- a/etc/how-to-run.md +++ b/etc/how-to-run.md @@ -28,6 +28,7 @@ Probably the best way to use the curriculum is to open it in [Visual Studio Code You can also use Jupyter environment right from the browser on your own computer. Actually, both classical Jupyter and Jupyer Hub provide quite convenient development environment with auto-completion, code highlighting, etc. To start Jupyter locally, go to the directory of the course, and execute: + ```bash jupyter notebook ```