Skip to content

Instantly share code, notes, and snippets.

View chainhead's full-sized avatar
💭
Machine, learning ...

mrchainhead chainhead

💭
Machine, learning ...
  • Bengaluru, INDIA
  • 12:31 (UTC +05:30)
View GitHub Profile
@chainhead
chainhead / 0-install.md
Last active September 12, 2022 08:40
Strimzi installation on Ubuntu-22.04

Install NodeJs

curl -sL https://deb.nodesource.com/setup_16.x -o nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt-get install nodejs -y

Install Docker

@chainhead
chainhead / genai.md
Last active August 31, 2024 20:04
GenAI learnings from ChatGPT

Person:

  • What is Generative AI?

ChatGPT:

  • Generative AI refers to a subset of artificial intelligence (AI) techniques and models that are designed to generate new, original content or data that resembles human-created content. These models are capable of producing text, images, audio, and even other forms of data, often with a high degree of creativity and realism. Generative AI has made significant advancements in recent years, thanks in part to deep learning and neural network architectures.

One of the most prominent types of generative AI models is the Generative Adversarial Network (GAN), introduced by Ian Goodfellow and his colleagues in 2014. GANs consist of two neural networks, a generator and a discriminator, which work in opposition to each other. The generator tries to create content that is indistinguishable from real data, while the discriminator tries to differentiate between real and generated data. This adversarial process helps the generator improve its output over time.

Applications o

@chainhead
chainhead / llm.md
Last active July 10, 2025 10:42
LLM notes

Notebook

Theory

LLM

@chainhead
chainhead / install.md
Created September 15, 2024 09:57
Install instructions

Instructions

  1. Set pull token and login with docker using the following command
$env:CR_PAT = "your_token"
$env:CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
  1. In launch/conf/platform.env, uncomment and set KAFKA_TAG=7.7.0