Skip to content

Commit

Permalink
classification 2 quizzes
Browse files Browse the repository at this point in the history
  • Loading branch information
ornelladotcom committed Jun 15, 2021
1 parent 2586365 commit 9f2b400
Showing 1 changed file with 32 additions and 28 deletions.
60 changes: 32 additions & 28 deletions quiz-app/src/assets/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1027,48 +1027,48 @@
"title": "Classification 2: Pre-Lecture Quiz",
"quiz": [
{
"questionText": "q1",
"questionText": "Balanced, clean data yields the best classification results",
"answerOptions": [
{
"answerText": "a",
"isCorrect": "false"
},
{
"answerText": "b",
"answerText": "true",
"isCorrect": "true"
},
{
"answerText": "c",
"answerText": "false",
"isCorrect": "false"
}
]
},
{
"questionText": "q2",
"questionText": "How do you choose the right classifier?",
"answerOptions": [
{
"answerText": "a",
"isCorrect": "true"
"answerText": "Understand which classifiers work best for which scenarios",
"isCorrect": "false"
},
{
"answerText": "b",
"answerText": "Educated guess and check",
"isCorrect": "false"
},
{
"answerText": "Both of the above",
"isCorrect": "true"
}
]
},
{
"questionText": "q3",
"questionText": "Classification is a type of",
"answerOptions": [
{
"answerText": "a",
"answerText": "NLP",
"isCorrect": "false"
},
{
"answerText": "b",
"answerText": "Supervised Learning",
"isCorrect": "true"
},
{
"answerText": "c",
"answerText": "Programming language",
"isCorrect": "false"
}
]
Expand All @@ -1080,48 +1080,52 @@
"title": "Classification 2: Post-Lecture Quiz",
"quiz": [
{
"questionText": "q1",
"questionText": "What is a 'solver'?",
"answerOptions": [
{
"answerText": "a",
"answerText": "the person who double-checks your work",
"isCorrect": "false"
},
{
"answerText": "b",
"answerText": "the algorithm to use in the optimization problem",
"isCorrect": "true"
},
{
"answerText": "c",
"answerText": "a machine learning technique",
"isCorrect": "false"
}
]
},
{
"questionText": "q2",
"questionText": "Which classifier did we use in this lesson?",
"answerOptions": [
{
"answerText": "a",
"answerText": "Logistic Regression",
"isCorrect": "true"
},
{
"answerText": "b",
"answerText": "Decision Trees",
"isCorrect": "false"
},
{
"answerText": "One-vs-All Multiclass",
"isCorrect": "false"
}
]
},
{
"questionText": "q3",
"questionText": "How do you know if the classification algorithm is working as expected?",
"answerOptions": [
{
"answerText": "a",
"isCorrect": "false"
"answerText": "By checking the accuracy of its predictions",
"isCorrect": "true"
},
{
"answerText": "b",
"isCorrect": "true"
"answerText": "By checking it against other algorithms",
"isCorrect": "false"
},
{
"answerText": "c",
"answerText": "By looking at historical data for how good this algorithm is at solving similar problems",
"isCorrect": "false"
}
]
Expand Down

0 comments on commit 9f2b400

Please sign in to comment.