News Natural Language Programming -- English and/or Español

Gerry Rzeppa

Member
Dec 13, 2013
195
1
76
www.osmosian.com
Some years ago, I posted an engaging thread on this site about a Natural Language Programming system developed by my elder son Dan and I:

https://forums.anandtech.com/threads/natural-language-programming.2358744/

I'm now happy to report that, with the assistance of a university professor in Argentina, we have been able to extend our system to understand, not just Plain English source code, but Español Llano source, as well. Here is a sample, top-level routine in English:

To run:
Start up.
Initialize our stuff.
Handle any events.
Finalize our stuff.
Shut down.


And here is the equivalent in Español:

Para ejecutar:
Poner en marcha.
Inicializar nuestras cosas
Manejar eventos.
Finalizar nuestras cosas
Apagar.


The system understands sentences written in all English...

Pick a color between the lightest gray color and the white color.

...or all Español...

Elegir un color entre el color gris muy muy claro y el color blanco.

...and even a mixture of the two:

Elegir un color entre the lightest gray color and el color blanco.

We were pleasantly surprised to find that the addition of Español to our system required only 598 new sentences in our compiler (an increase of just 14%). And I was personally delighted that I was able to make almost all the necessary adjustments myself, even though "Yo no hablo Español." This was no doubt due to our simple and unique approach to natural language parsing, which was inspired by this Gary Larson cartoon:

What We Say To Dogs horizontal.jpg

I've labeled this post as "News" rather than "Discussion," hoping to avoid the kind of cantankerous response my previous thread received. If, however, anyone would like more details about our bilingual system, you can write me directly (gerry.rzeppa@pobox.com).

Thank you,

helium photo.jpg

Gerry Rzeppa
Grand Negus of the Osmosian Order of Plain English programmers
 
Last edited:

Merad

Platinum Member
May 31, 2010
2,586
19
81
Why nobody answered this topic?

Most of the people who frequent this section of the forums (including myself) already participated in the large discussion several years ago that Gerry linked in his post. It doesn't seem like anything has changed, other than him adding support for Spanish. I started to reply to this topic several weeks ago, but stopped when I realized I'd just be repeating discussion points from the original thread.
 

Quantum Robin

Member
Jan 3, 2019
49
3
16
AnandTech Forums Members,

Programming languages will end up being increasingly high-level until they become identical to natural language. You will eventually be able to write all your programs in English, Portuguese, or any other natural language, although you will also be able to mix that with instructions of the kind used in today's programming languages whenever you think that's more efficient or clearer.

An intelligent compiler will ask for clarification whenever there's an ambiguity and may suggest improved wordings to resolve the issue. Writing a program will end up being a conversation with an intelligent machine which anyone could handle even if they know nothing about programming - it will be a collaboration with an intelligent system which is in itself an expert programmer. The error messages will be comments and questions just like the ones you'd get if you were co-writing a program with a human programmer. ("When you say "print the result of that part", do you mean this part [a section of the code is highlighted], and do you want it printed to the screen or the printer?")

None of that will stop you putting in a line of C or any other programming language if you want to, but most of the work will simply be done in natural language, typically at a much higher level with the compiler working out how to carry out the tasks asked of it. The end user will also become a programmer, telling the machine how (s)he would prefer things to be done, and the machine will comply. That will rarely be done through anything other than natural language.

AGI = artificial general intelligence

A general intelligence is a more powerful kind of intelligence than a specialised intelligence which can only handle limited tasks. A general intelligence can learn to handle any task. Humans are the only things we currently know of which have general intelligence, and because that's natural intelligence, humans are NGI (natural general intelligence).

NLP = natural language programming

NLP can also be used to mean natural language processing though. This kind of NLP is part of what is needed to support the other kind of NLP because you can't have natural language programming if you can't process natural language.

The AGI system will give you what you most likely want and will then adjust any aspects of it which you aren't happy with. It will not drag you through a menu of all possible options item by item, but will wait instead until you ask for the button to behave in a particular way. The aim is to use artificial general intelligence.

User: Make a button for that.

[Button appears.]

User: A bit bigger, and make it green.

[Button grows bigger and turns green.]

User: Put it here.

[Button moves to the correct location.]

...

(Some time later):-

User: When the cursor's on this button, turn it blue.

[Button turns blue. (AGI system knows that that's more likely what's wanted than turning the cursor blue.)]

User: Make its corners rounded.

[Button changes shape (and retains new shape even when cursor is moved away).]

Etc.

Plain English Programming may be able to become full NLP (natural language programming) if enough people interact with it and extend the range of phrases it can handle, so while it may only handle a subset of English today, that is not an inherent restriction on it. It can keep improving as people write code to support more words. For that reason, it is arguably not a step towards NLP (natural language programming) because it arguably already is NLP (natural language programming). We will only find out when enough code is written to handle all words an all possible uses of them. I think it will run into difficulties with ambiguities, but little additions to the program could fix that. AGI (artificial general intelligence) will study PEP (Plain English Programming) in the future to see what it could have done if the world had got behind it in 2006.

Approach #1: Brute Force Crowd Source. It is the method used in Amazon's ALEXA, Apple's SIRI, Wolfram's ALPHA, Microsoft's CORTANA, Google's HOME, etc. In all these cases, a programmer imagines a question or command that a user will give the machine, and then he writes specific code to answer that specific question ("Alexa, what is the temperature outside?") or carry out that particular command ("Alexa, turn on the living room lights"). Get enough imaginative programmers to write enough routines, et voila! Apparently Intelligent machines that actually exist and work and learn and grow, today.

Approach #2: Dynamically-Generated-User-Tweaked code. This is essentially what I describe here...

If the programmer is happy with the generated code, (s)he can approve of it and it needn't be saved because it will generate correctly each time before compiling - a label would be attached to the high-level NLP (Natural Language Programming) program to tell the compiler that it compiles correctly. If the generated code isn't right though (or isn't complete), that label will not be attached to the NLP (Natural Language Programming) code and the support code will need to be saved as part of the program instead. Some of that support code could still be auto-generated initially, creating the loop and setting up the count, for example, while leaving the programmer to fill in the content of the loop manually.

Maybe the problem with this approach is that we need a little more detail regarding the middle step:

step 2.jpg

Note that I'm not saying Approach #2 is a bad idea or a pipe dream; all I'm saying is that maybe there is not a small prototype based on this approach that can be scaled up to the real deal.

Approach #2 is an optional intermediate step towards approach #3. Approach #3 is the one where you build AGI (artificial general intelligence) first so that it can solve all the programming problems itself. The idea is that instead of the human writing the difficult bits of code to complete a program, the human teaches the AGI (artificial general intelligence) how to write the difficult bits of code so that it won't need help with the same kind of problem the next time. It's all about giving the AGI (artificial general intelligence) system more and more problem-solving skills until it can do as good a job as the best human programmers.

AnandTech Forums Members,

Do you agree with the affirmations about the future of the programming that I quoted above?

If not, why you don't agree with the affirmations about the future of the programming that I quoted above?;)