A quick reference for how to clone only a specific directory from a Git repository. Introduction How to Clone Only a Specific Directory with Git Commands Example Conclusion References Introduction I needed to clone only a specific director…
A quick note on how to change the default terminal in VSCode to Git Bash. Introduction How to Set Git Bash as the Default Terminal in VSCode 1. Open Settings 2. Type "terminal.integrated.defaultProfile.windows" in the search bar 3. Select …
A quick note on how to return to your original cursor position after jumping to a code definition with F12 (Go to Definition) in VSCode. Introduction Shortcut to Go Back in VSCode Conclusion References Introduction F12 (Go to Definition) i…
Here's a guide on how to fix the issue where VSCode's F12 (Go to Definition) stops working when using Python's venv. Introduction How to Fix F12 (Go to Definition) Not Working with venv in VSCode Cause Solution Conclusion Introduction VSCo…
These are my reading notes on the NVIDIA Cosmos Policy paper, "Cosmos Policy: Fine-Tuning Video Models for Visuomotor Control and Planning." Introduction Cosmos Policy: Fine-Tuning Video Models for Visuomotor Control and Planning Backgroun…
A quick note on how to obtain the SQL Server 2022 Developer installer. Introduction Getting SQL Server 2022 Developer Installer Download URL Is This URL Trustworthy? Conclusion References Introduction The installer for SQL Server 2022 Deve…
aka.ms is a URL shortener officially operated by Microsoft. Introduction What is aka.ms? Is aka.ms really issued by Microsoft? The domain is owned by Microsoft Only Microsoft can create shortened URLs Conclusion References Introduction If …
These are my notes from trying out ACE-Step 1.5 locally. Introduction Running the Music Generation AI "ACE-Step 1.5" Locally Installing ACE-Step 1.5 Running ACE-Step 1.5 with the Gradio Web UI Troubleshoot - RuntimeError: MPS backend out o…
This is a summary of the paper "Collective intelligence for deep learning: A survey of recent developments," which explores the relationship between deep learning and collective intelligence. Introduction Collective intelligence for deep l…
This is a summary of the GPT-2 paper "Language Models are Unsupervised Multitask Learners." Introduction Language Models are Unsupervised Multitask Learners Overview Method Creating the WebText Training Dataset BPE: Byte Pair Encoding Mode…
This is a quick reference note on the differences between torch.tensor() and torch.Tensor(). Introduction Differences Between torch.tensor and torch.Tensor In Short In Detail Note: Creating Empty Tensors Conclusion References Introduction …
I created my own game using Python. This article documents everything from the preparation involved in game development to the implementation challenges I encountered, and the final game design. Introduction Wanting to Create Something Why…
This article explains how to compare user-defined class objects for equality in Python. Introduction Comparing User-Defined Class Objects for Equality in Python Comparing Instance Variables in the __eq__ Method Comparing __dict__ in the __…
This article explains how to check memory and disk space on your execution environment using Python. Introduction Getting Disk and Memory Capacity Disk Space Memory Capacity Conclusion References Introduction I recently needed to check mem…
I'll verify what happens when calling the OpenAI API from Python with both stream and timeout settings enabled. Introduction Behavior When Combining GPT Stream and Timeout Hypothesis Testing Method Test Results Summary Conclusion Reference…
This article explains how to implement GPT streaming responses using the OpenAI API in Python. Introduction Implementing GPT Stream Responses with OpenAI API Conclusion References Introduction When you call GPT using the OpenAI API, the de…
This is a guide on how to set timeouts when calling the OpenAI API using the OpenAI Python Library. Introduction Setting Timeout in the OpenAI Python Library How to: Using the request_timeout Parameter A Pitfall: The timeout Parameter Conc…
This is a summary of the review paper "Organoid intelligence (OI): the new frontier in biocomputing and intelligence-in-a-dish," which covers developments in Organoid Intelligence (OI). Introduction Organoid intelligence (OI): the new fron…
This is a summary of the first GPT paper, "Improving Language Understanding by Generative Pre-Training." Introduction Improving Language Understanding by Generative Pre-Training Overview Method Results Natural Language Inference Tasks Ques…
This is a summary of the seminal paper "Attention Is All You Need," which introduced the Transformer architecture. Introduction Attention Is All You Need Overview Method Model Architecture Training Method Results Translation Tasks Transfor…
This is a summary of the paper "Evolutionary Optimization of Model Merging Recipes," which describes Sakana.ai's evolutionary model merging approach. Introduction Evolutionary Optimization of Model Merging Recipes Overview Method Results L…
This article explores the differences and similarities between Active Inference from the Free Energy Principle and LLMs (Large Language Models), based on the paper "Predictive Minds: LLMs As Atypical Active Inference Agents." Introduction …
I'll share techniques for reading research papers from Andrew Ng's lecture video. Introduction How to Read Research Papers According to Andrew Ng Reading Papers Checking Your Understanding Conclusion References Introduction Recently, as I'…
This is a summary of the paper "The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits". Introduction The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits Overview Method Results Conclusion/Thoughts References Intro…
This is a quick reference guide for adding tags in AWS CDK. Introduction Environment Adding Tags in CDK Examples Adding Tags at the Stack Level Adding Tags at the Construct Level Note: Deprecated Tag Assignment Method Conclusion References…
This article describes how to nest Stacks when deploying with AWS CDK. Introduction Environment Nesting Stacks in CDK Problem: Stacks Cannot Be Simply Nested Solution: Use NestedStack Conclusion References Introduction When I tried to nest…
This article summarizes the basic commands frequently used in AWS CDK. Introduction Environment CDK Commands Summary Check CDK Version Install CDK Create CDK Project Preparation Before Running CDK Commands List CDK Stacks Generate CloudFor…
This is a quick reference guide on how to delete all objects in a scene using Blender Python. Introduction Deleting All Existing Objects in Blender Python Conclusion References Introduction When working with Blender Python through trial an…
This guide explains how to dynamically configure backend settings for storing Terraform state files. Introduction How to Dynamically Configure the Terraform Backend Conclusion References Introduction I encountered a use case where I needed…
A quick reference for how to get the AWS region in Terraform. Introduction Getting AWS Region in Terraform How to do it Bonus: Reading the Terraform Source Code Conclusion References Introduction When working with AWS resources in Terrafor…