PythonHub
2.44K subscribers
2.35K photos
49.3K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Man and machine: GPT for second brains

In this post, I discuss how I used GPT embeddings to build a smart search tool for my second brain note-taking system.

https://reasonabledeviations.com/2023/02/05/gpt-for-second-brain/
Understanding and Coding the Self-Attention Mechanism of Large Language Models From Scratch

In this article, we are going to understand how self-attention works from scratch. This means we will code it ourselves one step at a time.

https://sebastianraschka.com/blog/2023/self-attention-from-scratch.html
The state of Python in blockchain - 2023 report

This report provides an overview of the current state of Python programming language technologies in blockchain software development ecosystems for 2023. We examine blockchain projects and tooling that use Python or are related to Python and why this overlap is significant. We highlight new and exciting projects and opportunities for Python developers.

https://tradingstrategy.ai/blog/the-state-of-python-in-blockchain-in-2023
GPT in 60 Lines of NumPy

In this post, we'll implement a GPT from scratch in just 60 lines of numpy. We'll then load the trained GPT-2 model weights released by OpenAI into our implementation and generate some text.

https://jaykmody.com/blog/gpt-from-scratch/
Python’s multiprocessing performance problem

While multiprocessing allows Python to scale to multiple CPUs, it has some performance overhead compared to threading.

https://pythonspeed.com/articles/faster-multiprocessing-pickle/