vote up 5 vote down star
2

Do you think VB is a good language for AI? I originally did AI using mainly Lisp and C/C++ when performance was needed, but recently have been doing some VB programming.

VB has the following advantages: 1. Good debugger (essential!) 2. Good inspector (watch facility) 3. Easy syntax (Intellisense comparable to structure editors of late 80's Lisp environments). 4. Easy to integrate with 3rd party software. 5. Compiles to fast code (CLR performance pretty good) 6. Fast development.

By the way, thanks for all the useful replies. I've upvoted everyone who contributed.

flag

I presume you mean VB.NET, not old-style VB :-) – Gary McGill Jul 20 at 14:42
4  
VB would be best for work not with AI but with AS (artificial stupidity). Not only is it a better fit for the language, but it maps to the real world more accurately. – lavinio Jul 20 at 14:45
1  
skynet was probably written in VB. That would explain a lot. – Christopher Jul 20 at 14:50
2  
If you already know Lisp, why not stick to that? Modern implementations have performance at least matching the CLR, and its expressive power is certainly unmatched by any other language. – Svante Jul 20 at 14:51
1  
even artificial intelligence is clever enough to know you dont want to use VB ;) – Andrew Bullock Jul 20 at 14:59
show 1 more comment

5 Answers

vote up 3 vote down check

Which VB are you talking about here? If you're talking VB.NET then yes, and no.. I would suggest C# or maybe F#.. F# is a functional language and hence is generally better suited for many of the patterns you'll be dealing with when programming AI. The newer versions of C# also have support for language features such as lambda expressions, anonymous delagates et al which may also benefit you!

link|flag
Yes, VB .NET of course :) I tried the old VB years back, but could never "get it" because it just seemed too weird. VB .NET was a pleasant surprise. – Larry Watanabe Jul 20 at 15:20
VB.NET also has features such as lambda expressions and anonymous delegates. C# and Visual Basic .NET have almost identical feature sets. – Jim Mischel Jul 20 at 16:24
@Jim, I never said VB.NET doesn't have lambdas and anonymous delegates but that my recommendation goes to C#, or F#.. That, I certainly don't consider to be reason enough for down-voting. I'm sorry if I offended you in any way by making a statement for C# in the detriment of VB.NET – Miky D Jul 20 at 17:27
@Miky: Since those were the only C# features you pointed out in way of recommendation, one can only assume that you were saying that they are the reason for your recommendation. Were you to provide a reason why you think C# is better, I would not have down-voted. And, no, I'm not offended by your making a statement for C# in detriment to VB.NET. I, too, prefer C#. – Jim Mischel Jul 20 at 18:08
@Jim: I can see the confusion in the way I phrased it. What I really meant to convey was that C# now has features that allow you to implement constructs that are typical of functional languages. Couple that with the previous statement where I said: "I would suggest C# or maybe F#" and it should be apparent that I was only giving my personal opinion on the choice of language.. – Miky D Jul 20 at 19:28
vote up 6 vote down

I would suggest you go with C# rather than VB.Net.

You get all the nice features that you discuss but a better (and more familiar) syntax.

link|flag
1  
I would suggest you go with F# rather than C#. You get all the nice features that you discuss but a better (and more expressive) syntax. – Juliet Jul 20 at 15:12
I'm using VB at work right now, so it's easier not to switch gears. The languages seem equivalent because of the underlying CLR – Larry Watanabe Jul 20 at 15:24
F# is a good one... I didn't even think about it. Regarding using VB because it is what you have going at work.... I still can't agree with that. AI principals are so much easier to express in C# (and certainly F#). VB was created as a business language. it is verbose and its grammar makes it difficult to express certain things in. Since it is obviously a touring complete language, it CAN do AI, but the question is... do you really want to do AI in it? It is kind of like choosing to sink a 12 inch lag bolt with a cresent wrench rather than a pneumatic impact wrench. more work for eqaul result – Jeremy Petzold Jul 21 at 15:19
vote up 3 vote down

When you say AI what do you mean? Its a very broad field. If you're just skimming the basics, like guided search and simple knowledge bases then yea VB .Net may seem beneficial. But the language structure and syntax makes it very inadequate when you start to delve into theorem proving, ILP and other areas of machine learning you'll begin to realize that language like Lisp are still being used today because they provide a more natural syntax for expressing AI concepts.

link|flag
Actually my main area was ILP :) Steve Muggleton (who coined the term ILP) presented papers at IJCAI 87 on constructive induction. – Larry Watanabe Jul 20 at 15:17
Have you read Foundations of ILP (Shan-Hwei Nienhuys-Cheng and Ronald de Wolf)? Great read if you're interested. I am of the opinion that the best way to go (from an ILP standpoint at least) is some kind of interop. I have a question on here about c#/Lisp interop. – SpaceghostAli Jul 20 at 15:26
No, I haven't read that book. My guess is that one author is the advisor and the other is a former Ph.D. student and this is his dissertation :) – Larry Watanabe Jul 20 at 19:52
vote up 1 vote down

1, 2, and 3 are all aspects that any sufficiently advanced IDE has, so that's not much of an issue for most languages. As for 4, 5, and 6: Python fits 4 and 6, but not 5, as it is not very fast, though some implementations of Python do have better speed than others, depending on their configuration. (Just mentioning Python because you tagged your question with the python tag.)

If you do plan on using the .NET Framework, though, might I suggest C#? The syntax is similar to that of C and C++ (about as similar as the Java syntax is), so it'll be more familiar to you, and it does exactly the same things that VB does (and has all the same IDE features, as they both use the Visual Studio IDE, though I suppose you could use an alternative IDE if you wished, as the VB and C# compilers actually come with the .NET Framework itself and not with Visual Studio).

link|flag
vote up 1 vote down

VB has the following advantages: [...]

But then you go on and list stuff that most modern implementations of Common Lisp offer, especially the commercial ones.

Have you tried Common Lisp recently? What parts of VB.NET do you miss when you're programming in CL?

link|flag
I've tried several Common lisp dialects - SBCL, CLISP, Lispworks. I miss having standard, reliable frameworks for threading and GUI, and easy to install, trouble-free IDE (slime was a pain in the butt) – Larry Watanabe Jul 27 at 14:58
I can see what you mean as far as SBCL and CLISP go. But Lispworks and Allegro have quite a newbie-friendly UI and come with concurrency and GUI. Of course YMMV so you might not have found their IDEs that great. Still that wouldn't be a reason for me to work with any Visual .NET development environment instead of Lisp -- unless maybe 90% of your app programming is GUI stuff. – skypher Jul 28 at 6:55
I think the problem is that I am comparing Open source with a commercial product (VB .NET) which isn't really a fair comparison. I should really give Allegro or Lispworks a try for a valid comparison. – Larry Watanabe Sep 15 at 13:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.