From a1371d552cd3a3a7635afa9f6be31ee1fcc8b6a5 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 28 Oct 2024 12:21:40 +0000 Subject: [PATCH] added FAQs with TDS link for AI Eng (#7619) --- src/data/roadmaps/ai-engineer/ai-engineer.md | 2 +- src/data/roadmaps/ai-engineer/faqs.astro | 24 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/ai-engineer/ai-engineer.md b/src/data/roadmaps/ai-engineer/ai-engineer.md index 7197b1928..9bbbafb69 100644 --- a/src/data/roadmaps/ai-engineer/ai-engineer.md +++ b/src/data/roadmaps/ai-engineer/ai-engineer.md @@ -15,7 +15,7 @@ dimensions: question: title: 'What is an AI Engineer?' description: | - An AI Engineer uses pre-trained models and existing AI tools to improve user experiences. They focus on applying AI in practical ways, without building models from scratch. This is different from AI Researchers and ML Engineers, who focus more on creating new models or developing AI theory. + An AI Engineer uses pre-trained models and existing AI tools to improve user experiences. They focus on applying AI in practical ways, without building models from scratch. This is different from AI Researchers and ML Engineers, who focus more on creating new models or developing AI theory. The [advantages and disadvantages of AI](https://towardsdatascience.com/advantages-and-disadvantages-of-artificial-intelligence-182a5ef6588c) are key considerations that AI Engineers must understand to effectively implement solutions. schema: headline: 'AI Engineer Roadmap' description: 'Learn how to become an AI Engineer with this interactive step by step guide in 2023. We also have resources and short descriptions attached to the roadmap items so you can get everything you want to learn in one place.' diff --git a/src/data/roadmaps/ai-engineer/faqs.astro b/src/data/roadmaps/ai-engineer/faqs.astro index e69de29bb..f7ee7ddf6 100644 --- a/src/data/roadmaps/ai-engineer/faqs.astro +++ b/src/data/roadmaps/ai-engineer/faqs.astro @@ -0,0 +1,24 @@ +--- +import type { FAQType } from '../../../components/FAQs/FAQs.astro'; + +export const faqs: FAQType[] = [ + { + question: 'Is AI engineer a good career choice?', + answer: [ + 'Yes, becoming an AI engineer is a great career choice. AI is transforming nearly every industry, from healthcare and finance to transportation and entertainment. As companies increasingly adopt AI-driven solutions, the demand for skilled AI engineers continues to grow. This role offers opportunities to work on cutting-edge technologies like machine learning, natural language processing, and computer vision, making it a highly innovative field', + ], + }, + { + question: 'What is reinforcement learning?', + answer: [ + '[Reinforcement learning](https://towardsdatascience.com/reinforcement-learning-101-e24b50e1d292) (RL) is a type of machine learning where an agent learns to make decisions by interacting with an environment. Unlike traditional supervised learning, RL does not rely on labeled data. Instead, the agent learns by taking actions and receiving feedback in the form of rewards or penalties. Over time, it aims to maximize cumulative rewards by refining its strategy based on past experiences. RL is often used in areas like robotics, game AI, and autonomous systems, where the goal is to develop intelligent behaviors through trial and error.', + ], + }, + { + question: 'Do AI Engineers need a degree?', + answer: [ + 'While a degree in computer science, data science, or a related field can provide a solid foundation for becoming an AI engineer, it is not strictly necessary. Many successful AI engineers are self-taught or have gained expertise through online courses, certifications, and hands-on projects.' + ], + }, +]; +---