
VaultClip: Building Private Video Q&A Fully in the Browser
How I built an open-source, local-first app that lets you chat with videos without uploading them anywhere.
Search for a command to run...

How I built an open-source, local-first app that lets you chat with videos without uploading them anywhere.

Memory, skills, and the difference between personal context and repeatable workflows

Transformers have revolutionized natural language processing by using attention mechanisms to model long-range dependencies. In this post, we’ll journey from the origins of attention to building a mini GPT model (“GPTMini”) from scratch. We’ll start ...

To create a blockchain using Python, you will need to do the following: Import the necessary modules and libraries. This will typically include the hashlib library for generating hashes and the datetime library for managing timestamps. Copy codeimp...

Natural Language Processing (NLP) is a field of artificial intelligence that focuses on enabling computers to understand and process human language. NLP techniques are used in a wide range of applications, including language translation, text summari...

The word Blockchain is pretty popular among developers, and many are curious to know more about it. Most articles on the internet are scaring people with a lot of technical jargon. In this article, I aim to simplify it for existing web developers. Le...

Pytorch is a young Deep learning framework that has achieved tremendous popularity in both research and industry. In this blog post, I will explain how to train a simple feed-forward neural network in PyTorch, It would cover most of the important con...

Introduction Before understanding what is docker let's try to find the answer to the question "why Docker". Any software developed is for solving a particular problem statement. Let's consider a situation in which you developed an application and sen...

In this article, I will be discussing the different methods to make a network request starting from the old XMLHttp browser API to the modern libraries like Axios. Before getting into these let us understand what exactly is meant by a network request...