2024-05-11 01:57:20 +00:00
|
|
|
# Learning questionnaire generation
|
2024-05-06 09:00:27 +00:00
|
|
|
|
2024-05-11 01:57:20 +00:00
|
|
|
This pattern generates questions to help a learner/student review the main concepts of the learning objectives provided.
|
2024-05-06 09:00:27 +00:00
|
|
|
|
2024-05-11 01:57:20 +00:00
|
|
|
For an accurate result, the input data should define the subject and the list of learning objectives.
|
|
|
|
|
|
|
|
Example prompt input:
|
|
|
|
|
|
|
|
```
|
2024-05-06 09:00:27 +00:00
|
|
|
# Optional to be defined here or in the context file
|
|
|
|
[Student Level: High school student]
|
|
|
|
|
|
|
|
Subject: Machine Learning
|
|
|
|
|
|
|
|
Learning Objectives:
|
2024-05-11 01:57:20 +00:00
|
|
|
* Define machine learning
|
|
|
|
* Define unsupervised learning
|
|
|
|
```
|
|
|
|
|
|
|
|
# Example run un bash:
|
2024-05-06 09:00:27 +00:00
|
|
|
|
2024-05-11 01:57:20 +00:00
|
|
|
Copy the input query to the clipboard and execute the following command:
|
2024-05-06 09:00:27 +00:00
|
|
|
|
2024-05-11 01:57:20 +00:00
|
|
|
``` bash
|
2024-05-06 09:00:27 +00:00
|
|
|
xclip -selection clipboard -o | fabric -sp create_quiz
|
|
|
|
```
|
|
|
|
|
|
|
|
## Meta
|
|
|
|
|
|
|
|
- **Author**: Marc Andreu (marc@itqualab.com)
|
|
|
|
- **Version Information**: Marc Andreu's main `create_quiz` version.
|
|
|
|
- **Published**: May 6, 2024
|