Week 3 Day 1
Week 3 Day 1
Week 3 Week 8
Week 3 - Open Source The Finale - mastering
with HuggingFace Week 4 LLM Engineering
LLM ENGINEER
Selecting LLMs and
Code Generation
Week 2
Frontier Models with UIs,
Agentization and Multi-
Week 7
Week 1 modality
Week 6 Fine-tuning an Open-
What a time to be Source Model
working with LLMs Fine-tuning a Frontier
Week 5 Model
Google Colab
Runtimes
1 CPU based
pipe = FluxPipeline.from_pretrained("black-forest-
labs/FLUX.1-schnell",
torch_dtype=torch.bfloat16).to("cuda")
generator = torch.Generator(device="cuda").manual_seed(0)
prompt = "A futuristic class full of students learning AI
coding in the surreal style of Salvador Dali"
image = pipe(
prompt,
guidance_scale=0.0,
num_inference_steps=4,
max_sequence_length=256,
generator=generator
).images[0]
image.save("surreal.png")
PROGRESS