Merge pull request #254 from BethanyJep/main

updated generative AI lesson
This commit is contained in:
Pikachú 2024-02-06 18:57:58 +03:00 committed by GitHub
commit 91e5d2e3e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 0 deletions

View File

@ -16,6 +16,13 @@ jobs:
checks: none
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
@ -39,6 +46,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

View File

@ -194,3 +194,4 @@ Our team produces other curricula! Check out:
- [Machine Learning for Beginners](https://aka.ms/ml-beginners)
- [XR Development for Beginners](https://aka.ms/xr-dev-for-beginners)
- [Mastering GitHub Copilot for AI Paired Programming](https://aka.ms/GitHubCopilotAI)

View File

@ -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
```