A.I programming white paper I made (something a little different)

  • 18 Replies
  • 8691 Views
*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Here is a recent white paper of some of my A.I thoughts, projects and more, take a look.

HERE

Hope this sparks an interesting discussion!

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: A.I programming white paper I made (something a little different)
« Reply #1 on: March 24, 2016, 12:43:02 pm »
Very nice review. It's always a plus to add a face to a name. Hopefully we'll enjoy some more experiments in this growing field. O0
In the world of AI, it's the thought that counts!

*

ivan.moony

  • Trusty Member
  • ************
  • Bishop
  • *
  • 1723
    • mind-child
Re: A.I programming white paper I made (something a little different)
« Reply #2 on: March 24, 2016, 12:46:50 pm »
Ok, so it's a sentence repeater bot. The code goes: on A reply B, right?

How about extending it to something "smarter"?

When a user says: "John walks.", we could parse this sentence as "A DoesX" and store it to a long term memory. Now we train the thing like:

"A DoesX" & "What do A does?" -> "A DoesX"

Now we have to replace "A" with "John", "DoesX" with "walks" and we get an advanced answer like: "John walks".

1. To make this happen, we need an english parser, so we can extract and analyze sentence fragments.
2. To make it a bit advanced, we could make an automatic trainer. When we automatically recognize responses of a user upon discussion, we can use the same responses from the machine upon later user input. The machine learns on the fly by communicating with it.
3. Going further without predefined English language, we could statistically analyze all input and responses, and automatically build parsing rules for a language that user used. After a considerable amount of input, we'd have enough data to extract rules of any language.

Points 2. and 3. give us true AI. Now, how hard would it be to program this behavior?

*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Re: A.I programming white paper I made (something a little different)
« Reply #3 on: March 24, 2016, 01:03:00 pm »
Very nice review. It's always a plus to add a face to a name. Hopefully we'll enjoy some more experiments in this growing field. O0

Thanks, you will, watch this space!

*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Re: A.I programming white paper I made (something a little different)
« Reply #4 on: March 24, 2016, 01:06:11 pm »
Ok, so it's a sentence repeater bot. The code goes: on A reply B, right?
<snip>

While I agree I think you kinda missed the point of the article, the software is just a simple repeater which is being developed on but that was just a side note really in the article. The point really in short I suppose is, artificial awareness/conciousness and the fact that, for A.I to be smart, it doesn't need to pass any turing test or be able to play games, or even speak English for that matter (or any other language for humans). It would merely need to be aware and have instincts.

*

ivan.moony

  • Trusty Member
  • ************
  • Bishop
  • *
  • 1723
    • mind-child
Re: A.I programming white paper I made (something a little different)
« Reply #5 on: March 24, 2016, 03:00:37 pm »
sorry, i was just trying to help  :-\

*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Re: A.I programming white paper I made (something a little different)
« Reply #6 on: March 24, 2016, 04:36:40 pm »
sorry, i was just trying to help  :-\

I know it's cool man  8)

*

Zero

  • Eve
  • ***********
  • 1287
Re: A.I programming white paper I made (something a little different)
« Reply #7 on: March 25, 2016, 02:19:46 pm »
Hi Mr.Fox. Buddhists say we don't have 5 senses but 6. The 6th sense is the one that makes you feel what's happening inside your head. Try this:

Take your favorite language, say Lua, whatever. Wrap every function you'll use in a logging clone. The cloned function does the same as the original one, except it also sends an activity report to standard input. Tada! Self-awareness!

Just kiddin'
Welcome aboard  ;)

*

spydaz

  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 322
  • Developing Conversational AI (Natural Language/ML)
    • Spydaz_Web
Re: A.I programming white paper I made (something a little different)
« Reply #8 on: March 29, 2016, 03:56:07 am »
There is not much real ai projects out there mr fox .

Noticing: most start with the same ideas...then forget actually its not as easy as they thought ....

Designing decision processes , are the next step .... As well as storing knowledge structures and  retrieving that knowledge .

Often where most get stuck ...... Creating "sense" drawing conclusions , making further implications ..... Even generating a response instead of recalling some scripted answer.

Basic intelligence !

Then get to more higher intelligence levels .

Only in stages can it be done. The stages could be described as the secret behind creating A.I

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: A.I programming white paper I made (something a little different)
« Reply #9 on: March 29, 2016, 10:21:25 pm »
Actually, I agree with Mr. Spydaz's assertion. Well put. O0
In the world of AI, it's the thought that counts!

*

Freddy

  • Administrator
  • **********************
  • Colossus
  • *
  • 6855
  • Mostly Harmless
Re: A.I programming white paper I made (something a little different)
« Reply #10 on: March 29, 2016, 10:52:39 pm »
Yep I go with Spydaz too. It's the search for the philosophers stone again.

*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Re: A.I programming white paper I made (something a little different)
« Reply #11 on: March 30, 2016, 11:31:28 am »
There is not much real ai projects out there mr fox .

Noticing: most start with the same ideas...then forget actually its not as easy as they thought ....

Designing decision processes , are the next step .... As well as storing knowledge structures and  retrieving that knowledge .

Often where most get stuck ...... Creating "sense" drawing conclusions , making further implications ..... Even generating a response instead of recalling some scripted answer.

Basic intelligence !

Then get to more higher intelligence levels .

Only in stages can it be done. The stages could be described as the secret behind creating A.I

Yeah, I tend to agree also - some think this will be resolved by Machine Learning/Neural networks.

*

spydaz

  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 322
  • Developing Conversational AI (Natural Language/ML)
    • Spydaz_Web
Re: A.I programming white paper I made (something a little different)
« Reply #12 on: March 30, 2016, 11:55:36 am »
I would say that neural networks although solving some "predictions" based on past history (a decision process) cant handle conversation only maybe pick the best matched "scripted answer" (based on history of conversations) ... "I Read a paper on that" but it is a single multipurpose tool in the overall paradigm .

I have recently began building a "belief network" which when built will also evaluate which decision to make based on a decision tree / bayes probability . (Then the decisions can be related to personality type) depending on internal risk management strategy .

Again this is just for knowledge evaluation/ internally modelled decisions . But another step towards building a non scripted response ....

Which is one of my goals , the main being "understanding" and making all the collected knowledge "interogatable" ...

*

Mr.Fox

  • Bumblebee
  • **
  • 35
    • Dreamwalker Software
Re: A.I programming white paper I made (something a little different)
« Reply #13 on: March 30, 2016, 12:16:57 pm »
I would say that neural networks although solving some "predictions" based on past history (a decision process) cant handle conversation only maybe pick the best matched "scripted answer" (based on history of conversations) ... "I Read a paper on that" but it is a single multipurpose tool in the overall paradigm .

I have recently began building a "belief network" which when built will also evaluate which decision to make based on a decision tree / bayes probability . (Then the decisions can be related to personality type) depending on internal risk management strategy .

Again this is just for knowledge evaluation/ internally modelled decisions . But another step towards building a non scripted response ....

Which is one of my goals , the main being "understanding" and making all the collected knowledge "interogatable" ...

I'd like to see this.

P.S

A neural network using Unsupervised Learning could, in theory, with millions of neurons react in a non scripted manner - the problem I think mainly is hardware and algorithmic restrictions... I read a paper recently about a professor in the UK Manchester (yay, my home town) that is trying to do just that, I'll dig it up.

*

spydaz

  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 322
  • Developing Conversational AI (Natural Language/ML)
    • Spydaz_Web
A.I programming white paper I made (something a little different)
« Reply #14 on: March 30, 2016, 12:53:39 pm »
Glad to read it.
But i would disagree ... For many reasons ..but a very large response for here....

"It will be discovered that neural networks are not what they expected"

Would be nice if they could solve every problem .   
But its like using a hammer when a screw is required (ai needs a multitude of techniques)

 


OpenAI Speech-to-Speech Reasoning Demo
by MikeB (AI News )
March 31, 2024, 01:00:53 pm
Say good-bye to GPUs...
by MikeB (AI News )
March 23, 2024, 09:23:52 am
Google Bard report
by ivan.moony (AI News )
February 14, 2024, 04:42:23 pm
Elon Musk's xAI Grok Chatbot
by MikeB (AI News )
December 11, 2023, 06:26:33 am
Nvidia Hype
by 8pla.net (AI News )
December 06, 2023, 10:04:52 pm
How will the OpenAI CEO being Fired affect ChatGPT?
by 8pla.net (AI News )
December 06, 2023, 09:54:25 pm
Independent AI sovereignties
by WriterOfMinds (AI News )
November 08, 2023, 04:51:21 am
LLaMA2 Meta's chatbot released
by 8pla.net (AI News )
October 18, 2023, 11:41:21 pm

Users Online

302 Guests, 0 Users

Most Online Today: 343. Most Online Ever: 2369 (November 21, 2020, 04:08:13 pm)

Articles