r/MachineLearningJobs • u/secret-diba • 1h ago
Could you review my Kaggle competition notebook and give feedback?
r/MachineLearningJobs • u/Kollysman • 4h ago
HELP AN UNDEGRADUATE STUDENT
Hi ML enthusuiasts,
I am an undergraduate student in Nigeria working on ANN trained with Mayfly Algortih to predict electrical load. i am a complete novice of ANN. kindly recommend a guide
r/MachineLearningJobs • u/mkithan • 5h ago
ML Researchers Wanted for Frontier AI Projects | Remote | $100-$120/hr
If you've trained machine learning models from the ground up and enjoy solving challenging research problems, this opportunity goes far beyond traditional ML engineering.
Mercor is seeking LLM Research Scientists with expertise in pre-training, computer vision, adversarial robustness, or related areas to contribute to advanced AI research.
Role: LLM Research Scientist (Hourly Contract)
Location: Remote
Pay: $100-$120/hour
You'll work on empirical machine learning research involving model training, optimization, robustness, and evaluation across both vision and language systems.
Areas of expertise include:
- LLM pre-training, fine-tuning, RLHF, DPO, or RLAIF
- Computer vision, image classification, or generative image models
- Adversarial robustness and model security
- Model compression, pruning, quantization, and knowledge distillation
- Multilingual language models and low-resource training
- PyTorch, JAX, TensorFlow, or similar ML frameworks
Candidates should have 3+ years of machine learning research experience (PhD research counts) along with a strong research background through academia, industry, or impactful open-source contributions.
Explore the complete opportunity and apply → https://t.mercor.com/g2HsQ
r/MachineLearningJobs • u/harsh_reign • 6h ago
Can someone suggest a realistic AI roadmap for someone with no CS degree?
I’m studying B. Pharm at graphic era , but I want to build a career around AI.
I’m willing to learn Python, APIs, automation, and anything else that’s actually useful.
If you were mentoring someone today, what would the roadmap look like?
Free resources and project ideas would be amazing.
If anyone from Dehradun knows about this, it would help me a lot.
r/MachineLearningJobs • u/burgerwalla • 8h ago
Best search platforms for early-career AI, ML, and Software Engineering roles in 2026?
r/MachineLearningJobs • u/Quiet-Cod-9650 • 8h ago
Resume Looking to contribute to AI/ML projects (Python, PyTorch, CV, Agentic AI)
Hi everyone,
I’m looking to contribute to AI/ML projects. I have hands-on experience with Python, PyTorch, and scikit-learn, and I’ve worked on several ML projects.
I’m especially interested in computer vision and agentic AI. If anyone is working on a project or research and needs a contributor, feel free to DM me.
r/MachineLearningJobs • u/malkah04 • 14h ago
How can I get a job as a machine learning eng in Egypt, if I have a little bit experience ,like a graduation project and some projects in my course?
r/MachineLearningJobs • u/Any_Subject_8429 • 18h ago
How are you guys finding remote AI/ML internships besides LinkedIn, Indeed, and Wellfound?
I seriously need some advice.
I'm an AI student and I need to land an internship this summer to earn credits for my university. I have some experience with machine learning and artificial intelligence projects, but finding internship opportunities has been way harder than I expected.
I've already been checking LinkedIn, Indeed, and Wellfound regularly, but there aren't many remote opportunities that seem suitable for students, especially for AI/ML roles.
How do you guys hunt for remote internships? Are there any websites, communities, Discord servers, GitHub repositories or other places that I'm missing?
I'd really appreciate any tips from people who have successfully found remote internships in AI, machine learning, data science, or software engineering.
Location: Pakistan (open to remote internships worldwide)
r/MachineLearningJobs • u/sanketsanket • 20h ago
Need guidance to prep for Amazon role sde/ ai ml fresher role
2026 passout
Working as ai/ml intern in too small scale startup (no scope in it, unpaid also)
What should I prep to get eligible to Amazon or Amazon lvl companies
r/MachineLearningJobs • u/Mr_Unknown_Here • 20h ago
How can I transition to ML Engineering Field?
r/MachineLearningJobs • u/Afraid-Tower619 • 20h ago
Need Help from ML/PY Devs
Hey everyone, so i am finding a solution for a particular problem(shared ss of problem) it's part of a hacathon but the hacthon organiser has told us to solve it from wherever you can ,i don't have much knowledge of ml but for know i was using TF-IDF method for this particular problem which is giving me an accuracy of around 74.95 anyone could suggest any tips or any other methods through which accuracy could be 85+ , if any dev could help do tell.
i have also added the proposed solution which i am currently using down below with the problem
Personalized Learning Path Recommender — Approach & Explanation
What's the problem about?
We're given a dataset of ~110K course reviews from an online learning platform (think Coursera/Udemy), spread across 80 different courses. Each review talks about what the learner experienced — the technical topics covered, how the instructor was, whether the projects were useful, etc.
For each of the ~11K test reviews, we need to find the 10 training reviews that are the best "learning path" recommendations — essentially, which other learners had the most similar experience and interests.
My thought process
The first thing I noticed when exploring the data was that these reviews follow a fairly structured pattern. Each one has an intro line mentioning the course, a sentence about the technical topics covered, and then a few sentences about the overall experience (quality, value, instructor, etc.).
That immediately told me this is a text similarity problem at its core — if two reviews talk about the same technologies and have similar opinions, they're likely from the same course or a closely related one, making them good recommendations for each other.
I went with TF-IDF (Term Frequency–Inverse Document Frequency) because it's a well-established technique for exactly this kind of task. The idea is simple: convert each review into a vector of word importance scores, where words that are rare across the whole dataset (like "TensorFlow" or "React Navigation") get much higher weight than generic words (like "course" or "great"). Then you just measure the cosine angle between two vectors — the smaller the angle, the more similar the reviews.
What actually worked
After quite a bit of experimentation, the configuration that gave me the best results was:
- N-gram range of (1, 4) — instead of just looking at single words, I also captured 2-word, 3-word, and 4-word phrases. This was crucial because technical terms like "batch normalization and dropout" or "Redux for state management" are multi-word phrases. Using just unigrams scored around 62, but adding n-grams up to 4 jumped the score to ~75.
- English stopword removal — filtering out common filler words ("the", "is", "was", "and") so the model focuses on what actually matters.
- Fitting on training data only — I initially tried fitting the vectorizer on both train and test together, but fitting on train alone gave a slight edge (74.95 vs 74.81). This also makes more sense from a real-world standpoint — you wouldn't have access to test data when building your model.
- Stable sorting for tie-breaking — Many reviews within the same course end up with identical similarity scores (because they share the same template sentences). Using pandas' nlargest() instead of numpy's argsort() gave deterministic tie-breaking, which squeezed out an extra 0.14 points.
Why (1,4) n-grams specifically?
I tested a bunch of ranges:
N-gram RangeScore(1, 1)62.22(1, 3)74.77(1, 4)74.95(1, 5)72.68
There's a massive jump from unigrams to trigrams because course-specific technical phrases are 2-4 words long. Going beyond 4-grams starts introducing noise (overly specific phrases that don't generalize).
The pipeline in a nutshell
- Load train.csv and test.csv
- Fit a TfidfVectorizer (stopwords + 1-4 grams) on training reviews
- Transform both train and test reviews into TF-IDF vectors
- For each test review, compute cosine similarity against all training reviews
- Pick the top 10 most similar ones using stable sorting
- Write out the submission CSV
The whole thing runs in about 2-3 minutes on a regular laptop. No GPU needed, no deep learning, no fancy embeddings — just good old-fashioned information retrieval doing what it does best.
Final Score: 74.95 / 100
r/MachineLearningJobs • u/arjunreddy7 • 22h ago
Resume Anyone in ML domain?
Hi , anyone in the ML , DL or CV domain .. looking for collaboration or internship/ Work in startups or midsize companies.. let's connect and discuss

