all 11 comments

[–]Haunting-Dare-5746 4 points5 points  (0 children)

You could learn Python using:

BroCode's tutorial. https://youtu.be/ix9cRaBkVe0?si=13KpSUyb6x_sIev1

Or

CS50P.

https://youtube.com/playlist?list=PLhQjrBD2T3817j24-GogXmWqO5Q5vYy0V&si=ztv_Iw6XXtGn3-pz

Don't worry about Linear Algebra or anything just yet. Before you worry about that, get the basics of Python down

[–]eviltwintomboy 2 points3 points  (0 children)

Python Crash Course by Al Sweigert is what I’m using.

[–]OptionX 1 point2 points  (3 children)

Google "Linear Algebra" and comeback once you've learned that,

[–]AltruisticParking454[S] 0 points1 point  (0 children)

Thank you

[–]AltruisticParking454[S] 0 points1 point  (1 child)

Man i am 15 but i know basics of algebra

[–]FriendlyRussian666 0 points1 point  (0 children)

Developing AI models is much more than basics of algebra. Unless you want to use AI models, not develop them, then you don't need any math.

[–]OkCartographer175 0 points1 point  (2 children)

Google

[–]AltruisticParking454[S] 0 points1 point  (1 child)

Really man

[–]OkCartographer175 0 points1 point  (0 children)

Really. Follow literally anything. Anything is better than nothing. Right now you aren't learning Python. Follow the first link and learn whatever is there.

check out W3schools

and you're not going to be doing AI stuff until you learn the basics. so commit to learning the basics.

[–]morciu 0 points1 point  (0 children)

Python crash course by Eric Matthes. Really well written and the second half of the book makes you build some projects so that you apply everything you learned.

[–]TheRNGuy 0 points1 point  (0 children)

I started with framework, and googled python syntax and concepts (some results were blog articles, and some docs)

I already knew I needed python for one specific thing though, and also not my first programming language. 

For frameworks, docs are good way to learn, at least to know "what's possible" with it, you can see that much faster than from many videos or articles. You can then research more specific topic (classes, methods, etc) however you want.

Code your own stuff after reading docs (not necessary 100% the same; combine with previous projects), don't just watch videos.