Artificial Intelligence
Artificial Intelligence
GGML vs GGUF LLM formats
July 29, 2024
GGML vs GGUF LLM formats
The efficiency and interoperability of LLM formats become increasingly important. Two such formats that have gained traction are GGML and…
What is Quantized LLMs?
July 25, 2024
What is Quantized LLMs?
In the realm of large language models (LLMs), efficiency and performance are paramount. Quantization is a technique that helps in…
Understanding LLM Fine-Tuning vs. Training: A Simple Guide
July 22, 2024
Understanding LLM Fine-Tuning vs. Training: A Simple Guide
Hey there! If you’re diving into the world of large language models (LLMs) and are wondering about the differences between…
LLM Inference Engines: The Secret Sauce Behind Those Mind-Blowing Language Models
July 3, 2024
LLM Inference Engines: The Secret Sauce Behind Those Mind-Blowing Language Models
Hey there, tech enthusiasts! Ever wondered how those mind-blowing language models, the ones that write poetry and answer your questions…
How to Derive the Memory Size Required to Deploy LLMs Based on the Model Parameter Size.
April 23, 2024
How to Derive the Memory Size Required to Deploy LLMs Based on the Model Parameter Size.
How much memory required to deploy LLM? Large Language Models (LLMs) are revolutionizing the world of AI, but their immense…
How To Run LLM In Python
April 8, 2024
How To Run LLM In Python
How to use open source LLM for inference in python. Download code here Download code here
Download and Save LLM from Hugging Face
March 20, 2024
Download and Save LLM from Hugging Face
How to download and save open osurce models from Hugging Face platform Download code here Prerequisites Python environment: Ensure you have…
How to Use OpenAI API in Python?
March 1, 2024
How to Use OpenAI API in Python?
How to use GPT3.5 or GPT4 in your application or software? Download Code Here 1. Install & Import Packages In [1]:…
What is Few Shot Prompting?
February 19, 2024
What is Few Shot Prompting?
Best practices to write few shot prompts. Few-shot prompting is revolutionizing the way we interact with artificial intelligence, enabling machines…
How to Use Google Gemini API?
February 16, 2024
How to Use Google Gemini API?
Download Code here 1. Install & Import Packages !pip install google-generativeai import google.generativeai as genai 2. Setup your API key…