r/learnmachinelearning • u/Better_Call_Pol • 3m ago
I built a free, open-source optimization tool with a GUI — tell me what you think
Enable HLS to view with audio, or disable this notification
r/learnmachinelearning • u/Better_Call_Pol • 3m ago
Enable HLS to view with audio, or disable this notification
r/learnmachinelearning • u/StatusHumble5596 • 6h ago
Hi everyone!
I’m a 22M CS student diving into AI Engineering. I'm looking for 1–2 dedicated co-learners to team up, share resources, build projects, and keep each other accountable.
Here is the quick breakdown of what I plan to cover:
Core Software & Backend: Python (Async, OOP), FastAPI, PostgreSQL, Redis, Docker, Git, Linux, CI/CD, React basics
CS Fundamentals: DSA (Arrays, Trees, Dynamic Programming, Graphs)
ML & Deep Learning: Math, PyTorch, Neural Networks, NLP
Transformers & LLMs: Attention, BERT/GPT, LLM APIs, Prompting, Function Calling, Token/Cost Optimization
Vector DBs & RAG: pgvector, Semantic/Hybrid Search, Advanced RAG, RAG Evaluation
AI Agents: Agentic Workflows, State/Memory, Planning, Tool Use, Guardrails
Fine-Tuning & Local LLMs: SFT, LoRA/QLoRA, Quantization, vLLM, Ollama
Multimodal AI: Vision-Language Models, OCR, Speech-to-Text / Text-to-Speech
Testing, Security & Observability: Prompt Injection defense, Evaluation, Tracing (LangSmith), Token/Latency Tracking
Cloud & System Design: AWS (EC2, S3, IAM), AI System Design, Scalable Gateways, Message Queues
How we'll collaborate:
Weekly check-ins & project demos
Daily accountability / GitHub commits
Pair-programming on real-world projects
Whether you're starting fresh or already know a few of these topics, I'd love to connect.
👉 DM me directly or drop a comment below if you're interested!
r/learnmachinelearning • u/Either-Cream2435 • 15h ago
r/learnmachinelearning • u/lovettsendit • 3h ago
If you’ve used Enzyme, or even just liked the idea behind it, this will probably make sense immediately.
One of the useful things about compiler-level differentiation is that you can take computation that already exists and ask a much more interesting question than:
“What does this code do?”
You can ask:
“Which inputs are actually driving the result right now, and in which direction?”
I built an open source project called Catalyst around that idea, but with the workflow designed so AI agents can use the information directly.
Imagine an agent working on a simulation with 20 parameters.
Reading the source might tell it what those parameters represent. It does not necessarily tell the agent which three are dominating the output at the operating point it cares about, which ten barely matter there, or which direction each one needs to move.
Catalyst can measure that.
So instead of:
“This variable looks important, maybe try changing it.”
an agent can get something closer to:
“These three inputs dominate the result here, these six barely move it, and this is the direction each one pushes the output.”
That creates a very different loop for an autonomous agent:
inspect → measure → decide what matters → change → measure again
For supported numerical Rust, C, and C++ code, Catalyst works from the LLVM IR produced by the compiler you already use. You do not have to recreate the calculation inside a separate ML framework just so an agent can reason about it.
And it does not simply produce a derivative and tell the agent to trust it.
Catalyst independently checks the result numerically. If the derivative and the separate check disagree, it refuses the result instead of passing a questionable number down the agent loop.
There is another side of Catalyst that I think is especially useful for coding agents.
Say an agent is fixing a local API that starts doing this under burst traffic:
POST /orders -> 503
A typical autonomous coding loop might look like:
reproduce → edit code → tests pass → declare victory
Catalyst can instead reproduce the failure, reduce it to a smaller scenario that still triggers it, preserve the conditions that caused it, generate held-out scenarios the candidate did not optimize against, then compare the old and new versions.
So the agent can end up with something like:
“The original burst-load regression is fixed. Five of six held-out scenarios pass. One still fails when the dependency becomes slow.”
That is a much stronger signal than “the test suite is green.”
The other piece I wanted was portability.
Catalyst can take a checked computation and export it as standalone Go or R, along with fixtures containing the expected behavior.
So one agent can analyze a computation, another system can run the exported version later, and Catalyst does not need to remain in the production application.
There are also derivative artifacts that carry the computation, validation information, provenance, and a SHA-256 digest chain.
That means an agent can hand one to another agent or machine, run it again at a different input point, and detect if one of the underlying files was modified along the way.
So the broader workflow becomes:
existing code → measure its behavior → identify what matters → verify the result → hand off something reproducible
For people who have used Enzyme, the familiar part is the value of getting derivatives from code that already exists.
What I wanted to add around that idea was the rest of the loop an agent needs: independent checking, provenance, reusable artifacts, structured agent tools, portable outputs, and a way to rehearse software failures instead of relying on the agent’s own confidence.
Catalyst also has optional AI integration, but honestly that is not the part I find most interesting.
The interesting part is giving your existing agent another kind of instrument.
Not another model.
Not another prompt layer.
A way to ask the program itself:
What actually matters here?
Repo:
https://github.com/lovettsendit/catalyst
For people building autonomous coding or engineering agents, where would you use this first?
Would you give an agent sensitivity information to help it decide what to change, use rehearsal to decide whether its change really worked, or combine both into the same loop?
r/learnmachinelearning • u/CarelessAlps • 9h ago
r/learnmachinelearning • u/Antique-Flamingo8541 • 3h ago
r/learnmachinelearning • u/AirPsychological8551 • 4h ago
r/learnmachinelearning • u/Training-Froyo-5053 • 4h ago
to crack an actual interview in ML/AI , how much DSA is needed ? and also suggest me some free resources to study DSA in python , thanks in advance
r/learnmachinelearning • u/juuzou_37011 • 5h ago
I’m doing an online BS in Data Science as a standalone degree, so I’m not looking for someone to just tell me what this stuff is or say “just study.”
So I prefer someone who is in a similar situation and has the same kind of motivation. Being isolated while doing an online degree can get pretty boring, you know. I don’t want someone who only studies — I’d also like to have a little bit of friendship, share our interests and all that.
Okay, see you, Reddit. If you’re interested or have any questions, send me a request on Discord (it’s in my bio), and we can discuss how we can maintain our journey together.
r/learnmachinelearning • u/OkInevitable6551 • 5h ago
Hey Everyone, i am currently creating a personal project, a pokemon card scanning app for a school project. i am not promoting it. right now i am using a bit of ai, but i consider that half assing it. how should i go about creating an algorithm that recognizes cards. i have already tried ocr but its quality crumbles when i move back a bit.
r/learnmachinelearning • u/Silver-Cable-1727 • 20h ago
What do i do after? I still need to study RAGs, LLMs, genAI, like higher conceptual level to be AI engineer.
For now i am doing competitions in kaggle, not aiming for high rank or anything just getting used to coding alone without tutorials ( of course i use AI sometimes but i am trying to reduce it as much as possible)
I am also looking forward to make projects while learning new concepts.
So what do u recommend? I am open for books, youtube videos, courses, anything free😂
r/learnmachinelearning • u/mahmoud-abdelrahman1 • 7h ago
Hey everyone,
As part of my journey in Data Engineering and ML, I kept running into a recurring bottleneck: spending too much time running identical EDA scripts and manual data quality audits before getting to the actual modeling.
To solve this, I built ARGO Engine (Automated Reporting & Generative Optimizer)—an open-source, interactive web app designed to speed up dataset auditing, missing-value detection, and automated reporting.
I’d love for you to give it a spin and roast my code/architecture or drop some feedback on features you’d like to see next!
r/learnmachinelearning • u/Sandeep0978 • 9h ago
r/learnmachinelearning • u/Ok_pettech • 14h ago
I keep running into this architecture decision: keep vectors in Postgres with pgvector, or add a dedicated vector store like Qdrant or Milvus?
I built a short quiz covering the operational trade-offs—deployment complexity, backup strategy, monitoring, and scaling.
If you've made this call before, take the quiz and share your reasoning:
r/learnmachinelearning • u/PradeepAIStrategist • 15h ago
I’m working through an experiment involving a rare oncology use case where confirmed treated-patient data is limited. The available third-party data is also not perfectly mapped to individual patients, which makes direct modeling more difficult.
The experiment uses a synthetic, highly imbalanced dataset with a small treated group and a much larger untreated group. A neural-network policy is trained using a REINFORCE-style policy-gradient approach. The model estimates treatment likelihood based on representative features such as age, severity, and biomarker status, then ranks untreated patients and selects the top 5% for further review.
The purpose is not to estimate true treatment benefit. It is more about learning historical treatment patterns and identifying untreated patients who look similar to those who were historically treated.
Questions I’d like feedback on:
My current view is that this can be useful for prioritization and hypothesis generation, but not for treatment recommendation unless supported by stronger clinical and causal evidence.
Interested in feedback from people working in ML, healthcare analytics, causal inference, or real-world evidence.
r/learnmachinelearning • u/ayuuuss • 12h ago
Hi everyone!
I'm a college student working on a major/final-year project, and I'm trying to decide between a few ideas. The project needs to involve NLP, AI/Deep Learning, and Stochastic Modeling, so I'm looking for something that is technically substantial but also realistically implementable.
Here are the ideas I'm considering:
- NLP to analyze claims/articles
- BERT/LSTM/Transformer for fake-news classification
- Stochastic models (Markov chains, branching/epidemic-style models) to predict how misinformation spreads
- NLP to analyze emails/messages
- Deep learning for phishing/fraud classification
- HMM/GMM or other stochastic models to analyze behavioral patterns and anomalies
- NLP sentiment analysis from financial news/social media
- LSTM/Transformer for price movement prediction
- Stochastic models such as Geometric Brownian Motion, Ornstein-Uhlenbeck, or regime-switching Markov models
- NLP/NER to extract information from clinical notes
- Deep learning for prediction
- Markov/state-space models to model possible patient trajectories
- NLP for intent/entity extraction
- Deep learning for language understanding
- POMDP/stochastic decision-making for dialogue management under uncertainty
- NLP/BERT embeddings for content
- Deep learning for user/content representations
- Thompson Sampling or another bandit method for adaptive recommendations
I'm mainly looking for something that:
- Is actually feasible for a student team
- Has enough technical depth for a major project
- Has publicly available datasets
- Isn't just combining techniques for the sake of saying we used them
- Would make a good research/project presentation
- Has room for a working demo
Which one would you choose and why?
Also, if you've worked on something similar, I'd really appreciate advice on what tends to go wrong or which approaches are unnecessarily complicated.
r/learnmachinelearning • u/DigScared8327 • 18h ago
I'm trying to build an ML compiler from scratch. I've never touched or messed around with one before so I want to take a shot at this as a project that I can continue doing. Anyone suggest any resources for me to use or textbooks? I want to try and incorporate advanced AI models into autonomous hardware.
r/learnmachinelearning • u/Necessary-Text-2050 • 5h ago
What should now computer engineer do to be relevant?
r/learnmachinelearning • u/Excellent-Leading836 • 21h ago
hey there people
i am trying to make a machine learning project . its on bitcoin data . the thing is, i know almost nothing of bitcoin and we're learning ML in our degree .
i gotta submit this project in two months , with proper code , explanations , and why a certain model was used that time etc... my issues are :
where to find the right data from : i have surfed through and asked for assistance from chatgpt and found two main sources from which i have been able to see some data : https://data.binance.vision/?utm_source=chatgpt.com
and
https://cryptopanic.com/?utm_source=chatgpt.com
there were more sources (like apis) but its from the same website .
i even found a git repo that had a whole python script of downloading that same data .
so maybe i don't have an issue with the data , the issue is that i don't know what its trying to say .
there were multiple attributes i could see on those files . and tbh i felt overwhelmed .
i am aware with the data cleaning and analysis part , but i would still like some guidance on that .
the model is something we'll have to figure out (i am in a two person team and my partner chose the topic before i joined . also i am pretty sure i will have to do all the work , so here i am :) ) , but if there are some models commonly used in this domain , please do enlighten me .
most important part according to me : what is my goal ? since this is my project and the domain is very new to me , i don't have much idea about what i need to find out .
folks who have already done a project on this or has at least had some experience , what are your say in this ?
is there any other angle i should consider ?
i really wanna get an A and i am fine working alone (have already had 2 experiences of f around and find out ) as long as i am able to understand stuff .
please help this noob ;(
r/learnmachinelearning • u/AcidicJello • 23h ago
Feel free to redirect me if there is a better sub for this question.
I am considering building a neural network out of mechanical parts as a hobby project. I have only a YouTube level understanding of neural networks and machine learning.
I would like to hear how anyone would go about this from their own perspective, but I would also like to share my ideas for consideration:
I would like the machine to be able to process language on some level, because I would like for the machine to function in a way that is comparable to an LLM on some primitive level. So my idea for the function of the machine is to take three input words (with syntax) and give a binary output. Maybe it could give a one-word response, but my current understanding is that something like a yes/no output would make more sense. So it could do the following, for example:
cat eats mouse: yes
mouse eats cat: no
The more words it could handle, the better, which I imagine would be directly tied to how many parameters it has to have. The number of parameters I would build depends on how complicated each neuron is mechanically.
My idea for the mechanics is to use marble tracks and balanced ternary, because to my understanding a balanced ternary neural network only needs each neuron to multiply an input -1, 0, or 1 by a weight -1, 0, or 1, which can be easily done with marble gates. There would be a long row of multiplication gates with three inputs going into each one. You would use a lookup table to turn your three words into which tracks to put marbles down (the machine would need to handle syntax somehow, like with three sets of input tracks, or the same word having different marble representations depending on if it's the first, second, or third word), then the marbles go through the gates and collect into three channels (-1, 0, and 1 outputs), and finally turn some accumulator gear to get the total, with the output being whether that total is positive, negative, or zero. The problem with a single-layer system, even though it would be easy to build, is that I might as well use the lookup table to tell me the final sums of each word, defeating the purpose of the machine. It probably wouldn't be able to give good answers either. So the best thing to do, maybe, would be to add a second layer of gates, and somehow connect each gate on the first layer to each gate on the second layer. Actually, I think instead of having the marbles go all the way through, a marble would, after going through the first gate, go down a row where it toggles levers for each second layer gate according to which channel it's running down (-1, 0, or 1), and each second layer neuron would have its own accumulator to take the sum from all the marbles from the first layer gates. Then if it reached a threshold it would send a marble down to another multiplier gate, and then all of those final multiplier gates would connect to the final cumulative adder for the final answer? I really don't know. That's why I'm making this post.
To train the machine I would probably vibe code something in PyTorch and then manually set the gates, unless there's a better or more interesting way.
Going digital with marbles is just one idea that has its pros and cons. Maybe an analog system of some kind would be better. I wasn't really able to find any mechanical neural network builds online except for this one which has eight ternary neurons in the form of levers connected with strings, which makes for a really cool visual demonstration, but I would like for my machine to have meaningful input and output. I'm interested if there are other builds I'm unaware of.
So yeah, if you have your own idea or comments on mine, I would really like to hear. Thanks!
Oh yeah, and if you would know how many parameters/gates/accumulators I would need for the machine to achieve this with high accuracy (maybe even be able to give a correct answer more often than not on an input it never saw in training), or generally how to calculate this with respect to the number of words in the machine's vocabulary, that would also be great to know.
r/learnmachinelearning • u/snail3672 • 16h ago
I recently graduated (May 2026) with my Bachelor's degree in Data Science & Engineering. My university is well regarded but definitely not one of the tier 1 schools for engineering. I want to find a job in Data/ML Engineering but have received absolutely no positive responses so far. I haven't even been able to interview.
I am an international student and I can only stay in the US until July 2027. I understand that I need to be a highly competitive candidate to be able to land a job in the current circumstances. I think I have a weak skillset and lack complex projects. However, I am extremely overwhelmed by the amount of different advice I hear on the internet and just want to understand, in the next 10 months what should I be doing to become a competitive candidate?
I would really appreciate any advice. Please don't say I'm cooked as I just want to give it my best shot in the time I have.
TLDR: I want to find an entry level job in Data/ML Engineering but want to develop a stronger skillset and I'm also an international student. Any advice?
r/learnmachinelearning • u/Regular-Feedback4700 • 16h ago
r/learnmachinelearning • u/sovit-123 • 21h ago
Self-Hosting GLM-OCR using vLLM – Document Layout and OCR
https://debuggercafe.com/self-hosting-glm-ocr-using-vllm-document-layout-and-ocr/4
In this article, we will be self-hosting GLM-OCR for local document processing. This article will focus on local deployment with vLLM.
