FoolDev Claude Opus 4.7 commited on
Commit
b14787f
·
1 Parent(s): 17932e4

transformers_quickstart: fix bf16 VRAM number in usage docstring

Browse files

Body said ~54 GB, usage line said >= 48 GB. The math (27B params * 2
bytes) is 54 GB — sync the usage comment to match.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

examples/transformers_quickstart.py CHANGED
@@ -18,7 +18,7 @@ Memory:
18
 
19
  Usage:
20
  python transformers_quickstart.py
21
- python transformers_quickstart.py --no-4bit # bf16, needs >= 48 GB VRAM
22
  python transformers_quickstart.py --prompt "..." # custom prompt
23
  """
24
  from __future__ import annotations
 
18
 
19
  Usage:
20
  python transformers_quickstart.py
21
+ python transformers_quickstart.py --no-4bit # bf16, needs ~54 GB VRAM
22
  python transformers_quickstart.py --prompt "..." # custom prompt
23
  """
24
  from __future__ import annotations