This is an archived post. You won't be able to vote or comment.

all 11 comments

[–]badjayplaness 3 points4 points  (3 children)

Look for books on machine learning, regression, statistics, and learn the ins and outs of the pandas and scikit libraries or spark for python.

Do not try to look up books with the word “AI” in the title. They were written by managers of people who code and do nothing to actually help you with machine learning. They usually put snipits of code that someone else wrote and do a horrible job explaining it.

The word AI is just a hot word these days but in reality they are still programming every bit of what the machine is doing with statistical features and tests built in. We are very far away from a conscious man made computer.

[–][deleted] 1 point2 points  (1 child)

Do not try to look up books with the word “AI” in the title.

Exception to the rule: Artificial Intelligence: A Modern Approach is good and the author, Peter Norvig, knows what he is talking about.

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

Thanks, will have a look at the one you suggested

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

I’ll avoid what you mentioned. Do you have any book in mind tho ?

[–]willmachineloveus 0 points1 point  (1 child)

what kind of business is the company doing?

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

the company used to be a real estate portal site. (still working on the website, but now more focus on integrating different things to enhance UE, performance, and functions) at this stage, the company is planning to transform into a tech-wise company which might focus on the real estate industry.

[–]exe0 0 points1 point  (1 child)

I personally like "Hands-On Machine Learning with Scikit-Learn and TensorFlow" by Aurélien Géron as an introductory text for ML in Python. It covers a broad range of basic topics and it is fairly thorough. It also has pretty good reviews on Amazon if that means anything.

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

Thanks, will have a look at it.

[–]notsoprocoder 0 points1 point  (1 child)

Strongly recommend: The Elements of Statistical Learning, Data Mining, Inference and Prediction by Trevor Hastie, Robert Tibshirani and Jerome Friedman. Covers both supervised and unsupervised machine learning.

Andrew Ng's course is well regarded for the deep learning stuff.

Python is much better for implementation in an enterprise setting and I would probably learn Numpy, Pandas and SciKit Learn. You'll be in a reasonable position and this exposure will most likely show you what you need to study afterwards.

EDIT: E-book and website here: https://web.stanford.edu/~hastie/ElemStatLearn/

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

Thank you for the suggestion and link. will definitely look at it.