Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
95fccbb
WIP: bigram model
edoardob90 May 6, 2025
e44af2e
WIP: More stuff
edoardob90 May 6, 2025
69cb49a
Add per-file ignore rule for Ruff
edoardob90 May 7, 2025
d5bff12
Update
edoardob90 May 7, 2025
68c4a77
Merge branch 'main' into new-material/pytorch-llm-tutorial
edoardob90 May 7, 2025
322d699
Ignore some folders
edoardob90 May 7, 2025
98a1ffb
Finalized main content of part 1
edoardob90 May 7, 2025
90c484f
Revert file
edoardob90 May 7, 2025
5177d1c
Merge branch 'main' into new-material/pytorch-llm-tutorial
edoardob90 May 7, 2025
dc53320
Merge branch 'main' into new-material/pytorch-llm-tutorial
edoardob90 May 9, 2025
aeb0157
[skip ci] Rename notebook
edoardob90 May 9, 2025
30207f1
[skip ci] Added a few exercises
edoardob90 May 10, 2025
5fb68a2
Rename notebooks
edoardob90 May 12, 2025
a41f399
Merge branch 'main' into new-material/pytorch-llm-tutorial
edoardob90 May 12, 2025
1ee4971
Add TOC
edoardob90 May 12, 2025
9dad59f
Rename data
edoardob90 May 12, 2025
f36ddee
[skip ci] Rename Pandas data as well
edoardob90 May 12, 2025
47826a5
[skip ci] fix typos
despadam May 12, 2025
2d0a3de
[skip ci] Remove placeholder comments
edoardob90 May 12, 2025
ba82505
add section title
despadam May 12, 2025
8b2790f
[skip ci] Update index
edoardob90 May 12, 2025
55b57a3
Merge branch 'new-material/pytorch-llm-tutorial' of github.com:empa-s…
edoardob90 May 12, 2025
7788f45
Update title
edoardob90 May 12, 2025
c05c24a
[skip ci] Update references
edoardob90 May 12, 2025
7f5bd3c
[skip ci] Update notebook; add proposed solutions to exercises
edoardob90 May 12, 2025
862ba4f
[skip ci] Move solutions to "extra" folder
edoardob90 May 12, 2025
f78ada6
[skip ci] fix last typo
despadam May 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,6 @@ dmypy.json
*.html
.idea/
drafts/
.virtual_documents
.zed
.virtual_documents/
.zed/
.ruff_cache/
3 changes: 2 additions & 1 deletion 00_index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"# Hands-On Projects\n",
"\n",
"- [Image Classification](./31_image_classification.ipynb)\n",
"- [Language Modeling (part 1)](./32_language_modeling_1.ipynb)\n",
"\n",
"# Additional Topics\n",
"\n",
Expand All @@ -58,7 +59,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.10"
"version": "3.12.10"
}
},
"nbformat": 4,
Expand Down
5 changes: 4 additions & 1 deletion 24_library_pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4930,6 +4930,9 @@
}
],
"metadata": {
"jupytext": {
"formats": "ipynb,auto:percent"
},
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
Expand All @@ -4945,7 +4948,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.0"
"version": "3.12.10"
}
},
"nbformat": 4,
Expand Down
Loading