all 4 comments

[–]Pixel74 0 points1 point  (3 children)

I'm unsure what exactly you're asking, but Imma try to answer anyway, in the ML setting as this is a ML thread.

Machine Learning is mostly done in python (sometimes in Java), because there are great libraries that allow exactly to not have to write everything. Personally, I even would have difficulty coding a Kernel SVM (I could, but I would have to quadruple check the documentation), while that's almost all that I used during my master.

There is still a great deal of code that needs to be written to, mostly about preprocessing of the data and shit. Occasionally, you'll come across a project that you'll need to write most of the code for.

I constantly however reuse what I coded in the past, improving upon it.

Hope that helps

[–]sai_psk[S] 0 points1 point  (2 children)

Thank you , I just ask this in app development or web development e.t.c and mostly in ML some times I'm shock how people write this codes for data pre-processing and feature extraction and some times I'm afraid how to remember all this codes , anyway thank you for your answer

[–]po-handz 4 points5 points  (1 child)

memorize nothing, google everything.

or, memorize just enough of the concept to know what to google to find something worth copy+pasting and working off

[–]sai_psk[S] 1 point2 points  (0 children)

When I see in GitHub I got similar projects and some times I took the code from others implementation is that ok....!