5

I study AI by myself with the book "Artificial Intelligence: A Modern Approach". I've just finished the chapters about the Bayesian network and probabilities, and I found them very interesting. Now, I want to implement different algorithms and test them in different cases and environments.

Is it worth it to spend time on these techniques?

nbro
  • 42,615
  • 12
  • 119
  • 217
kaizokun
  • 173
  • 5

2 Answers2

4

*AI, A Modern Approach," was given that title to break from previously narrow approaches to duplicating desirable qualities of human thinking.

Although Bayesian networks require somewhat resource intensive computational elements, the importance of Bayesian inference and probability are still of paramount importance in that some of the highest scientific thinking require mastery of them. Furthermore, developing in silicon dies (or possibly graphene nanites) the machinery to perform elementary probability computations in massively parallel architectures may arise over the next few decades. The use of video DSP circuits to implement ANNs is a notable segue into this kind of development.

I would not dismiss the techniques you just read about. If your intention is to capitalize on the recent crazes, you may enter the river of wannabees chasing every current trend, implement many systems that other people will rewrite later, and have a meaningless yet profitable career. I would recommend following your inquisitiveness instead.

Douglas Daseeco
  • 7,543
  • 1
  • 28
  • 63
1

The chapters for Bayesian Networks are:

  1. Quantifying Uncertainty
  2. Probabilistic Reasoning
  3. Dynamic Bayesian

don't forget:

  1. Naive Bayes, hidden variables, Markov

Maybe helpful:

. Are We Going in the Right Direction? ... p.1049

If you find them interesting then invest more time to it. You might improve them and break new scientific ground.

Recent trend goes Deep Convolutional Neural Networks (ex: AlphaGo)