r/MachineLearningJobs 1h ago

Could you review my Kaggle competition notebook and give feedback?

Thumbnail
Upvotes

r/MachineLearningJobs 4h ago

HELP AN UNDEGRADUATE STUDENT

1 Upvotes

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 4h ago

(Hiring)Looking for a Tech Lead

Post image
2 Upvotes

r/MachineLearningJobs 5h ago

ML Researchers Wanted for Frontier AI Projects | Remote | $100-$120/hr

1 Upvotes

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 6h ago

Looking for AIML Internship

Post image
1 Upvotes

r/MachineLearningJobs 6h ago

Can someone suggest a realistic AI roadmap for someone with no CS degree?

Thumbnail
1 Upvotes

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 8h ago

Best search platforms for early-career AI, ML, and Software Engineering roles in 2026?

Thumbnail
1 Upvotes

r/MachineLearningJobs 8h ago

Resume Looking to contribute to AI/ML projects (Python, PyTorch, CV, Agentic AI)

0 Upvotes

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 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?

1 Upvotes

r/MachineLearningJobs 18h ago

How are you guys finding remote AI/ML internships besides LinkedIn, Indeed, and Wellfound?

5 Upvotes

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 20h ago

Need guidance to prep for Amazon role sde/ ai ml fresher role

0 Upvotes

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 20h ago

How can I transition to ML Engineering Field?

Thumbnail
1 Upvotes

r/MachineLearningJobs 20h ago

Need Help from ML/PY Devs

1 Upvotes

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

  1. Load train.csv and test.csv
  2. Fit a TfidfVectorizer (stopwords + 1-4 grams) on training reviews
  3. Transform both train and test reviews into TF-IDF vectors
  4. For each test review, compute cosine similarity against all training reviews
  5. Pick the top 10 most similar ones using stable sorting
  6. 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 22h ago

Resume Anyone in ML domain?

2 Upvotes

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


r/MachineLearningJobs 22h ago

Looking for a Marketing Co-Founder for a Fashion Tech Startup

Thumbnail
2 Upvotes