Commit 9bc6d16
authored
Fix trailing newline in FastModel.from_pretrained cell across Gemma 4 Text notebooks (#231)
The FastModel.from_pretrained code cell in all four Gemma 4 Text
notebooks ended with a trailing newline after the closing paren:
)\n
This causes Jupyter/Colab to render a dangling blank line below the
closing paren. Every other FastModel.from_pretrained cell in the repo
(48 of 52) already ends with just ')' and no trailing newline. This
brings the four Gemma 4 Text notebooks into line with the rest.
Affected notebooks:
nb/Gemma4_(26B_A4B)-Text.ipynb
nb/Gemma4_(31B)-Text.ipynb
nb/Gemma4_(E2B)-Text.ipynb
nb/Gemma4_(E4B)-Text.ipynb
Pure whitespace fix: 4 files, 4 lines changed total, no logic or
indentation touched.1 parent 71c09c9 commit 9bc6d16
3 files changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
382 | 382 | | |
383 | 383 | | |
384 | 384 | | |
385 | | - | |
| 385 | + | |
386 | 386 | | |
387 | 387 | | |
388 | 388 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
382 | 382 | | |
383 | 383 | | |
384 | 384 | | |
385 | | - | |
| 385 | + | |
386 | 386 | | |
387 | 387 | | |
388 | 388 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
332 | 332 | | |
333 | 333 | | |
334 | 334 | | |
335 | | - | |
| 335 | + | |
336 | 336 | | |
337 | 337 | | |
338 | 338 | | |
| |||
0 commit comments