0

What's the best approach to learning a library, framework etc.I find it overwhelming initially as to where should I start learn such things. Is it like you start taking up a course and then try to implement it. Or just start applying directly and learn as you go. If it's the latter could you just elaborate what you do? As I start studying in the latter way i.e learning as I go, I find myself getting a lot of doubts and confusion regarding the content. I start with tensorflow for eg, but I end up searching for different things as new things come up while studying, this makes me frustrated and directionless. What approach can I take here?

Buffy
  • 35,808
  • 10
  • 62
  • 115
Fasty
  • 169
  • 6

1 Answers1

2

The best approach to learning just about everything is twofold. You need to practice and you need feedback on your attempt. You learn by reinforcement, not by seeing something once. This is why coursework depends on student exercises, not just lectures and textbooks.

So, to learn a new thing, I suggest that you first get an overview idea of it, say from some internet readings or a book. Don't go too deep into it yet. Then, find a project that you can build using that technology and work on that. Go back to readings and such as necessary when you get stuck, but make the project and its completion a learning goal. Your readings may suggest a project, actually, but don't use too much of the explanation of the project, or especially its solution, to guide you. Build it yourself.

But that doesn't solve the "feedback" problem. This is always difficult for self learners. "How do I know I've done the right thing?" Perhaps you can find a more experienced person to give you feedback. A teacher or professor with wide experience is probably best. But you can also try to find or form a group of people with similar interests that you can meet with to share ideas.

In the absence of other things, if you can find an actual text book on the topic, it will probably have exercises. Do as many of them as you can find time for, without reference to any answer key. Find a way to verify your answers (feedback), even if it is just a testing framework that verifies your intent.

I'll also note that learning on your own is difficult for other reasons. Suppose you know A and want to learn B. Your approach to B will probably be heavily influenced by what you already know of A. But that may not be the best approach. Knowing the C language and trying to learn Scheme, for example, requires a clear break with what you already know and you need to take a new mental approach. Even moving from one language like Java to a "similar" one like Python, requires a fair amount of rethinking.

Buffy
  • 35,808
  • 10
  • 62
  • 115
  • If the thing being learned is coding, and the project is complete and working. Feedback on sections of it could be received by posting on [codereview.se]. Just follow their rules for what/how to post. – Gypsy Spellweaver Nov 18 '19 at 23:41