From d6d9d54f6a02b468e2ab710420a9a0392c836d9f Mon Sep 17 00:00:00 2001 From: Hyperagon Date: Thu, 29 Feb 2024 19:50:06 +0000 Subject: [PATCH] Update posts- --- content/posts/2024-02-28.md | 4 ++-- content/posts/2024-02-29a.md | 17 ----------------- content/posts/2024-02-29b.md | 11 ----------- 3 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 content/posts/2024-02-29a.md delete mode 100644 content/posts/2024-02-29b.md diff --git a/content/posts/2024-02-28.md b/content/posts/2024-02-28.md index ade9d1dc..7a9601b1 100644 --- a/content/posts/2024-02-28.md +++ b/content/posts/2024-02-28.md @@ -23,7 +23,6 @@ draft = false - [Illustrated Transformer](https://jalammar.github.io/illustrated-transformer/) - [Youtube - How a Transformer works at inference vs training time](https://www.youtube.com/watch?v=IGu7ivuy1Ag) - [Youtube - Transformers demystified](https://www.youtube.com/watch?v=C6ZszXYPDDw) -- [Language Models For Software Developers in 17 Minutes](https://www.youtube.com/watch?v=tL1zltXuHO8) ### Python - [Python for Everyone](https://www.py4e.com/) @@ -33,9 +32,10 @@ draft = false - [Youtube - PyTorch in 100 Seconds](https://www.youtube.com/watch?v=ORMx45xqWkA) - [PyTorch Tutorials](https://pytorch.org/tutorials/) - [Youtube - PyTorch for Deep Learning & Machine Learning – Full Course ](https://www.youtube.com/watch?v=x7X9w_GIm1s) +- [Language Models For Software Developers in 17 Minutes](https://www.youtube.com/watch?v=tL1zltXuHO8) ### TensorFlow -- [TensorFlow in 100 Seconds](https://www.youtube.com/watch?v=i8NETqtGHms) +- [Youtube - TensorFlow in 100 Seconds](https://www.youtube.com/watch?v=i8NETqtGHms) ### List - [Generative AI - Learning](https://github.com/Yash-Kavaiya/GenAI-Learning) diff --git a/content/posts/2024-02-29a.md b/content/posts/2024-02-29a.md deleted file mode 100644 index b552e51b..00000000 --- a/content/posts/2024-02-29a.md +++ /dev/null @@ -1,17 +0,0 @@ -+++ -title = 'Jupyter Notebook' -summary = 'What I had to do to set Jupyter Notebook up.' -date = 2024-02-29T11:30:03+00:00 -draft = false -+++ -To setup [Jupyter Notebook](https://jupyter.org/) (what is used in the guide) I did: -- python -m venv env -- source env/bin/activate -- pip install jupyterlab -- pip install notebook -- sudo apt install jupyter-core -- pip install --upgrade ipykernel - -Now I run it by using `jupyter labs`, open a file and `shift+enter` to run the selected code segment (mind the requirements). -You can also open `.ipynb` files from the [PyTorch Tutorial](https://pytorch.org/tutorials/) (Download Notebook) which will work on *cpu* devives. -While optional copy-paste is hard when there are several coder-sections disperszed amongst a body of text. diff --git a/content/posts/2024-02-29b.md b/content/posts/2024-02-29b.md deleted file mode 100644 index 0f81b71a..00000000 --- a/content/posts/2024-02-29b.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = 'Changing Themes' -summary = 'Mild dependency hell.' -date = 2024-02-29T17:30:03+00:00 -draft = false -+++ -Turns out that changing **themes** in [Hugo](https://gohugo.io) became quite a nightmarem, I will ~~just stick to regular *git clone* now~~ use submodule as it is forced. It resulted in me just doing it all-over, no more dependency hickups to worry about. - -Also, it turns out that the [PaperMod](https://github.com/adityatelange/hugo-PaperMod/) theme hides posts if they have a `type='post'`, an odd little detail that changed between themes but I'm just a novice. - -This theme also prefers dates in the `date = 2024-02-24T09:31:08+00:00` format, quite a head scratcher, maybe I was only using the wrong configuration.