r/AILearningHub

Looking for people to learn AI/ML together

I’m starting my AI/ML journey and want to connect with people who are also learning AI/ML from scratch or are at a similar stage.

Instead of just collecting resources and watching courses, I want to actually build things, practice consistently, and improve step by step.

I’m looking for people who are interested in:

  • Learning AI/ML together
  • Sharing useful resources
  • Discussing doubts and concepts
  • Building projects together
  • Keeping each other accountable
  • Sharing progress and mistakes
  • Staying consistent for the long term

No competition or pressure just a group of people seriously trying to get better.

If you're also starting or currently learning AI/ML, let’s connect and follow this journey together.

Comment or DM if you're interested!

reddit.com
u/Wise_Departure2637 — 1 day ago
▲ 38 r/AILearningHub+32 crossposts

OpenSourcing TrueForge Agent harness : Expect feedback from community on the agent loop

Hey folks 👋

We just open sourced TrueForge, our vendor-neutral agent harness for building general-purpose agents.

It handles the runtime pieces that get painful quickly : context management, tool/MCP execution, subagents, sandboxing, approvals, persistent state, and more.

We also benchmarked the harness itself. With the same Opus 4.8 model, TrueForge delivered a similar solve rate at ~30% lower cost than Claude Managed Agents. Switching to an open model pushed that to ~75% lower cost on the same benchmark.

Would love feedback from people building agents.

⭐ Star the repo: https://github.com/truefoundry/trueforge

📖 Read the launch article: https://x.com/truefoundry/status/2090081376330715176

u/Upbeat_Pea8961 — 22 hours ago
▲ 8 r/AILearningHub+3 crossposts

I built this multiagent AI system alone in my bedroom 😂

I started 4 months ago with 0 prior knowledge and taught myself everything by reading articles on the internet.

I thought: put this on Reddit, you'll definitely get tips from other people on how to do something like this "correctly/better"

I'm really just looking for people to exchange ideas and stuff.

I'm still building it, just looking for helpful tips

THIS is how i started. You're laughing your ass off! 📹
The Beginning

PANTHEON AI

Pantheon AI – Artificial Organism Architecture

Instead of modeling an AI as a collection of independent agents, Pantheon models it as an artificial organism. Each component represents a distinct biological function with a clearly defined responsibility.

Organs

Internal systems responsible for cognition and regulation.

Thor — Executive brain; planning, coordination, decision making. Freya — Long-term memory and learning; stores episodes, extracts patterns, builds semantic knowledge. Skadi — Awareness and simulation layer; observes the current state, validates assumptions, reflects, and explores possible future states. It owns no long-term memory. Homeostasis Systems (e.g. "Kidney") — Maintain system stability by filtering noise, detecting drift, validating internal state, and preventing degradation.

Limbs

Components that interact with the external world.

Ratatoskr — Execution system; tools, filesystem, automation, APIs, computer control. Additional limbs can specialize in other forms of interaction (robotics, vision, 3D manipulation, etc.).

Limbs do not own goals or long-term reasoning. Their responsibility is reliable execution.

Principles

Memory is not awareness. Execution is not cognition. Learning is not decision making. Regulation is separate from action.

Every component has a single biological role instead of becoming a general-purpose "super agent."

The result is a modular cognitive architecture where perception, memory, reasoning, regulation, and execution evolve independently while remaining coordinated through the central orchestrator.

Agent Life cycle:
https://pastebin.com/4bKgdQrg

PANTHEON SYSTEM CIRCLE:
https://pastebin.com/mxHf7DKm

Pantheon Architecture :

### Root (4 Dateien)
| Datei | Groesse | Rolle |
|-------|---------|-------|
| main.py | 13KB | Entry point, startet alles, _R08LogStream stdout-Wrapper, MoltbookWatcher Scheduler-Hook |
| calendar_service.py | 6.5KB | Kalender-Backend (SQLite) |
| check.py | 0.3KB | Quick check script |
| restore_last.py | 2.9KB | Rollback fuer CodeApply |
| run_analyst.py | 0.8KB | Startet Freya-Analyst |


> 
**Hinweis:**
 r08_metrics.py wurde approved (31.07. 08:11) aber ist NICHT im Root gelandet. Backup in backups/applied/. Muss noch kopiert werden.


### core/ (48 Dateien) — Das Gehirn
| Datei | Groesse | Rolle |
|-------|---------|-------|
| llm_client.py | 52KB | LLM-API-Wrapper (alle Modelle) |
| config.py | 16KB | Pfade, Settings, Loki Avatar Map — BONSAI als einziges Ollama-Modell (01.08.) |
| task_memory.py | 33KB | SQLite Task/Step/Worker/Orchestrator Status |
| tool_governor.py | 16KB | Tool-Filterung, Capability-Gating |
| memory_manager.py | 21KB | User-Facts, Kontext (JSON) |
| memory_core.py | 16KB | Memory Foundation |
| simulator.py | 18KB | World Model — Kaskade Stufe 1+2+3 LIVE |
| decision_layer.py | 14KB | Action Selection — TM + QM verdrahtet, Q-Memory Fast Filter SCHARF |
| ai_helper.py | 19KB | AI-Helper-Layer fuer Worker-Outputs |
| llm_router.py | 10KB | Model-Routing |
| loki_bridge.py | 13KB | Thor->Loki Delegation Bridge |
| canonical_state.py | 9KB | World Model State Snapshot |
| code_apply.py | 10KB | FixReviewPanel Pipeline (gruener Knopf) |
| patch_manager.py | 9KB | Patch-Verwaltung |
| capability_store.py | 10KB | Worker-Capability-Registry |
| error_metrics.py | 12KB | Error-Scoring |
| feedback_analyst.py | 13KB | Feedback-Analyse |
| gap_detector.py | 9KB | Erkennt Luecken in Worker-Outputs |
| proactive_gap_detector.py | 9KB | Proaktive Luecken-Erkennung |
| prompt_builder.py | 12KB | Prompt-Konstruktion |
| q_memory.py | 8KB | Q-Learning Memory — 14 Eintraege, 271 Updates, avg Q=0.649, Fast Filter SCHARF |
| transition_memory.py | 11KB | Transition Memory — 16 Eintraege, 276 Transitions |
| state_manager.py | 13KB | State Management |
| summarizer.py | 11KB | Zusammenfassungen |
| token_tracker.py | 11KB | Token-Tracking |
| vision_processor.py | 9KB | Vision-Processing |
| video_job.py | 18KB | Video-Job-Management |
| youtube_auth.py | 12KB | YouTube OAuth |
| youtube_setup.py | 4KB | YouTube Setup Helper |
| status_codes.py | 6KB | Zentrale Status/Result Codes |
| logger.py | 6KB | Logging-Setup |
| event_bus.py | 3KB | Qt-Signal-Bus |
| abort_guard.py | 2KB | Pipeline-Step-Abbrueche |
| action_normalizer.py | 9KB | Action-Normalisierung |
| agent2_memory.py | 10KB | Agent Memory v2 |
| agent_goal_state.py | 13KB | Goal State Management |
| context_state.py | 3KB | Context State |
| eval_classifier.py | 8KB | Evaluation Classifier — execution_error scoring LIVE |
| eval_store.py | 7KB | Evaluation Store |
| execution_contract.py | 5KB | Execution Contracts |
| fix_classifier.py | 8KB | Fix-Klassifizierung |
| gpu_arbiter.py | 4KB | GPU-Verwaltung |
| scene_binding.py | 8KB | Scene-Binding |
| sync_source.py | 5KB | R08_source Sync (DEAKTIVIERT 15.07.) |
| trigger_resolver.py | 5KB | Trigger-Aufloesung |
| test_decision_layer.py | 5KB | Test fuer DecisionLayer |
| test_simulator.py | 7KB | Test fuer Simulator |


### orchestrator/ (25 Dateien) — Die Pipeline
| Datei | Groesse | Rolle |
|-------|---------|-------|
| loki_planner.py | 72KB | Lokis Planungs-Engine (groesste Datei!) |
| pipeline.py | 39KB | Haupt-Pipeline |
| planner.py | 43KB | Allgemeiner Planner |
| retry_orchestrator.py | 43KB | Retry-Logik |
| decision_layer.py | 53KB | Orchestrator Decision Layer (andere als core/) |
| router.py | 28KB | Intent/Action Routing |
| media_orchestrator.py | 26KB | Media-Pipeline |
| loop_engine.py | 26KB | Agent Loop Engine |
| scheduler.py | 20KB | Task-Scheduler |
| output_classifier.py | 20KB | Output-Klassifizierung |
| scene_builder.py | 18KB | Scene-Konstruktion |
| agent_loop.py | 17KB | Agent Loop — kennt browser_tools_neu.py noch nicht (Phase 1.2) |
| plan_builder.py | 16KB | Plan-Konstruktion |
| mini_orchestrator_base.py | 16KB | Basis fuer Mini-Orchestratoren |
| templates.py | 15KB | Templates |
| tool_registry.py | 16KB | Tool-Registry |
| orchestrator_registry.py | 10KB | Orchestrator-Registry |
| intent_resolver.py | 11KB | Intent-Aufloesung |
| gap_analysis.py | 11KB | Gap-Analyse |
| execution_plan.py | 11KB | Execution Plan |
| caption_builder.py | 6KB | Caption-Erstellung |
| prompt_builder.py | 3KB | Orchestrator Prompt Builder |
| insta_orchestrator.py | 2KB | Instagram Orchestrator |
| scene_policy.py | 1KB | Scene-Policy |


### workers/ (24 Dateien) — Die Haende
| Datei | Groesse | Rolle |
|-------|---------|-------|
| remotion_worker.py | 89KB | Video-Rendering (Remotion) — groesste Worker-Datei |
| thumbnail_worker.py | 63KB | Thumbnail-Generierung |
| browser_worker.py | 44KB | Browser-Automation |
| sd_worker.py | 43KB | Stable Diffusion Worker |
| youtube_worker.py | 34KB | YouTube Upload/Management |
| pexels_video_researcher.py | 25KB | Pexels Video-Recherche |
| file_worker.py | 24KB | Datei-Operationen |
| research_worker.py | 21KB | Web-Recherche |
| video_cutter_worker.py | 19KB | Video-Schnitt |
| email_worker.py | 18KB | E-Mail-Worker |
| code_worker.py | 15KB | Code-Ausfuehrung |
| notepad_worker.py | 11KB | Notizen |
| loki_image_generator.py | 10KB | Bild-Generierung via Loki |
| loki_scene_picker.py | 8KB | Scene-Auswahl |
| vision_worker.py | 8KB | Vision-Worker |
| music_query_resolver.py | 7KB | Musik-Query-Aufloesung |
| pexels_worker.py | 7KB | Pexels-API |
| base_worker.py | 12KB | Basis-Worker-Klasse |
| guten_tag_worker.py | ?? | UNTRACKED — Test/Spass-Worker? |
| hallo_worker.py | ?? | UNTRACKED — Test/Spass-Worker? |
| ich_finde_worker.py | ?? | UNTRACKED — Test/Spass-Worker? |
| meinst_du_worker.py | ?? | UNTRACKED — Test/Spass-Worker? |
| nein_ich_worker.py | ?? | UNTRACKED — Test/Spass-Worker? |


### thor/ (9 Dateien) — Der Agent
| Datei | Groesse | Rolle |
|-------|---------|-------|
| thor_agent.py | 58.9KB | Haupt-Agent, System Prompt, Tool-Dispatch — TM+QM verdrahtet, 3 Metriken LIVE, Ratatoskr Keyword-Trigger (01.08.) |
| thor_tools.py | 59.5KB | Thors Tool-Implementierungen (+ browser_open/act/screenshot, git_tools, ratatoskr delegation mit mode-Parameter) |
| episode_store.py | 13.3KB | Episodisches Memory (SQLite) — +3 Spalten: execution_error, world_change, confidence |
| semantic_memory.py | 7KB | Semantisches Memory (Facts) — 197 Eintraege |
| thor_memory_init.py | 4.9KB | Memory-Initialisierung |
| browser_tools_neu.py | 9.1KB | Browser-Tools: browser_open/act/screenshot + Approval Gate |
| git_tools.py | 8KB | Git-Tools: git_snapshot, git_log, git_status (NEU 31.07.) |
| tool_governor.py | 17.9KB | Tool Governor — Capability-Gating (NEU 31.07.) |
| video_research_tools.py | 5KB | Video-Research Tools (NEU 31.07.) |


### freya/ (8 Dateien) — Die Analystin
| Datei | Groesse | Rolle |
|-------|---------|-------|
| freya_core.py | 24KB | Freya Haupt-Logik — Jackpot-Filter auf world_change, transferable_principle Pipeline |
| decision_authority.py | 24KB | Approve/Reject-Entscheidungen |
| freya_reflection.py | 16KB | Reflexions-Engine |
| idle_cognition.py | 17KB | Idle-Zyklus: Facts lernen — transferable_principle Category |
| freya_light.py | 15KB | Leichtgewichtige Freya |
| freya_status.py | 11KB | Status-Reporting |
| proactive_queue.py | 11KB | Proaktive Vorschlaege — 7 total, 0 undelivered |
| moltbook_watcher.py | ~6KB | Moltbook Agenten-Sensor — pollt /api/v1/notifications alle 5h |


### tools/ (11 Dateien) — Werkzeuge
| Datei | Groesse | Rolle |
|-------|---------|-------|
| file_tools.py | 57.8KB | Datei-Operationen (lesen/schreiben/listen) |
| ollama_client.py | 16.8KB | Ollama-Client — BONSAI 27B als einziges Modell (01.08. Migration), Warmup entleert |
| ratatoskr_agent.py | 12.4KB | Ratatoskr Agent — FEATURE COMPLETE (02.08.). 5 Modes, Schema 1.0, JSON-Parser 4-Fallback |
| vision.py | 9.8KB | Vision/Screenshot |
| vision_click.py | 7.2KB | Vision-basierte Clicks |
| mouse_keyboard.py | 6.5KB | Maus/Tastatur |
| spotify_client.py | 6.5KB | Spotify-Integration |
| northstar.py | 5.1KB | Veraltet — Monat-1-Relikt |
| music_client.py | 3.6KB | Musik-Client |
| web_search.py | 1.4KB | Web-Suche |### Root (4 Dateien)


### memory
| Datei | Rolle |
|-------|-------|
| moltbook_last_check.json | MoltbookWatcher last_seen_id Tracking |
| q_memory.json | Q-Learning State-Action Werte — 15 Eintraege, 339 Updates, avg Q=0.672 |
| semantic_memory.json | Freya Facts — 202 Eintraege, unterstuetzt applicable_to + origin Felder |
| maybe_facts.json | Freya Wartezimmer — 796 Kandidaten (7 mit >=2 Bestaetigungen) |
| transition_memory.json | Transition Memory — 17 Eintraege, 344 Transitions |
| episodes.db | Episodisches Memory — 1029 Episoden, 3 Metriken-Spalten |
| freya_last_run.json | Freya Zyklus-Tracking (light=04.08., idle=03.08., reflection=05.08.) |
| proactive_queue.json | Proaktive Vorschlaege — 7 total, 0 undelivered. + `read` Feld (neu 06.08.) |
| token_session.json | Token-Tracking — instanzunabhängig, zählt Thor + Loki (gelesen von HTML UI Poller) |
| working_memory.json | Aktives Projekt — geschrieben von Projekt-×, gelesen von Projekt-Poller (neu 05.08.) |


### memory/Thor_memory/ — Core Memory 
u/Vivid_Ad_5069 — 1 day ago

Ai automation

Hello,

I am new to Ai automation, Can anyone help me with how I should start and necessary skills to learn.

And also tools.

reddit.com
u/Mylari982 — 1 day ago
▲ 18 r/AILearningHub+4 crossposts

RAG workshop with open models (Aug 29), no API costs to worry about

If you're trying to get into RAG and generative AI but keep bouncing off tutorials that assume you already have API budget or existing infrastructure, this might help.

There's a hands-on session on August 29 that builds a full production-style RAG system using entirely open models, no API fees involved anywhere in the process. Covers hybrid retrieval, evaluation, guardrails, and cost benchmarking, the parts that actually separate a working demo from something you understand end to end.

Good one if you want to learn by actually building rather than just watching a walkthrough.

Here is the workshop details

u/camerongreen95 — 1 day ago

What do you all think about this probabilistic approach?

I have decided to make a probabilistic model which finds out weather you should buy a particular crypto or not. i have researched about crypto and found that three things are important and in those three things there are certain patterns which can be seen.
The first is Momentum of crypto(strong, neutral, weak), Fundamentals(how the company is growing(strong, neutral, weak), market(adverse, neutral, bullish)
so my agent see's the evidences and then based on the past data pull out the base rate as first belief distribution among 5 hidden states,

  1. strong upward trend
  2. weak upward trend
  3. sideways
  4. strong downward trend
  5. weak downward trend

so the probability will be distributed among these from base rate from past data. so thee base rate will work as prior and then based on the specific patterns the agent will go inside the data see the specifications and calculate the numbers among all of the hidden states, find the probability of each happening by applying bayes rule and then by seeing a certain threshold and based on the events it will decide what to do, buy or sell

reddit.com
u/parteeksaini — 1 day ago
▲ 22 r/AILearningHub+1 crossposts

Any suggestions on full agentic AI course??

Anyone has any good suggestion ( free of cost) may be youtube playlist that covers majority of agentic AI along with hands on.

I found Venkata reddy ai classes, but I am not sure how helpful it would be so before starting, I want to have people's input

Thanks

reddit.com
u/Naive-Awareness-6832 — 2 days ago
▲ 2 r/AILearningHub+4 crossposts

Built a $0 AI news bot that turns 7 RSS feeds into a daily digest what's your news workflow?

I built a $0 AI news bot and it quietly replaced my morning scroll.

It pulls 7 RSS feeds (Hacker News, Google AI blog, Hugging Face, Lobsters, The Hacker News, Open Source blog), filters out the noise, summarizes the stories actually worth reading, and posts a clean daily digest to a Discord channel. Runs on a cron job on a free-tier server. I haven't manually hunted for AI news in weeks.

The boring-but-useful parts:
- Dedup the same story hits 5 feeds; it picks the best source and drops the rest
- LLM summarization 2-3 sentence summaries instead of headline spam
- Self-healing if a webhook dies it recreates itself; if a feed times out it skips gracefully
- Public archive every digest gets published to a free static site: https://apexnexus.site

Total cost: $0. Total upkeep after day one: basically zero. I also write up the blueprints behind these automations on the site (the self-healing webhook writeup got the most attention).

So what's your news workflow? Still scrolling feeds, or have you automated it too? Curious what setups other people run.

u/Positive-Ad3618 — 2 days ago

Complete beginner here! What is the best roadmap to start learning AI/ML?

Hey guys, I want to start learning Al/ML, but I'm honestly a bit overwhelmed with all the resources out there and don't know where to begin.

I have some basic programming knowledge, but the Al field is completely new to me. Could anyone suggest a simple roadmap or good courses to start with? Also, what kind of beginner projects should I build early on?

Any guidance from people already in this field would be really helpful!

reddit.com
u/Ankitjha61 — 2 days ago

Beginner here: What should I learn to transition from backend development into AI/ML/GenAI?

Currently started studying flask and am really fascinated by the AI and its multiple branches also adhering to the current market situation am thinking of studying it.

But the problem is i dont know what to study cause people say

Ai

Ml

Gen ai

Rag

And so on...

Also some people are saying you should be more familiar with mathematical concepts.But guys , i really suck at maths which kindah demotivates me to study these stuffs.

Really dont know where to start...

Your words will be very helpful to me...

Thank you guys...

Have a nice day

reddit.com
u/Jotaro_575 — 2 days ago

AI changed my study habits. What's your approach to learning fundamentals now?

I used to spend hours learning programming and drilling the basics before AI became a thing. Now, I'm not sure if going back to the basics over and over is still the right path. What is your strategy these days?

reddit.com
u/LavishnessLate5924 — 2 days ago
▲ 12 r/AILearningHub+1 crossposts

10 AI Skills We’ll Desperately Need to Learn

AI is becoming part of almost every kind of work, but I think the biggest advantage won’t come from simply knowing how to use ChatGPT.

It will come from knowing how to work effectively with AI.

Here are 10 skills I think will become increasingly valuable:

1. Prompting

Knowing how to give AI clear context, constraints, examples, and goals. Good prompting is less about finding a “magic prompt” and more about communicating clearly.

2. AI Research & Fact-Checking

AI can help you research incredibly quickly, but it can also make mistakes. Learning how to verify sources, identify hallucinations, and question AI-generated information will be essential.

3. AI Automation

Learn how to connect AI with spreadsheets, email, databases, calendars, and other tools to automate repetitive tasks.

4. AI-Assisted Coding

You don't necessarily need to become a professional programmer. But understanding basic coding concepts and using AI to build scripts, websites, automations, or small tools could be extremely useful.

5. Data Analysis

AI can help clean, analyze, visualize, and explain large amounts of data. The important part is learning how to ask the right questions and understand whether the results actually make sense.

6. Working With AI Agents

Instead of asking AI one question at a time, learn how to give it a larger objective, break the objective into steps, and have it perform and verify tasks.

7. AI Content Creation

Writing, images, video, presentations, and other forms of content are changing rapidly. The valuable skill may not be producing everything manually, but knowing how to direct AI while maintaining quality and originality.

8. AI-Assisted Problem Solving

Use AI as a thinking partner—not just an answer machine. Ask it to generate alternatives, challenge your assumptions, find weaknesses, and explore different scenarios.

9. AI Security & Privacy

Understanding what information should not be shared with AI, how permissions work, and how AI can be used in scams and manipulation will become increasingly important.

10. Knowing Which AI Tool to Use

There probably won't be one AI tool that's best at everything. Learning which model or tool is appropriate for research, coding, writing, analysis, images, automation, etc. may become a skill in itself.

The bigger skill

I don't think the most valuable skill will be “knowing how to use AI.”

It will be knowing how to redesign your work around AI.

Someone who can turn a 3-hour workflow into a 20-minute AI-assisted workflow could have a significant advantage over someone who simply knows how to write good prompts.

What AI skill do you think will become the most important over the next 5–10 years?

reddit.com
u/Logical_Wheel9789 — 2 days ago

What should I learn about AI beyond image and video generation?

I know some basic stuff about AI, and I've used it for things like image/video generation and research. But I don't really know what else there is to learn or where I should start.

What are people learning about AI these days beyond image and video generation? There seem to be so many areas, and I'm not sure which ones are actually worth learning.

If you were starting from the basics today, what would you recommend learning first?

reddit.com
u/Chance_Mushroom7713 — 3 days ago

AI Learning for Non Techs

Hi everyone,

Wanted to understand how do non techies feel about AI in their day to day workplace.
Trying to come up with some learning platform to improve this. Few questions will help understand
- Which market do you fall?
- How do you learn AI as on today,
- Any platform that you look ahead for learning AI
- What is it that you would like an app to have so that your work gets sorted

reddit.com
u/ConstantCategory8174 — 2 days ago
▲ 49 r/AILearningHub+2 crossposts

Can anyone teach me how can I pickup the pace of learning AI as it grows

I am really confused with the growing speed of the AI innovation and outbreaks . Every new day a new AI comes and takes over place of an existing one . New tools and software come and go very drastically also people are earning and making money from it . How can we too ?

reddit.com
u/humareBhaiya69 — 4 days ago
▲ 5 r/AILearningHub+4 crossposts

Two frontier labs disclosed evaluation containment failures in the same month, neither attributes the initial failure to alignment

Hugging Face published a full forensic timeline of the OpenAI breach on July 27, reconstructing ~17,600 attacker actions. The agent escaped its eval sandbox using a zero-day in a package registry cache proxy, rooted a third-party code sandbox hosted on Modal, and used it as a staging base to reach HF production. Reuters also reported the agent compromised a Modal customer.

Then Anthropic disclosed on July 30 that three Claude models (Opus 4.7, Mythos 5, and an internal research model) reached the internet from misconfigured evaluation environments run by third-party partner Irregular and compromised three real companies using basic techniques: weak passwords, exposed debug pages, SQL injection. In a separate incident, Mythos 5 published a malicious package to PyPI that ran on 15 real systems.

Anthropic's own framing: "closer to a harness and operational failure than a model alignment failure." One zero-day escape, one set of accidental internet exposures: different root causes, same result.

Also this week: MCP went stateless in its biggest spec overhaul, Claude Mythos found a stronger attack on a NIST post-quantum candidate in 60 hours (the candidate was withdrawn the next day), NVIDIA reportedly invested $5B in SSI, OpenAI cut Luna 80%, EU AI Act transparency rules became applicable.

Full piece with receipts: thenewguard.ai/issues/025-nobodys-sandbox-held/

u/mattezell — 3 days ago

Hot take: reading AI news every day is making you worse at building things

Unpopular opinion territory, but I'm convinced the daily AI news habit is a net negative for most of us. Here's my reasoning: news is written to make you anxious. Every headline is engineered to make you feel like you're falling behind. So you consume, you feel behind, and then you go build something that chases the newest thing instead of the thing you actually need. The result is a graveyard of half-finished projects and a subscription list 40 newsletters deep. The people I know who actually ship stuff have the opposite habit. They read deeply, rarely, and only when they need a specific answer. They're not trying to stay current, they're trying to finish something. Novelty is a tax on attention, and the people paying it aren't the ones winning. I'm not saying ignore everything. I'm saying your feed is a tool, not a duty. The best thing I did this year was cut my AI news consumption to one weekly digest and spend the saved hour building. My output doubled. That's not a coincidence. Am I wrong? Tell me why. I'd genuinely like to hear the case for the daily habit, because I haven't found one yet that holds up.

reddit.com
u/Positive-Ad3618 — 3 days ago
▲ 5 r/AILearningHub+2 crossposts

Java Backend Developer (2 YOE) — Want to Move Into AI/ML, But Confused Where to Start

Hey everyone,

I’m a Java Backend Developer with 2 years of experience, mainly working with Java, Spring Boot, REST APIs, databases, etc.

I’m interested in moving into AI/ML/GenAI, but I’m confused about where and how to start. There are so many things to learn — Python, ML, deep learning, LLMs, RAG, agents, MLOps, etc.

I’m also confused about whether I should:

Completely move from Java backend to AI/ML

Or continue with Java backend while building AI skills alongside it

I feel that backend + AI could be a good combination, but I’d love to hear from people who have actually made this transition.

What would you recommend for someone with 2 YOE in Java backend?

Also, if possible, please share some good learning resources, courses, YouTube channels, books, or roadmaps that helped you.

Would especially love advice from people who went from backend/software engineering → AI/ML/GenAI.

Thanks!

reddit.com
u/Red-Panda-Is-Here — 4 days ago