microsoft/AI-For-Beginners

Public

mirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a031591b2f58ce281ec432541d2d9b527ef35601

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

etc/quiz-app/src/assets/translations/en/lesson-15.json

123lines · modecode

1[
2 {
3 "title": "AI for Beginners: Quizzes",
4 "complete": "Congratulations, you completed the quiz!",
5 "error": "Sorry, try again",
6 "quizzes": [
7 {
8 "id": 115,
9 "title": "Language Modeling: Pre Quiz",
10 "quiz": [
11 {
12 "questionText": "Which of the following can be considered a language model?",
13 "answerOptions": [
14 {
15 "answerText": "Word2Vec embeddings",
16 "isCorrect": true
17 },
18 {
19 "answerText": "Embedding layer in RNN",
20 "isCorrect": false
21 },
22 {
23 "answerText": "RNN used for text classification",
24 "isCorrect": false
25 }
26 ]
27 },
28 {
29 "questionText": "A language model should be able to ____ the next word in the sentence",
30 "answerOptions": [
31 {
32 "answerText": "use",
33 "isCorrect": false
34 },
35 {
36 "answerText": "predict",
37 "isCorrect": true
38 },
39 {
40 "answerText": "guess",
41 "isCorrect": false
42 }
43 ]
44 },
45 {
46 "questionText": "Language models are trained on",
47 "answerOptions": [
48 {
49 "answerText": "language vocabulary",
50 "isCorrect": false
51 },
52 {
53 "answerText": "specially labeled data",
54 "isCorrect": false
55 },
56 {
57 "answerText": "any natural text",
58 "isCorrect": true
59 }
60 ]
61 }
62 ]
63 },
64 {
65 "id": 215,
66 "title": "Language Modeling: Post Quiz",
67 "quiz": [
68 {
69 "questionText": "Which of the architectures predicts a word from neighboring words?",
70 "answerOptions": [
71 {
72 "answerText": "CBoW",
73 "isCorrect": true
74 },
75 {
76 "answerText": "Skip-gram",
77 "isCorrect": false
78 },
79 {
80 "answerText": "N-Gram",
81 "isCorrect": false
82 }
83 ]
84 },
85 {
86 "questionText": "When we train CBoW model, we obtain",
87 "answerOptions": [
88 {
89 "answerText": "A model that can generate text",
90 "isCorrect": false
91 },
92 {
93 "answerText": "Word2Vec embedding vectors",
94 "isCorrect": true
95 },
96 {
97 "answerText": "Text classification model",
98 "isCorrect": false
99 }
100 ]
101 },
102 {
103 "questionText": "CBoW model is based on",
104 "answerOptions": [
105 {
106 "answerText": "Dense neural network",
107 "isCorrect": true
108 },
109 {
110 "answerText": "Convolutional neural network",
111 "isCorrect": false
112 },
113 {
114 "answerText": "Recurrent neural network",
115 "isCorrect": false
116 }
117 ]
118 }
119 ]
120 }
121 ]
122 }
123]