added FAQs with TDS link for AI Eng (#7619)
parent
25db2fdfda
commit
a1371d552c
2 changed files with 25 additions and 1 deletions
@ -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.' |
||||
], |
||||
}, |
||||
]; |
||||
--- |
Loading…
Reference in new issue