AI/ML researcher, engineer, policy free speaker

pseudo riemannian manifold
Replying to @EastlondonDev
from the way I saw how Jev functions it takes an unstructured state, a question and then gives us a probabilistic output, then u get primitives such as true/false and bounded scoring. what I see may happen in this case is largely on task family conditioning, there might be a problem where it recognizes the task as a familiar category and it retrieves learned defaults during training, so when you get rather vague prompts, which usually users will give vague prompts from time to time the prior is likely going to the highest weighted occurence. so one of the weaknesses I might see is regarding on very ambiguous task framings, and priors being more conditioned on that. that is something I thought of quite fast when I saw this frame in the video
1
1
24
Since I think I don't post enough on X Here are top 5 things I built/did in 2026 1. Built an end-to-end probabilistic market-microstructure framework that converts raw order-book events into calibrated, risk-aware trading decisions using forward equations, jump and diffusion models, filtering, numerical solvers, and stochastic control, using python, cpp and R. 2. Co-built a full test suite for the IMC Prosperity 4 tournament and spearheaded the development of the Options Backtest Software Implementing full Time Series Analysis and signal filtering for alpha extraction, primarily using python and cpp. (May not be preserved properly since original repo is private and I tried to transfer what I could to another with permission) github.com/moseslua/IMC-P4-P… 3. Built an MLX Inference Runtime & Quantization Pipeline, Apple Silicon LLM inference runtime implementing owned step-wise decoding, KV cache management, scheduler invariants, benchmarking, and model quantization on MLX kernels. github.com/moseslua/MLXInfer… 4. Built a generative modeling framework currently covering autoencoders, variational autoencoders, diffusion training/sampling, checkpointed training, image-directory evaluation, and reporting. GANs, score matching, SDEs, flow matching, and broader conditioning are roadmap areas rather than completed implementations. github.com/moseslua/GenLabMo… 5. Worked with a Computational Neuroscience Tech Startup and made heavy contributions to their technical software for DSP Optimzation where I centralized FFT-based band-power computation across 3 hardware bridges, replacing duplicated code with shared BandPowerComputer and rolling window buffers. Achieved 15-45x performance improvement (7.8 µs vs 117.8 µs per frame) while maintaining < 6e-14 numerical error and adding CPU/GPU/Apple backend flexibility and architected ROS 2 pipeline with multiple EEG/EMG bridges, built browser dashboard for live monitoring, electrode mapping, rule-based control, and simulation; containerized with Docker and deployed to Raspberry Pi with 60+ tests. HM: tech consulting for government law enforcement higher ups and middle level debt financial firms operating under operational distress
4
710
Replying to @DavidePiffer

ALT I Have No Mouth And I Must Scream Ai GIF

1
1
116
Replying to @EastlondonDev
The staff is really friendly and they try to make it as easy as possible for new buyers so I'd say 幽兰拉铁 youlan latte would be good, will send a picture here
2
1
51
Replying to @Cobratate

ALT Ln Strike Gregzaj1 GIF

4
8,914

ALT Eat Bad Boy GIF by Abster

1
46
Replying to @iiKlemm @p0gromcaCS
PROS DONT FAKE 💣 @olofmeister

ALT Csgo Counterstrike GIF

6
333
"Hierachy is a symptom of a world run by human agents"

ALT Fire Burning GIF

Hierarchy is a symptom of a world run by human agents with a limited context window. At microagi we have a macro vector and many microvectors. From operations, HR, engineering and design: we have built custom software which integrates all these departments into 1 fully connected AI system which keeps the macro and microvectors aligned. This is how we keep hierarchy and bureaucracy to the bare bare minimum, and this is how we are the fastest moving company I have ever seen and experienced.
3
108
divine protection
sold all my positions, not because any of those stocks were bad but bcs I need more capital back to flip. macro trading has always been a bit too slow for my attention span so im pivoting to developing MFT trading strategies since I found out moomoo offered algo executions, good luck everyone! and if you listened to my $POET call you will have profited a lot!
1
69
Replying to @shryma

ALT Monkey Thinking Money GIF

78

ALT Son Folk GIF

bro the claude code skill caveman just added 文言文 (wenyan) mode we joked about using chinese for token savings and this madlad actually built the compression layer lmao 😂
1
186
still fails on more complex integrals take this for a run credits: @/Adrian_Burciaga i forgot the rest of the numbers on tiktok
I dunno... feels like DeepSeek v4 is already up. It's incredibly fast and smart at math and physics. Stuff below is a reasoning trace that it cranked out at many tokens per second. Final result is polished and correct.
3
195
i knew getting into canopy was cool but i did NOT know f.inc was was SUCH a big deal 👁️👁️ looks like we are ready to cook @fdotinc @adriannalakatos
4
45
2,658
im not the type to talk non-stop on day 1
1
209
Replying to @calajms
its @IMCTrading's trading comp LOL im memeing with my friends backtest mines actually pretty solid
1
1
57
Replying to @calajms
true quant
1
1
538
Through hardships and struggle. One day or day one. @fdotinc canopy cohort.
11
41
1,477
Replying to @blueyurx @Miaw

ALT Praying Cat GIF

65
looks like im on the game earlier than karpathy this time
LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.
169
One of the cooler statistical mechanics problems I did when I was doing MIT Problem sets (note I am not in MIT I get them from MIT OCW)
47
Anyone is calling themselves a quant nowadays yet don't know about what a Lebesgue Measure is

ALT Judy Hopps Scuba GIF

16
the best way to tell if someone is a scammer is to just air them for a few days and see if they rush u to reply or get impatient or emotional. someone whos an actual busy KOL wont have the time of the day to actually chase u for money, unless ure their cash cow. now enjoy screenshots of a bum trying to scam me by impersonating @OwariETH @sexybaby_98 you fucking idiot
1
64
As of right now, the one of the biggest issues in crypto is the stablecoin and market-structure fight. It's basically whether or not crypto becomes a parallel banking/payments layer, and under what rules. In the U.S., the main crypto market-structure bill has stalled again because banks are resisting provisions that would let stablecoin-related products offer rewards or yield, while crypto firms argue they need that flexibility and broader legal clarity to grow. Reuters also reported Standard Chartered estimating stablecoins could pull about $500 billion from U.S. bank deposits by the end of 2028, which explains why the fight has become so intense. This essentially becomes an issue of financial intermediation, and who gets to own the next layer of dollar infrastructure. That is also showing up outside the U.S.; the Bank of England said on March 11 it was open to revising proposed rules for systemic sterling stablecoins, including reserve and holding-limit requirements, which shows stablecoins are now a core policy battleground, not a side topic. The second-biggest issue is trust and operational fragility. Even when markets are recovering, crypto still keeps producing incidents that remind everyone how brittle parts of the stack are. In February, South Korea’s Bithumb mistakenly distributed more than $40 billion worth of bitcoin in a promo error, recovered most of it, and still triggered regulatory alarm plus a brief 17% local price slump. That kind of event keeps the “can this infrastructure really scale safely?” question alive. From a trader’s perspective, though, the most immediate issue is still macro-driven volatility. Reuters reported Bitcoin fell to a 16-month low in early February before rebounding above $70,000, while options markets showed strong demand for downside protection.
36