The one syntax

  • 15 Replies
  • 4996 Views
*

Zero

  • Eve
  • ***********
  • 1287
The one syntax
« on: November 01, 2016, 04:28:14 pm »
One Syntax to rule them all, One Syntax to write them,
One Syntax to bring them all and in the brightness express them


;)

*

Korrelan

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1454
  • Look into my eyes! WOAH!
    • YouTube
Re: The one syntax
« Reply #1 on: November 01, 2016, 06:44:51 pm »
The spatiotemporal spike  :)
It thunk... therefore it is!...    /    Project Page    /    KorrTecx Website

*

kei10

  • It's a honor to meet everyone!
  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 430
  • Just kidding.
Re: The one syntax
« Reply #2 on: November 01, 2016, 07:02:54 pm »
Hm? May I ask what is this about?  ???
Greetings, signature.

*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1365
  • Humans will disappoint you.
    • Home Page
Re: The one syntax
« Reply #3 on: November 01, 2016, 07:55:19 pm »

*

kei10

  • It's a honor to meet everyone!
  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 430
  • Just kidding.
Re: The one syntax
« Reply #4 on: November 01, 2016, 08:14:03 pm »


Hang on, our emotion is instinctively a universal grammar. Except that it's different across different living things -- sort of. Over-smiling until your teeth exposes to a dog, and it will bite your face off, as to a dog, it thinks that it means seeking for a fight -- Google says. Emotion... is a universal grammar that is evolved as a survival mechanism. *Flies away*
Greetings, signature.

*

Korrelan

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1454
  • Look into my eyes! WOAH!
    • YouTube
Re: The one syntax
« Reply #5 on: November 01, 2016, 08:31:48 pm »
I was thinking lower/ base level.

As binary logic is the 'universal grammar' modern computers utilize; the spatio-temporal spike is one of the base constituents of 'universal grammar' that intelligent biochemical machines use.

Even emotion is generated/ based on ye olde spikes.

Though I don't think this is what Zero had in mind :o

:)

I would presume from the J. R. R. Tolkien reference that Zero has either discovered or designed a language syntax to encompass/ beat/ encapsulate/ express all others.

:)
It thunk... therefore it is!...    /    Project Page    /    KorrTecx Website

*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1365
  • Humans will disappoint you.
    • Home Page
Re: The one syntax
« Reply #6 on: November 01, 2016, 08:58:26 pm »
I would presume from the J. R. R. Tolkien reference that Zero has either discovered or designed a language syntax to encompass/ beat/ encapsulate/ express all others.

Eh? That's been done before. It's called the Chomsky Hierarchy.

https://en.wikipedia.org/wiki/Chomsky_hierarchy

regular expression < context free grammar < context sensitive grammar < recursively enumerable

Almost all natural languages including English can be defined using a context free grammar which is good, because context free grammars are computable in polynomial time, with the right algorithms. Context sensitive grammars take non-polynomial time to compute making them impractical for the most part.

The bulk of my AI work has been concerned with writing a GLR parser which is capable of parsing an unrestricted context free grammar. My parser can handle the tens of millions of grammar rules required for a language like English, and it is very fast, able to parse a book in the time it takes other parsers to process a sentence.

*

Korrelan

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1454
  • Look into my eyes! WOAH!
    • YouTube
Re: The one syntax
« Reply #7 on: November 01, 2016, 09:18:00 pm »
Hi Infurl

I had to Google GLR parser lol.

Your work/ project sounds very interesting. Is your system applicable to other kinds of formatted data streams; ocular information coming from the retina could be construed as a kind language with syntax… or is it alphanumerically based?

Once you have parsed the ambiguous text/ book; what is the resulting data format? How do you store the end results of the parsed book and what do you intend to do with the results? Is this for a ‘chatbot’, expert system; or is your ultimate goal an AGI?

 :)
It thunk... therefore it is!...    /    Project Page    /    KorrTecx Website

*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1365
  • Humans will disappoint you.
    • Home Page
Re: The one syntax
« Reply #8 on: November 01, 2016, 09:44:30 pm »
Here's my most recent post on the subject which goes into any detail, but I've posted here and on chatbots.org quite a bit over the years.

http://aidreams.co.uk/forum/index.php?topic=10090.msg39064#msg39064

As you can see the output can be expressed as XML for inspection, debugging and processing, but calling the API directly as a library allows direct access to the parse tree for greater efficiency. Input is a stream of integers (i.e. unicode characters).

In addition to the extensive libraries that I've developed for managing large complex grammars, I've also developed a set of libraries for knowledge representation and problem solving using first order logic.

Most of my time is spent authoring the grammars and knowledge bases to be used by the software that I've written. My goal is to emulate and improve upon the best that is already out there.

*

Korrelan

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1454
  • Look into my eyes! WOAH!
    • YouTube
Re: The one syntax
« Reply #9 on: November 01, 2016, 10:32:55 pm »
Wow… you have certainly put some work in on this…

It would seem to me that your language/ knowledge parsing schema is geared mainly towards heuristic based knowledge systems.  Language parsing is currently well outside my sphere of knowledge/ experience though I can definitely see the potential uses; especially with the recent uptake by major businesses employing ‘chatbot’ sales/ help lines.

I'm still curious though; could/ can the parser be reversed? Can you foresee a way that the parsed/ acquired information could be re-formatted and verbally re-spoken by a TTS?

I envisage if you coded the extraction of information; you could also code a ‘reverse’ set of rules to drive an output stage?

 :)
It thunk... therefore it is!...    /    Project Page    /    KorrTecx Website

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: The one syntax
« Reply #10 on: November 02, 2016, 02:59:50 pm »
i am interested in a  universal language connector. I envision it at a self organizing map, SOM, of a bag of words
of comparative features. And the would be the nouns.
 Then a real map mapping out the movement to and away from the nouns would form the verbs.

 But this only works if all the bot are of the same design.

*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1365
  • Humans will disappoint you.
    • Home Page
Re: The one syntax
« Reply #11 on: November 02, 2016, 07:23:15 pm »
Keghn have you considered using WordNet? It is available for many languages now and it has all the features that you describe.

https://wordnet.princeton.edu/

http://globalwordnet.org/wordnets-in-the-world/

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: The one syntax
« Reply #12 on: November 02, 2016, 09:29:45 pm »
Well......if there is this "Universal Grammar" how come so many people can't use it? :2funny: :rar:
In the world of AI, it's the thought that counts!

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: The one syntax
« Reply #13 on: November 02, 2016, 09:49:42 pm »
 Much appreciated @Infuri.

  I am working on ground of symbols and this internal auto generated bot atom language. So i doing a bottom to top approach to language, speech, written letters, sign language, body language, and art.
 All this done in a unsupervised learning machine.

 I consider you a language expert and also her: 



 But no one knows hows primitive beginnings develops into complex communication. But i do. Or other do not care and
are happy dealing with just finished product.


*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1365
  • Humans will disappoint you.
    • Home Page
Re: The one syntax
« Reply #14 on: November 03, 2016, 01:41:10 am »
keghn grounding is a difficult but crucial problem and there have been some interesting approaches to solving it. For my projects I'll be using ontologies such as SUMO and OpenCYC, but you might be interested in a particular project that has been running for several years now and which sounds a lot like yours.

It is called NELL for Never Ending Language Learning and it is a 'bot that is attempting to learn to read by scanning the world wide web. It is hosted at http://rtw.ml.cmu.edu/rtw/ and they have made all it's databases available for download by the curious.

 


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

329 Guests, 0 Users

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

Articles