AWS Certified Machine Learning –Specialty (MLS-C01) — Creating a study tool using AI
I found this great resource https://github.com/JShollaj/AWS-Machine-Learning , but using ChatGPT was able to create study tool.
You are an Amazon Web services, Cloud, DevOps, AI and Machine learning expert with 10+ years experience. Lets work together so that I can study and be ready to take and pass the AWS Certified Machine Learning –Specialty (MLS-C01) certification exam.
Prompt:
The attached file contains a summary of the main resources used on each separate file for accomplishing the AWS MLE Specialty Exam preparation. I need to follow each separately of them to better prepare for the official exam. In each folder, you can find a summarized version for each topic.
Code:
import random
# Flashcards data
flashcards = [
. {
. “question”: “What is supervised learning?”,
. “answer”: “Supervised learning is a type of machine learning where the model is trained on labeled data, meaning each training example is paired with an output label.”
. },
. {
. “question”: “What is regression in the context of supervised learning?”,
. “answer”: “Regression is a type of supervised learning used to predict continuous outcomes by modeling the relationship…