メインコンテンツへスキップ

0.3 AI フルスタック能力マップ

AI フルスタック能力マップ

まず図を見ます。コースは1本の道です。

tools -> Python -> data -> models -> LLM -> RAG -> Agent -> specialization/delivery

今は細部を全部理解しなくて大丈夫です。

詰まっていること戻る場所
コードが動かないツールと Python
入力が乱れているデータ
答えが信頼できない評価と RAG
行動が制御できないAgent trace と権限

7つの層

対応章最初に見える証拠深い問い
Tools1再現可能な project folder と Git history他の人が再実行できるか
Python2入力と出力が明確な小さな scripts読みやすく、型があり、test できるか
Data3整った tables、charts、notesどこに誤りや bias があるか分かるか
Models4-6training または inspection した model experimentsどの metric が判断を変えるか
LLM7prompt、tokens、embeddings、Transformer の直感振る舞いは data、decoding、context のどこから来るか
RAG8retrieval trace と answer evaluation答えは正しい evidence を使ったか
Agent9tool traces、permissions、memory boundary、deployment notesusers、files、actions が本物になったらどこで失敗するか
Specialization / delivery10-12 と electivesvision/NLP/multimodal demos、exported assets、deployment notesdomain constraints が product decision をどう変えるか

この講座は topic の山ではなく、debugging stack です。AI application の挙動が悪いとき、原因は見ている機能より何層も下にあることがあります。

Main Line と Expansion Tracks

まず第1-9章を default main line として進めます。第9章まで終えると、小さな LLM/RAG/Agent project を、evidence、logs、safety boundary つきで作れる状態を目指します。

その後、第10-12章は product need に合わせて選びます。

NeedChooseWhy
images、cameras、OCR、detection、segmentationChapter 10 Computer Visionoutput が labels、boxes、masks、text、video events などの visual result になる
text labels、extraction、summaries、linguistic evaluationChapter 11 NLPoutput が labels、fields、spans、generated text などの text task になる
images、PDFs、audio、video、creative assets、multimodal RAGChapter 12 Multimodal/AIGCmodalities が混ざり、source、prompt、review、export records が必要になる
deployment、advanced Python、classic ML depthElectivesmain project に特定の engineering または algorithmic side skill が必要になる

マップの使い方

project を始める前に、最も危険な層を1つ印づけます。たとえば PDF 質問応答 app は、chat UI ではなく data cleaning と retrieval で先に失敗しがちです。automation Agent は、prompt wording ではなく tool permissions、state、evaluation で先に失敗しがちです。

各章では、その層が動くことを証明する artifact を1つ残します。screenshots も役に立ちますが、logs、README commands、小さな datasets、metric tables、failure notes のほうが、後で debug しやすい証拠になります。

任意の背景:これらの能力がどのように発展してきたかを知りたい場合は、AI 発展史 15 段階マップを軽く見てください。

次に学習ルートを選びます。