regenerating quizzes and adding video link

This commit is contained in:
Jen Looper 2022-05-25 10:13:14 -04:00
parent a031591b2f
commit be5720d2c5
7 changed files with 21 additions and 24 deletions

View File

@ -12,13 +12,10 @@
# Artificial Intelligence for Beginners - A Curriculum # Artificial Intelligence for Beginners - A Curriculum
> **This curriculum is being actively developed on GitHub. Look into [contributing](/etc/CONTRIBUTING.md) to see which areas require active contributions. Please consider this a pre-release, and do not actively use in the classroom yet!**
|![ Sketchnote by [(@girlie_mac)](https://twitter.com/girlie_mac) ](./lessons/sketchnotes/ai-overview.png)| |![ Sketchnote by [(@girlie_mac)](https://twitter.com/girlie_mac) ](./lessons/sketchnotes/ai-overview.png)|
|:---:| |:---:|
| AI For Beginners - _Sketchnote by [@girlie_mac](https://twitter.com/girlie_mac)_ | | AI For Beginners - _Sketchnote by [@girlie_mac](https://twitter.com/girlie_mac)_ |
Azure Cloud Advocates at Microsoft are pleased to offer a 12-week, 24-lesson curriculum all about **Artificial Intelligence**. Azure Cloud Advocates at Microsoft are pleased to offer a 12-week, 24-lesson curriculum all about **Artificial Intelligence**.
In this curriculum, you will learn: In this curriculum, you will learn:
@ -139,7 +136,7 @@ However, if you would like to take the course as a self-study project, we sugges
## Meet the Team ## Meet the Team
[![Promo video](/lessons/sketchnotes/ai-for-beginners.png)](https://youtu.be/Tj1XWrDSYJU "Promo video") [![Promo video](/lessons/sketchnotes/ai-for-beginners.png)](https://youtu.be/m2KrAk0cC1c "Promo video")
> 🎥 Click the image above for a video about the project and the folks who created it! > 🎥 Click the image above for a video about the project and the folks who created it!

View File

@ -22,7 +22,7 @@
] ]
}, },
{ {
"questionText": "With object detection, we don't just get class of an object, but also it's ____", "questionText": "With object detection, we don't just get the class of an object, but also its ____",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "shape", "answerText": "shape",
@ -39,7 +39,7 @@
] ]
}, },
{ {
"questionText": "How many objects can an object detection model can detect?", "questionText": "How many objects can an object detection model detect?",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "one", "answerText": "one",
@ -62,7 +62,7 @@
"title": "Object Detection: Post Quiz", "title": "Object Detection: Post Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "Object detection model give us", "questionText": "An Object detection model gives us",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "object class", "answerText": "object class",

View File

@ -9,7 +9,7 @@
"title": "Segmentation: Pre Quiz", "title": "Segmentation: Pre Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "There are ____ segmentation algorithms?", "questionText": "How many segmentation algorithm are there?",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "1", "answerText": "1",
@ -66,7 +66,7 @@
"title": "Segmentation: Post Quiz", "title": "Segmentation: Post Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "____ extracts features from input image", "questionText": "____ extracts features from an input image",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "decoder", "answerText": "decoder",

View File

@ -9,7 +9,7 @@
"title": "Embeddings: Pre Quiz", "title": "Embeddings: Pre Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "Embedding is to represent words with _____ dimensional dense vectors", "questionText": "Embedding is used to represent words with _____ dimensional dense vectors",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "lower", "answerText": "lower",

View File

@ -83,7 +83,7 @@
] ]
}, },
{ {
"questionText": "When we train CBoW model, we obtain", "questionText": "When we train a CBoW model, we obtain",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "A model that can generate text", "answerText": "A model that can generate text",
@ -100,7 +100,7 @@
] ]
}, },
{ {
"questionText": "CBoW model is based on", "questionText": "The CBoW model is based on",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "Dense neural network", "answerText": "Dense neural network",

View File

@ -9,7 +9,7 @@
"title": "Language Models: Pre Quiz", "title": "Language Models: Pre Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "What is GPT stands for?", "questionText": "What does GPT stand for?",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "Generic Pre-Trained network", "answerText": "Generic Pre-Trained network",
@ -96,7 +96,7 @@
] ]
}, },
{ {
"questionText": "Which metric can be used to estimate quality of a language model?", "questionText": "Which metric can be used to estimate the quality of a language model?",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "accuracy", "answerText": "accuracy",

View File

@ -262,17 +262,17 @@ Lesson 11B Object Detection: Pre Quiz
* Neural networks can only be used to classify images * Neural networks can only be used to classify images
- true - true
+ false + false
* With object detection, we don't just get class of an object, but also it's ____ * With object detection, we don't just get the class of an object, but also its ____
- shape - shape
+ location + location
- type - type
* How many objects can an object detection model can detect? * How many objects can an object detection model detect?
- one - one
- two - two
+ any number + any number
Lesson 11E Object Detection: Post Quiz Lesson 11E Object Detection: Post Quiz
* Object detection model give us * An Object detection model gives us
- object class - object class
- bounding box - bounding box
+ both class and bounding box + both class and bounding box
@ -286,7 +286,7 @@ Lesson 11E Object Detection: Post Quiz
+ IoU + IoU
Lesson 12B Segmentation: Pre Quiz Lesson 12B Segmentation: Pre Quiz
* There are ____ segmentation algorithms? * How many segmentation algorithm are there?
- 1 - 1
+ 2 + 2
- 3 - 3
@ -300,7 +300,7 @@ Lesson 12B Segmentation: Pre Quiz
- generator, discriminator - generator, discriminator
Lesson 12E Segmentation: Post Quiz Lesson 12E Segmentation: Post Quiz
* ____ extracts features from input image * ____ extracts features from an input image
- decoder - decoder
- generator - generator
+ encoder + encoder
@ -340,7 +340,7 @@ Lesson 13E Text Representation: Post Quiz
- false - false
Lesson 14B Embeddings: Pre Quiz Lesson 14B Embeddings: Pre Quiz
* Embedding is to represent words with _____ dimensional dense vectors * Embedding is used to represent words with _____ dimensional dense vectors
+ lower + lower
- higher - higher
- average - average
@ -383,11 +383,11 @@ Lesson 15E Language Modeling: Post Quiz
+ CBoW + CBoW
- Skip-gram - Skip-gram
- N-Gram - N-Gram
* When we train CBoW model, we obtain * When we train a CBoW model, we obtain
- A model that can generate text - A model that can generate text
+ Word2Vec embedding vectors + Word2Vec embedding vectors
- Text classification model - Text classification model
* CBoW model is based on * The CBoW model is based on
+ Dense neural network + Dense neural network
- Convolutional neural network - Convolutional neural network
- Recurrent neural network - Recurrent neural network
@ -500,7 +500,7 @@ Lesson 19E Named Entity Recognition: Post Quiz
+ many-to-many + many-to-many
Lesson 20B Language Models: Pre Quiz Lesson 20B Language Models: Pre Quiz
* What is GPT stands for? * What does GPT stand for?
- Generic Pre-Trained network - Generic Pre-Trained network
+ Generative Pre-trained Transformers + Generative Pre-trained Transformers
- Generic Positional Text - Generic Positional Text
@ -521,7 +521,7 @@ Lesson 20E Language Models: Post Quiz
- Zero-shot learning - Zero-shot learning
- Few-shot learning - Few-shot learning
+ Both + Both
* Which metric can be used to estimate quality of a language model? * Which metric can be used to estimate the quality of a language model?
- accuracy - accuracy
- recall - recall
+ perplexity + perplexity