
MissIndia
1.9K posts

MissIndia
@999Topshot
🦋💙New to the NFT space and looking forward to learn and grow with the community. 💙🦋 👩🏽💻✨🌟💫⭐️💯🙌🏽💎 Memeland | Mfer | Noonesees
United States Katılım Eylül 2021
2.2K Takip Edilen575 Takipçiler
Sabitlenmiş Tweet

Join BigCoin using my referral code $BIG
bigcoin.tech/?ref=0x78966C1…
English

People are never what they seem, and it’s starting to bother me because I’m relatively the same at all times, and I don’t have much to hide.
I’ll tell you the things I’ve done, the issues I’ve had, and the problems I’ve overcome. I have no problem telling you what I’ve done or who I am.
But the problem is, I meet people and they lie right to my face. Then I’m like, “You just lied to me” And then they gaslight me. So then I’m like, “Well, you just lied and gaslighted me”
I don’t like that because I don’t lie. I really don’t. Ask me a question and I’ll tell you the truth
I don’t understand human beings. It makes me not want to be friends with anybody ever again. It makes me not want to try, because at this point, I’m just going to assume everyone is insane
My life is peaceful. Why would I invite you into my life if you’re just going to lie to me?
There’s a reason I like being by myself.
English
MissIndia retweetledi


@MatthewBerman Roughly how much are you spending on API calls/tokens? Has it surprised you or did you budget it already ?
English

I'm one of the most advanced users of OpenClaw.
OpenClaw + GPT5.3 Codex + Opus 4.6 has been the trifecta that changed everything.
I made a video going over everything I'm doing with these tools.
Learn these tools, stay ahead.
Watch this video right now.
0:00 Intro
1:02 Overview
4:17 Sponsor
5:12 Personal CRM
7:11 Knowledge Base
8:30 Video Idea Pipeline
11:09 Twitter/X Search
12:47 Analytics Tracker
13:33 Data Review
15:34 HubSpot
16:13 Humanizer
16:52 Image/Video Generation
18:22 To-Do List
19:37 Usage Tracker (Saves Money)
20:45 Services
21:25 Automations
22:42 Backup
23:30 Memory
24:06 Building OpenClaw
25:22 Updating Files
English
MissIndia retweetledi
MissIndia retweetledi

As a fun Saturday vibe code project and following up on this tweet earlier, I hacked up an **llm-council** web app. It looks exactly like ChatGPT except each user query is 1) dispatched to multiple models on your council using OpenRouter, e.g. currently:
"openai/gpt-5.1",
"google/gemini-3-pro-preview",
"anthropic/claude-sonnet-4.5",
"x-ai/grok-4",
Then 2) all models get to see each other's (anonymized) responses and they review and rank them, and then 3) a "Chairman LLM" gets all of that as context and produces the final response.
It's interesting to see the results from multiple models side by side on the same query, and even more amusingly, to read through their evaluation and ranking of each other's responses.
Quite often, the models are surprisingly willing to select another LLM's response as superior to their own, making this an interesting model evaluation strategy more generally. For example, reading book chapters together with my LLM Council today, the models consistently praise GPT 5.1 as the best and most insightful model, and consistently select Claude as the worst model, with the other models floating in between. But I'm not 100% convinced this aligns with my own qualitative assessment. For example, qualitatively I find GPT 5.1 a little too wordy and sprawled and Gemini 3 a bit more condensed and processed. Claude is too terse in this domain.
That said, there's probably a whole design space of the data flow of your LLM council. The construction of LLM ensembles seems under-explored.
I pushed the vibe coded app to
github.com/karpathy/llm-c…
if others would like to play. ty nano banana pro for fun header image for the repo

Andrej Karpathy@karpathy
I’m starting to get into a habit of reading everything (blogs, articles, book chapters,…) with LLMs. Usually pass 1 is manual, then pass 2 “explain/summarize”, pass 3 Q&A. I usually end up with a better/deeper understanding than if I moved on. Growing to among top use cases. On the flip side, if you’re a writer trying to explain/communicate something, we may increasingly see less of a mindset of “I’m writing this for another human” and more “I’m writing this for an LLM”. Because once an LLM “gets it”, it can then target, personalize and serve the idea to its user.
English

MissIndia retweetledi

> be you
> want to actually learn how LLMs work
> sick of “just start with linear algebra and come back in 5 years”
> decide to build my own roadmap
> no fluff. no detours. no 200-hour generic ML playlists
> just the stuff that actually gets you from “what’s a token?” to “I trained a mini-GPT with LoRA adapters and FlashAttention”
> goal: build, fine-tune, and ship LLMs
> not vibe with them. not "learn the theory" forever
> build them
> you will:
> > build an autograd engine from scratch
> > write a mini-GPT from scratch
> > implement LoRA and fine-tune a model on real data
> > hate CUDA at least once
> > cry
> > keep going
> 5 phases
> if you already know something? skip
> if you're lost? rewatch
> if you’re stuck? use DeepResearch
> this is a roadmap, not a leash
> by the end: you either built the thing or you didn’t
> phase 0: foundations
> > if matrix multiplication is scary, you’re not ready yet
> > watch 3Blue1Brown’s linear algebra series
> > MIT 18.06 with Strang, yes, he’s still the GOAT
> > code Micrograd from scratch (Karpathy)
> > train a mini-MLP on MNIST
> > no frameworks, no shortcuts, no mercy
> phase 1: transformers
> > the name is scary
> > it’s just stacked matrix multiplies and attention blocks
> > Jay Alammar + 3Blue1Brown for the “aha”
> > Stanford CS224N for the theory
> > read "Attention Is All You Need" only AFTER building mental models
> > Karpathy's "Let's Build GPT" will break your brain in a good way
> > project: build a decoder-only GPT from scratch
> > bonus: swap tokenizers, try BPE/SentencePiece
> phase 2: scaling
> > LLMs got good by scaling, not magic
> > Kaplan paper -> Chinchilla paper
> > learn Data, Tensor, Pipeline parallelism
> > spin up multi-GPU jobs using HuggingFace Accelerate
> > run into VRAM issues
> > fix them
> > welcome to real training hell
> phase 3: alignment & fine-tuning
> > RLHF: OpenAI blog -> Ouyang paper
> > SFT -> reward model -> PPO (don’t get lost here)
> > Anthropic's Constitutional AI = smart constraints
> > LoRA/QLoRA: read, implement, inject into HuggingFace models
> > fine-tune on real data
> > project: fine-tune gpt2 or distilbert with your own adapters
> > not toy examples. real use cases or bust
> phase 4: production
> this is the part people skip to, but you earned it
> inference optimization: FlashAttention, quantization, sub-second latency
> read the paper, test with quantized models
> resources:
> math/coding:
> > 3Blue1Brown, MIT 18.06, Goodfellow’s book
> PyTorch:
> > Karpathy, Zero to Mastery
> > transformers:
> > Alammar, Karpathy, CS224N, Vaswani et al
> > scaling:
> > Kaplan, Chinchilla, HuggingFace Accelerate
> > alignment:
> > OpenAI, Anthropic, LoRA, QLoRA
> > inference:
> > FlashAttention
> the endgame:
> > understand how these models actually work
> > see through hype
> > ignore LinkedIn noise
> > build tooling
> > train real stuff
> > ship your own stack
> > look at a paper and think “yeah I get it”
> > build your own AI assistant, infra, whatever
> make it all the way through?
> ship something real?
> DM me.
> I wanna see what you built.
> happy hacking.
English














