mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-22 14:03:46 -05:00
[PR #1590] [MERGED] fix(staffml): correct wrong answer index in cloud-0024 #10181
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/harvard-edge/cs249r_book/pull/1590
Author: @Shashank-Tripathi-07
Created: 4/27/2026
Status: ✅ Merged
Merged: 4/27/2026
Merged by: @profvjreddi
Base:
dev← Head:fix/staffml-cloud-0024-correct-index📝 Commits (1)
e7ced89fix(staffml): correct wrong answer index in cloud-0024 FP16 memory footprint question📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
interviews/vault/questions/cloud/cloud-0024.yaml(+1 -1)📄 Description
Problem
cloud-0024asks for the FP16 memory footprint of a 7B parameter model.The correct calculation: 7B params x 2 bytes (FP16) = 14 GB
Option at
correct_index: 2states "12 GB" and "7x more memory." But 7x more than the 1B model (2 GB) is 14 GB, not 12 GB. The option contradicts its own reasoning.Option at index 3 correctly states 14 GB.
Fix
Changed
correct_indexfrom2to3. No other changes.Test plan
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.