- My Forums
- Tiger Rant
- LSU Recruiting
- SEC Rant
- Saints Talk
- Pelicans Talk
- More Sports Board
- Fantasy Sports
- Golf Board
- Soccer Board
- O-T Lounge
- Tech Board
- Home/Garden Board
- Outdoor Board
- Health/Fitness Board
- Movie/TV Board
- Book Board
- Music Board
- Political Talk
- Money Talk
- Fark Board
- Gaming Board
- Travel Board
- Food/Drink Board
- Ticket Exchange
- TD Help Board
Customize My Forums- View All Forums
- Show Left Links
- Topic Sort Options
- Trending Topics
- Recent Topics
- Active Topics
Started By
Message
Learning AI-where to start
Posted on 5/17/26 at 6:16 pm
Posted on 5/17/26 at 6:16 pm
I want to learn more and take a deeper dive into AI, doing more than just taking backgrounds out of pics on ChatGPT, like I have now. Are there online resources or classes for someone that is looking to do it for fun and personal growth? Free or low cost would be better.
Posted on 5/17/26 at 6:31 pm to hugo
Are there specific tasks you want to perform?
Posted on 5/17/26 at 7:05 pm to Bestbank Tiger
Not specially right now. Just don’t want to be the old guy that got left behind with technology. Kinda want a good base of it and who knows what I might learn and enjoy doing later on.
Posted on 5/17/26 at 7:13 pm to hugo
IBM Technology on YouTube has been releasing some very nifty videos on AI that help you get started.
I wish you were my boss because he told me the other day to "just create an agent" to perform "x work by tomorrow" without even knowing the complexity surrounding "agents"
I wish you were my boss because he told me the other day to "just create an agent" to perform "x work by tomorrow" without even knowing the complexity surrounding "agents"
Posted on 5/17/26 at 7:34 pm to Roy Curado
Will look into that.
I don’t know that I will use it in my job, but I would like to have some knowledge of how it works if it’s ever brought up.
I don’t know that I will use it in my job, but I would like to have some knowledge of how it works if it’s ever brought up.
Posted on 5/17/26 at 11:35 pm to Roy Curado
quote:
wish you were my boss because he told me the other day to "just create an agent" to perform "x work by tomorrow" without even knowing the complexity surrounding "agents"
Posted on 5/19/26 at 1:25 am to hugo
quote:
Not specially right now. Just don’t want to be the old guy that got left behind with technology. Kinda want a good base of it and who knows what I might learn and enjoy doing later on.
As someone who's been neck deep in the AI coding world for a while now, this is the wrong approach IMO. It would be akin to someone saying they want to learn about the oil industry, its so broad it almost loses meaning.
AI is a tool, start with a specific problem you want to solve and then use AI to solve that problem. It cant be too specific or small. Automate a daily task, create a stupid meme, whatever.
Once you have that problem, open up multiple chat apps, Chatgpt/grok/Claude/etc. Tell them what you want to build and keep drilling down until you feel comfortable to dive in.
This post was edited on 5/19/26 at 1:32 am
Posted on 5/19/26 at 4:30 pm to Seeing Grey
quote:
start with a specific problem you want to solve and then use AI to solve that problem
This is how I've tried to learn it recently.
I run a factory. We have a software that powers our factory, and scanners within the factory tell me what order is where. I run a report several times a day to track production. I've never liked the report. It's a data dump and formatting is hamstrung by the software that gives it to me. I have to do a lot of sorting and manual calculations to get the info I want out of it.
So, I set Claude on it. It took me half a day of going back and forth with Claude to get things right, but man, now that it's working, what used to take me 15-20 minutes now takes me five seconds, and I was doing that multiple times a day.
In addition, Claude learned about my factory and processes along the way. Without prompting, it started doing additional analysis on the reports and comparing them every time I run it to raise some good questions.
All that to say, I agree with you. Find a problem unique to you, and jump in. I simply talked (typed, actually) to it like it was a person, and we went back and forth to get it right.
This post was edited on 5/19/26 at 4:56 pm
Posted on 5/20/26 at 11:00 am to BottomlandBrew
I gave gemeni this prompt-
Give me a daily update with news about AI, including key breakthroughs, product launches, and industry trends.
And everyday I learn something new..
Give me a daily update with news about AI, including key breakthroughs, product launches, and industry trends.
And everyday I learn something new..
Posted on 5/22/26 at 10:10 pm to hugo
Python is mandatory to master. Focus on libraries like NumPy and Pandas for data handling. Don't build a model from scratch yet, as your learning. Learn how to plug OpenAI, Anthropic, or open-source Hugging Face models into a basic Python script using API keys.
Moreover, real-world AI models don't just read clean CSV files. They pull data from massive enterprise databases. You use SQL to clean, filter, and prepare millions of rows of data before feeding it into a machine learning model or vector database. Mastering SQL is a must for machine learning.
Learn RAG (Retrieval-Augmented Generation). This is how you give an AI model access to external data, for example, a company's internal documents. You’ll want to learn about Vector Databases like Pinecone or Chroma. Pair this with ETL in cloud computing you’re golden. Data lives everywhere in Excel sheets, user activity logs, CRM software, SQL databases, and third-party APIs. In the Extraction phase, you read and pull raw data from all these different places without disrupting the main business operations.
Moreover, real-world AI models don't just read clean CSV files. They pull data from massive enterprise databases. You use SQL to clean, filter, and prepare millions of rows of data before feeding it into a machine learning model or vector database. Mastering SQL is a must for machine learning.
Learn RAG (Retrieval-Augmented Generation). This is how you give an AI model access to external data, for example, a company's internal documents. You’ll want to learn about Vector Databases like Pinecone or Chroma. Pair this with ETL in cloud computing you’re golden. Data lives everywhere in Excel sheets, user activity logs, CRM software, SQL databases, and third-party APIs. In the Extraction phase, you read and pull raw data from all these different places without disrupting the main business operations.
Posted on 5/23/26 at 9:30 am to hugo
Just try to use it. Ask it basic questions.
You learn it through iterating.
You learn it through iterating.
Posted on 5/28/26 at 10:34 am to Breauxsif
quote:
Python is mandatory to master
I've found that certain AI tasks work much better when I request Python code to execute a task rather than let AI try the task. To my surprise AI agents can be really bad at counting and iterating. Request AI to create a picture of 5 cats. Then ask for modifications like remove 2 or add three. The results can be all over the place.
I've found Gemini quite good at tutoring me. Just ask how to improve prompts, format prompts, limit hallucinations, etc.
Posted on 5/28/26 at 10:40 am to Tree_Fall
When you ask the AI to write Python code to execute a task, you are forcing it to pivot away from guessing the answer. You are asking it to write a deterministic recipe. Python does have a literal counter, loops, and flawless mathematical logic. By executing code, you shift the heavy lifting from a probabilistic engine to a logical one.
Popular
Back to top
4









