forked from microsoft/AI-For-Beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a75ac8b
commit 9b66995
Showing
11 changed files
with
475 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
[ | ||
{ | ||
"title": "AI for Beginners: Quizzes", | ||
"complete": "Congratulations, you completed the quiz!", | ||
"error": "Sorry, try again", | ||
"quizzes": [ | ||
{ | ||
"id": 116, | ||
"title": "RNN: Pre Quiz", | ||
"quiz": [ | ||
{ | ||
"questionText": "RNN is short for?", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "regression neural network", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "recurrent neural network", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "re-iterative neural network", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "Simple RNN cell has two weight _____", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "matrices", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "cell", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "neuron", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "vanishing gradients is a problem of _____", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "RNN", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "CNN", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "KNN", | ||
"isCorrect": false | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 216, | ||
"title": "RNN: Post Quiz", | ||
"quiz": [ | ||
{ | ||
"questionText": "_____ takes some information from the input and hidden vector, and inserts it into state", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "forget gate", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "output gate", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "input gate", | ||
"isCorrect": true | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "Bidirectional RNNs runs recurrent computation in _____", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "both directions", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "nort-west direction", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "left-right direction", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "All RNN Cells have the same shareable weights", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "True", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "False", | ||
"isCorrect": false | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
[ | ||
{ | ||
"title": "AI for Beginners: Quizzes", | ||
"complete": "Congratulations, you completed the quiz!", | ||
"error": "Sorry, try again", | ||
"quizzes": [ | ||
{ | ||
"id": 117, | ||
"title": "Generative networks: Pre Quiz", | ||
"quiz": [ | ||
{ | ||
"questionText": "RNNs can be for generative tasks", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "yes", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "no", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "_____ is a traditional neural network with one input and one output", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "one-to-one", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "sequence-to-sequence", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "one-to-many", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "RNN generate texts by generating next output character for each input character", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "true", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "false", | ||
"isCorrect": false | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 217, | ||
"title": "Generative networks: Post Quiz", | ||
"quiz": [ | ||
{ | ||
"questionText": "Output encoder converts hidden state into _____ output", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "one-hot-encoded", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "sequence", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "number", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "Selecting the character with higher probabilities always gives a meaningful text.", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "true", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "false", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "maybe", | ||
"isCorrect": false | ||
} | ||
] | ||
}, | ||
{ | ||
"questionText": "Many-to-many can also be referred to as _____", | ||
"answerOptions": [ | ||
{ | ||
"answerText": "one-to-one", | ||
"isCorrect": false | ||
}, | ||
{ | ||
"answerText": "sequence-to-sequence", | ||
"isCorrect": true | ||
}, | ||
{ | ||
"answerText": "one-to-many", | ||
"isCorrect": false | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.