AI Systems Bootcamp in China | Generated by AI

Home 2026.07

Question: Is starting an AI bootcamp in China for high school / university students (model training, agents, etc.) a good idea?

Answer:

Yes — but only if you don’t position it as “AI education”. That market is already saturated with tutorial-style courses. The viable version is:

“AI systems bootcamp: build + deploy real agents and small-scale models in 2–4 weeks.”

You’re not teaching theory. You’re compressing real production workflows (like what you already do with GPU training + CLI agents) into hands-on shipping.


1. Where the real opportunity is

Most China bootcamps:

Gap you can exploit:

This is closer to:


2. What to teach (tight, production-first)

Week 1 — LLM + inference core

python chat.py --model Qwen2.5-7B
from transformers import AutoModelForCausalLM, AutoTokenizer

tok = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-7B")
model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B")

prompt = "Design a trading agent architecture"
inputs = tok(prompt, return_tensors="pt")
out = model.generate(**inputs, max_new_tokens=200)
print(tok.decode(out[0]))

Week 2 — Fine-tuning small models

accelerate launch train_lora.py \
  --model meta-llama/Llama-3-8B \
  --dataset data.jsonl

Key idea: students learn data quality > model choice


Week 3 — Agents (core differentiator)

Minimal agent loop:

while True:
    obs = env.observe()
    action = llm(f"Obs: {obs}\nWhat next action?")
    env.step(action)

Add:


Week 4 — Capstone system

Examples:

Must deploy:


3. Stack (keep it realistic)

Avoid:


4. Business reality in China

Strong signals

Weak points

Pricing structure


5. Your real moat

Given your background (training models, GPU infra, agent CLI tools), your edge is:

That’s rare. Most instructors are 2 layers removed from real infra.


6. Failure modes (important)

  1. Becoming tutorial factory

    • students copy notebooks → no retention
  2. Too much theory

    • kills perceived value fast
  3. No artifact output

    • must force GitHub repos every week
  4. Over-frameworking agents

    • LangChain-style abstraction early → confusion

7. MVP suggestion

Don’t start with a school.

Start with:

If retention + output quality is high → expand.


References:


Back Donate