Scientists plan to implement aspects like pattern recognising

  • Thread starter Thread starter chhitiz
  • Start date Start date
  • Tags Tags
    Plan
AI Thread Summary
Scientists are exploring advanced AI capabilities such as pattern recognition, spontaneity, and creativity, but current technologies struggle with true intelligence and emotional understanding. Recognition algorithms face challenges due to the variability in sensory input, making it difficult to achieve reliable pattern recognition across different contexts. While AI can solve structured problems, it lacks the ability to think independently or develop common sense, which is learned through human experience. The concept of learning in machines is limited to data processing without the depth of understanding that human intelligence entails. Future advancements may involve replicating the human brain at a cellular level, potentially leading to more sophisticated AI systems.
chhitiz
Messages
221
Reaction score
0
i was reading this article on AI and i have a question:
how do scientists plan to implement aspects like pattern recognising(and not just simple pattern recognition, but even linking images from two totally unrelated fields, like we sometimes link mental images, i hope u get it), or spontaneity and creativity?
how far have they gone?
 
Technology news on Phys.org


Recognition and classification algorithms are quite good if features can be extracted that are invariant under the desired transformations. In the case of recognition in images, this is quite difficult because nothing is really invariant under projection and illumination change, so even recognizing identical objects can be extremely difficult. However, we have some stuff that works OK.

Artificial Intelligence is separate, and deals with the logical aspects of reasoning rather than interpretation of sensory information to recognize patterns etc. It is assumed that some other "hardware" has already processed this input and parsed it into more meaningful information tokens which can then be dealt with in a logic framework.

So far AI has yet to live up to its name. There is nothing that resembles true intelligence, creativity, or emotion -- actually, it is yet to be shown that this is even possible, as it may be nothing more than an illusion in humans. We do have machines that can solve simple planning problems, but only if those problems can be posed into a very formalized in rigid framework -- and we don't really have a good way of transforming observations into this logic framework. Because we don't have machines that can actually think, we can't even begin to work on adding things like spontaneity or creavity..although if we did have machines that could think, this would probably be a trivial addition. Instead what you may see are toy problems where randomness is used to give the cursory illusion of human-like qualities.
 


what about common sense? the amount of common axioms that we take for granted is so huge that it don't think that can be stored in a small memory. is it even possible for us to make a computer learn, like we make a baby learn?
 


chhitiz said:
what about common sense? the amount of common axioms that we take for granted is so huge that it don't think that can be stored in a small memory. is it even possible for us to make a computer learn, like we make a baby learn?

A simple program that records all its input in memory could be considered "learning" the data. A simple one pole moving average filter could be considered to learn the average of a stationary series. A neural network can "learn" arbitrary associations through back propagation or other update schemes. Hebbian learning can be used as well.

Basically, learning is trivial...but it is only meaningful if you have an intelligence that can use that learned information.

Common sense information (with exception to natural instincts) is learned through experience in humans, and any good AI system would also need a system for learning such as this that would allow it to develop without needing a bunch of axioms being manually programmed in. Common sense rules are not strictly "if then" statements, either..everything is relative and has a degree of uncertainty.
 


Unless the computer replicates the human brain to a very high resolution, it is not likely that it will ever seem completely human to a trained observer. But there are scientists currently trying to replicate the human brain, cell by cell, in a computer. And if nanotechnology ever does become advanced enough, then maybe someday the contents of ones brain could be downloaded into a computer.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top